📜  Python| Pandas Series.plot() 方法

📅  最后修改于: 2022-05-13 01:54:19.501000             🧑  作者: Mango

Python| Pandas Series.plot() 方法

借助Series.plot()方法,我们可以使用Series.plot()方法获取熊猫系列的情节。

示例 #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()

输出 :