Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

python module 'pandas' has no attribute 'plotting'

Tags:

python

pandas

I am a beginner of Python. I follow the machine learning course of Intel. And I encounter some troubles in coding. I run the code below in Jupyter and it raises an AttributeError.

import pandas as pd
step_data = [3620, 7891, 9761,3907, 4338, 5373]
step_counts = pd.Series(step_data,name='steps')
print(step_counts)

AttributeError: module 'pandas' has no attribute 'plotting'

like image 689
Harrymissu Avatar asked Dec 02 '17 17:12

Harrymissu


1 Answers

In your terminal type

pip install plotting. 
like image 147
Sai Kiran Manthuri Avatar answered Nov 04 '22 10:11

Sai Kiran Manthuri