当前位置:   article > 正文

python使用matplotlib可视化线图(line plot)、自定义设置不同线条的色彩(setting the color of multiple plots)_python plt 线段颜色改编

python plt 线段颜色改编

python使用matplotlib可视化线图(line plot)、自定义设置不同线条的色彩(setting the color of multiple plots with different color  )

目录

python使用matplotlib可视化线图(line plot)、自定义设置不同线条的色彩(setting the color of multiple plots with different color  )

#仿真数据

#python使用matplotlib可视化线图(line plot)、自定义设置不同线条的色彩(setting the color of multiple plots with different color  )


pip install matplotlib

# 1、安装包
$ pip install matplotlib

# 2、进入python的交互式界面
$ python -i

# 3、使用 matplotlib 的 scatter 方法绘制散点图
>>> import matplotlib.pyplot as plt
>>> x = [1, 2, 3, 4, 5]
>>> y = [2.3, 3.4, 1.2, 6.6, 7.0]
>>> plt.scatter(x, y, color='r', marker='+')

# 4、输出结果
# 你的电脑随后会弹出一个最终图表效果的窗口。

Matplotlib 是 Python 的绘图库,它能让

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Guff_9hys/article/detail/964971
推荐阅读
相关标签
  

闽ICP备14008679号