Python3-数据可视化练习题(含答案):plt.legend(),plot.hist(。。。

更新时间:2023-07-20 17:54:35 阅读: 评论:0

Python3-数据可视化练习题(含答案):plt.legend(),plot.hist(。。。要想查阅有关style sheets, 请点击查阅
先展⽰所要使⽤的datat:画春
麻将术语import pandas as pd
import matplotlib.pyplot as plt
df3 = pd.read_csv('df3')
df3.info()
df3.head()
结果如下:
使⽤scatter():pdf怎么转换成cad图纸
# s: size
df3.plot.scatter(x='a',y='b',figsize=(12,5),s=50)
df3.plot.scatter(x='a',y='b',figsize=(12,5))
使⽤hist():
软件工程就业前景
# Create a histogram of the 'a' column
描写美食的词语df3['a'].hist()
df3['a'].plot.hist(bins=10,color='red',alpha=0.4)
使⽤style sheets:
# U style sheets to t the style to 'ggplot' and redo the histogram from above graph. Also figure out how to add more bins to it # ggplot: emulates the aesthetics of ggplot (a popular plotting package for R).
plt.style.u('ggplot')
df3['a'].plot.hist(bins=20,alpha=0.4)
结果如下:
使⽤plot.box():
# Create a boxplot comparing the a and b columns
df3[['a','b']].plot.box()
使⽤plot.kde():
怎么提高英语# Create a kde plot of the 'd' column
df3['d'].plot.kde()
结果如下:
身上长癣是什么原因引起的
kde() 和 density() ⼀样:
# Figure out how to increa the linewidth and make the linestyle dashed. df3['d'].plot.kde(lw=5,ls='--')
# Figure out how to increa the linewidth and make the linestyle dashed. df3['d'].plot.density(lw=5,ls='--')
使⽤plt.legend() 将标注框进⾏变换位置:
# 如何把lengend 移出图形外部?
df3['d'].plot.density(lw=5,ls='--')
# center right: 是以标注的中间右边框为标准点
plt.legend(loc='center right', bbox_to_anchor=(1,0.5)) # 如何把lengend 移出图形外部?
df3['d'].plot.density(lw=5,ls='--')
# center left: 是以标注的中间左边框为标准点
plt.legend(loc='center left', bbox_to_anchor=(1,0.5)) df3['d'].plot.density(lw=5,ls='--')
plt.legend(loc=(1.1,0))
如果觉得不错,就点赞或者关注或者留⾔~~谢谢~ ~樱花恋

本文发布于:2023-07-20 17:54:35,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/1107309.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:标注   查阅   练习题   词语   麻将   就业   引起
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图