Diksha Nasa
Diksha Nasa

Reputation: 153

"ImportError: matplotlib is required for plotting when the default backend "matplotlib" is selected."

Not able to understand why I am getting this error and how to fix it. I am trying to plot a graph for number of listings in the neighborhood. I have tried uninstalling and then reinstalling pandas but it doesn't seem to work

By running the following code :

feq=listings['neighbourhood'].value_counts().sort_values(ascending=True)
feq.plot.barh(figsize=(10, 8), color='b', width=1)
plt.title("Number of listings by neighbourhood", fontsize=20)
plt.xlabel('Number of listings', fontsize=12)
plt.show()

This error is encountered :

ImportError: matplotlib is required for plotting when the default backend "matplotlib" is selected.
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
C:\Users\DIKSHA~1\AppData\Local\Temp/ipykernel_2704/2039381319.py in <module>
      1 feq=listings['neighbourhood'].value_counts().sort_values(ascending=True)
----> 2 feq.plot.barh(figsize=(10, 8), color='b', width=1)
      3 plt.title("Number of listings by neighbourhood", fontsize=20)
      4 plt.xlabel('Number of listings', fontsize=12)
      5 plt.show()

~\anaconda3\lib\site-packages\pandas\plotting\_core.py in barh(self, x, y, **kwargs)
   1197             >>> index = ['snail', 'pig', 'elephant',
   1198             ...          'rabbit', 'giraffe', 'coyote', 'horse']
-> 1199             >>> df = pd.DataFrame({'speed': speed,
   1200             ...                    'lifespan': lifespan}, index=index)
   1201             >>> ax = df.plot.barh(x='lifespan')

~\anaconda3\lib\site-packages\pandas\plotting\_core.py in __call__(self, *args, **kwargs)
    873                 "arguments, only keyword arguments. The order of "
    874                 "positional arguments will change in the future. "
--> 875                 f"Use `Series.plot({keyword_args})` instead of "
    876                 f"`Series.plot({positional_args})`."
    877             )

~\anaconda3\lib\site-packages\pandas\plotting\_core.py in _get_plot_backend(backend)
   1784         f"Could not find plotting backend '{backend}'. Ensure that you've "
   1785         f"installed the package providing the '{backend}' entrypoint, or that "
-> 1786         "the package has a top-level `.plot` method."
   1787     )
   1788 

ImportError: matplotlib is required for plotting when the default backend "matplotlib" is selected.

Upvotes: 1

Views: 2043

Answers (1)

Diksha Nasa
Diksha Nasa

Reputation: 153

I misspelled bar with "barh" (feq.plot.barh(figsize=(10, 8), color='b', width=1)) which led to this error .

Upvotes: 1

Related Questions