pandas 每一列画图_pandas-21 Series和Dataframe的画图方法

本文介绍了如何使用pandas的plot方法在Series和DataFrame上绘制各种类型的图表,包括线形图、柱状图、堆积柱状图、面积图等,并提供了丰富的示例代码。
摘要由CSDN通过智能技术生成

pandas-21 Series和Dataframe的画图方法

前言

在pandas中,无论是series还是dataframe都内置了.plot()方法,可以结合plt.show()进行很方便的画图。

Series.plot() 和 Dataframe.plot()参数

data : Series

kind : str

‘line’ : line plot (default)

‘bar’ : vertical bar plot

‘barh’ : horizontal bar plot

‘hist’ : histogram

‘box’ : boxplot

‘kde’ : Kernel Density Estimation plot

‘density’ : same as ‘kde’

‘area’ : area plot

‘pie’ : pie plot

指定画图的类型,是线形图还是柱状图等

label 添加标签

title 添加标题

……(后接一大堆可选参数)

详情请查阅:[官方文档传送门](http://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.Series.plot.html?highlight=series plot#pandas.Series.plot)

Dataframe.plot()参数 也是大同小异:

详情请查阅:官方文档传送门

Series.plot()代码demo

import matplotlib.pyplot as plt

import pandas as pd

impo

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值