Python数据分析——Pandas(4)

学习目标

  • 目标
    • 了解DataFrame的画图函数
    • 了解Series的画图函数
  • 应用
    • 股票每日数据的统计

1 pandas.DataFrame.plot

  • DataFrame.plot(x=Noney=Nonekind='line')

    • x : 标签或位置,默认为无
    • y : 标签,位置或标签列表,位置,默认无
      • 允许绘制一列与另一列的对比图
    • kind : str

更多参数细节:https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.plot.html?highlight=plot#pandas.DataFrame.plot

2 pandas.Series.plot

更多参数细节:https://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.plot.html?highlight=plot#pandas.Series.plot

上一篇:数据分析第3次作业


下一篇:Python pandas.DataFrame.reorder_levels函数方法的使用