---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-14-63cf67195831> in <module>()
1 fig = plt.figure(figsize=(20,10))
2
----> 3 plt.bar(results['accuracy_reduction'])
C:\ProgramData\Anaconda3\lib\site-packages\matplotlib\pyplot.py in bar(*args, **kwargs)
2625 mplDeprecation)
2626 try:
-> 2627 ret = ax.bar(*args, **kwargs)
2628 finally:
2629 ax._hold = washold
C:\ProgramData\Anaconda3\lib\site-packages\matplotlib\__init__.py in inner(ax, *args, **kwargs)
1708 warnings.warn(msg % (label_namer, func.__name__),
1709 RuntimeWarning, stacklevel=2)
-> 1710 return func(ax, *args, **kwargs)
1711 pre_doc = inner.__doc__
1712 if pre_doc is None:
C:\ProgramData\Anaconda3\lib\site-packages\matplotlib\axes\_axes.py in bar(self, *args, **kwargs)
2025 break
2026 else:
-> 2027 raise exps[0]
2028 # if we matched the second-case, then the user passed in
2029 # left=val as a kwarg which we want to deprecate
C:\ProgramData\Anaconda3\lib\site-packages\matplotlib\axes\_axes.py in bar(self, *args, **kwargs)
2017 for matcher in matchers:
2018 try:
-> 2019 dp, x, height, width, y, kwargs = matcher(*args, **kwargs)
2020 except TypeError as e:
2021 # This can only come from a no-match as there is
TypeError: <lambda>() missing 1 required positional argument: 'height'