Matplotlib入门系列3_绘图样式的修改
程序员文章站
2022-03-21 13:57:57
...
2019年7月15日14:43:34
环境
Python3.6
前言
Matplotlib的一些基础知识
1、创建
2、简单的plt例子
3、绘图样式的修改
4、一次创建多个子图
5、保存图片
6、关于Matplotlib中文乱码这回事
直接上代码操作,可以体验一下,自己根据自己需要修改即可。
关于实际效果的生成,自己实际运行一下就会显示,截图还是有点麻烦的,就不截图了。
建议刚开始读一下官网对这个库的基本介绍
官网:
https://matplotlib.org/tutorials/introductory/usage.html#sphx-glr-tutorials-introductory-usage-py
绘图样式的修改
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
@File: 3、绘图样式是这样来的.py
@Author : hyh
@Ide: Pycharm
@Contact: [email protected]
@Date: 19-7-15 上午11:05
-------------------------------------------------
Description :
-------------------------------------------------
"""
import matplotlib.pyplot as plt
import numpy as np
"""
注:
"ro" 红色圆圈 默认是 "b-"-蓝色实线
"axis" 设置横坐标纵坐标范围
plt.grid(True) 格子图
"""
def plt_style_one():
plt.plot([1, 2, 3, 4], [1, 4, 9, 16], 'ro') #
plt.axis([0, 6, 0, 20])
plt.grid(True)
plt.show()
"""
其他样式 "r--" "bs" "g^"
"""
def plt_style_two():
# evenly sampled time at 200ms intervals
t = np.arange(0., 5., 0.2)
# red dashes, blue squares and green triangles
plt.plot(t, t, 'r--', t, t ** 2, 'bs', t, t ** 3, 'g^')
plt.show()
if __name__ == '__main__':
plt_style_one()
plt_style_two()