python邮件中⽣成图表_Python数据可视化(中)——
matplotlib中的诸常⽤图表
本⽂主要内容来⾃于天池课堂,本⽂在进⾏整理的同时在此注明原作者和原⽂链接,有兴趣的朋友可移步观看。
折线图与⾯积图
折线图
plt.plot(kind='line', ax=None, figsize=None, u_index=True, title=None, grid=None, legend=Fal, style=None, logx=Fal, logy=Fal,
loglog=Fal, xticks=None, yticks=None, xlim=None, ylim=None, rot=None, fontsize=None, colormap=None, table=Fal, yerr=None,
异惑
xerr=None, label=None, condary_y=Fal, **kwds)
ries的index为横坐标
冰箱怎么除冰
value为纵坐标
kind → line,(折线图,柱状图,柱状图-横...)
label → 图例标签,Dataframe格式以列名为label萧敬腾的歌
style → 风格字符串,这⾥包括了linestyle(-),marker(.),color(g)
color → 颜⾊,有color指定时候,以color颜⾊为准
alpha → 透明度,0-1
u_index → 将索引⽤为刻度标签,默认为True
rot → 旋转刻度标签,0-360
雷峰的故事
grid → 显⽰⽹格,⼀般直接⽤id
xlim,ylim → x,y轴界限
xticks,yticks → x,y轴刻度值
figsize → 图像⼤⼩
title → 图名
legend → 是否显⽰图例,⼀般直接⽤plt.legend()
ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', periods=1000)) # pandas 时间序列ts = ts.cumsum()ts.plot(kind='line', label = "what",
抗荷服是什么
# subplots →是否将各个列绘制到不同图表,默认Faldf = pd.DataFrame(np.random.randn(1000, 4), index=ts.index, columns=list('ABCD')).cumsum()df.plot(kind
⾯积图
⾯积图与线图⾮常相似。它们也被称为堆栈图。这些图可⽤于跟踪构成⼀个整体类别的两个或多个相关组的随时间变化。
stacked:是否堆叠,默认情况下,区域图被堆叠
为了产⽣堆积⾯积图,每列必须是正值或全部负值!
当数据有NaN时候,⾃动填充0,图标签需要清洗掉缺失值
fig,axes = plt.subplots(2,1,figsize = (8,6))df1 = pd.DataFrame(np.random.rand(10, 4), columns=['a', 'b', 'c', 'd'])df2 = pd.DataFrame(np.random.randn(10, 4
填图
fig,axes = plt.subplots(2,1,figsize = (8,6))x = np.linspace(0, 1, 500)y1 = np.sin(4 * np.pi * x) * np.exp(-5 * x)y2 = -np.sin(4 * np.pi * x) * np.exp(-5 * x)axes[0].
条形图
条形图使⽤条形来⽐较不同类别之间的数据。当您想要测量⼀段时间内的变化时,它⾮常适合。它可以⽔平或垂直表⽰。此外,要记住的重
要⼀点是,条形越长,价值就越⼤。
plt.plot(kind='bar/barh')plt.bar/barh()
x,y参数:x,y值
width:宽度⽐例
facecolor柱状图⾥填充的颜⾊、edgecolor是边框的颜⾊
left-每个柱x轴左边界,bottom-每个柱y轴下边界 → bottom扩展即可化为⽢特图 Gantt Chart
align:决定整个bar图分布,默认left表⽰默认从左边界开始绘制,center会将图绘制在中间位置
xerr/yerr :x/y⽅向空出⼀部分
# 创建⼀个新的figure,并返回⼀个subplot对象的numpy数组fig,axes = plt.subplots(4,1,figsize = (10,10))s = pd.Series(np.random.randint(0,10,16),index = list('abcd
plt.figure(figsize=(10,4))x = np.arange(10)y1 = np.random.rand(10)y2 = -np.random.rand(10)plt.bar(x,y1,width = 1,facecolor = 'yellowgreen',edgecolor = 'w游戏界面
直⽅图
直⽅图⽤于显⽰分布,⽽条形图⽤于⽐较不同的实体。当您有阵列或很长的列表时,直⽅图很有⽤。让我们考虑⼀个例⼦,我需要使⽤箱⼦绘制不同年龄阶段的⼈⼝数。现在,箱⼦指的是被分成⼀系列间隔的值范围。箱⼦通常是相同尺⼨的。plt.hist(x, bins=10, range=None, density=Fal, weights=None, cumulative=Fal, bottom=None, histtype='bar', align='mid', orientation='vertical',rwidth=None, log=Fal, color=None, label=None, stacked=Fal, hold=None, d
ata=None, **kwargs)
bin:箱⼦的宽度
density 标准化
histtype 风格,bar,barstacked,step,stepfilled
orientation ⽔平还是垂直{‘horizontal’, ‘vertical’}
通宵达旦的近义词>生意英文align : {‘left’, ‘mid’, ‘right’}, optional(对齐⽅式)
stacked:是否堆叠
# 直⽅图s = pd.Series(np.random.randn(1000))s.hist(bins = 20, histtype = 'bar', align = 'mid', orientation = 'vertical', alpha=0.5, density =True)#
# 堆叠直⽅图plt.figure(num=1)df = pd.DataFrame({'a': np.random.randn(1000) + 1, 'b': np.random.randn(1000), 'c': np.random.randn(1000) - 1, 'd': n
array([[,],
[,]],
dtype=object)