Python| Pandas Series.plot() 方法
借助Series.plot()
方法,我们可以使用Series.plot()
方法获取熊猫系列的情节。
Syntax : Series.plot()
Return : Return the plot of series.
示例 #1:
在这个例子中,我们可以看到通过使用
在这个例子中,我们可以看到通过使用
Series.plot()
方法,我们可以得到熊猫系列的情节。 # import Series and matplotlib
import pandas as pd
import matplotlib.pyplot as plt
# using Series.plot() method
gfg = pd.Series([0.1, 0.4, 0.16, 0.3, 0.9, 0.81])
gfg.plot()
plt.show()
输出 :
示例 #2:
# import Series and matplotlib
import pandas as pd
import matplotlib.pyplot as plt
# using Series.plot() method
gfg = pd.Series([10, 9.9, 9.8, 7.8, 6.7, 19, 5.5])
gfg.plot()
plt.show()
输出 :
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。