pandas10minnutes_中英对照04

10 minutes to pandas英文网址

pandas10minnutes_中英对照01

pandas10minnutes_中英对照02

pandas10minnutes_中英对照03

pandas10minnutes_中英对照04

本次主要讲以下部分:
11.Plotting 绘图

11.Plotting 绘图

See the Plotting docs.
We use the standard convention for referencing the matplotlib API:
参见绘图文档。
我们使用标准约定来引用matplotlib API:

import matplotlib.pyplot as plt
plt.close("all")

The close() method is used to close a figure window:
close()方法用于关闭图形窗口:

import pandas as pd
ts = pd.Series(np.random.randn(1000), index=pd.date_range("1/1/2000", periods=1000))
ts = ts.cumsum()
ts.plot();

在这里插入图片描述
If running under Jupyter Notebook, the plot will appear on plot(). Otherwise use matplotlib.pyplot.show to show it or matplotlib.pyplot.savefig to write it to a file.
如果在Jupyter Notebook下运行,绘图通过plot()显示。否则使用matplotlib.pyplot.show 来显示它或matplotlib.pyplot.savefig将其写入文件中。

plt.show()

On a DataFrame, the plot() method is a convenience to plot all of the columns with labels:
在DataFrame上,plot()方法可以方便地对含有标签的所有列进行绘图:

df = pd.DataFrame(
    np.random.randn(1000, 4), index=ts.index, columns=["A", "B", "C", "D"]
)

df = df.cumsum()
plt.figure()
df.plot()
plt.legend(loc='best')

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

雪龙无敌

你的鼓励是我们一起前进的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值