
数据可视化
文章平均质量分 50
zhang35
zhangjqfriend@gmail.com
展开
-
数据可视化教程作业打卡-第五回:样式色彩秀芳华
教程链接https://github.com/datawhalechina/fantastic-matplotlibhttps://gitee.com/zhang35/fantastic-matplotlib/blob/main/第五回:样式色彩秀芳华作业1)查阅matplotlib官网,列举出Sequential,Diverging,Cyclic,Qualitative,Miscellaneous分别有哪些内置的colormap,并以代码绘图的形式展现出来。# task 1import num原创 2022-01-23 22:09:10 · 162 阅读 · 0 评论 -
数据可视化教程作业打卡-第四回:文字图例尽眉目
教程链接https://github.com/datawhalechina/fantastic-matplotlibhttps://gitee.com/zhang35/fantastic-matplotlib/blob/main/第四回:文字图例尽眉目.ipynb作业1.尝试在一张图中运用所讲过的功能,对title、text、xlable、ylabel、数学表达式、tick and ticklabel、legend进行详细的设计.from matplotlib import pyplot as p原创 2022-01-21 23:18:28 · 781 阅读 · 0 评论 -
数据可视化教程作业打卡-第三回:布局格式定方圆
教程链接https://github.com/datawhalechina/fantastic-matplotlibhttps://gitee.com/zhang35/fantastic-matplotlib/blob/main/第三回:布局格式定方圆.ipynb作业1. 墨尔本1981年至1990年的每月温度情况ex1 = pd.read_csv('data/layout_ex1.csv')ex1.head() Time Temperature0 1981-01 17.7129031原创 2022-01-18 21:38:25 · 944 阅读 · 0 评论 -
数据可视化教程作业打卡-第二回:艺术画笔见乾坤
教程链接https://github.com/datawhalechina/fantastic-matplotlib第二回:艺术画笔见乾坤思考题primitives 和 container的区别和联系是什么?primaitives是绘图元素;container是容器,存放绘图元素,自身也有一些属性;四个容器的联系和区别是么?他们分别控制一张图表的哪些要素?Figure:顶层级,用来容纳子 Axes,一组具体绘图元素和画布(canvas)。 画板。Axes:matplotlib宇宙的核心,原创 2022-01-16 22:52:35 · 317 阅读 · 0 评论