Python Pandas Series.plot()方法
在Series.plot()方法的帮助下,我们可以通过Series.plot()方法获得pandas系列的绘图。
语法: Series.plot()
返回:返回系列的情节。
例子#1 :
在这个例子中,我们可以看到,通过使用Series.plot()方法,我们能够获得pandas系列的绘图。
# 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()
输出 :