python—matplotlib绘制简单图形
目录
通用设置绘制折线图绘制散点图绘制柱状图
通用设置
import matplotlib.pyplot as plt
# 定义一个图像窗口,分辨率为128 像素,图像大小为10*6
plt.figure(dpi=128, figsize=(10, 6))
# 设置图例
plt.legend(labels = "y" ,loc="best")
'''
best 自动选择最佳位置,默认是左上
upper right 右上
upper left 左上
lower right 右下
lower left 左下
right 右边,默认右上。若右上被图形挡住,则自动往下选择空白地方绘制
center right 垂直居中且靠右
center left 垂直居中且靠左
lower center 垂直居中且靠底部
upper center 垂直居中且靠顶部
center 居中
'''
# 设置图表标题,并
版权声明:
作者:zhangchen
链接:https://www.techfm.club/p/29022.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论