摘要: # -*- coding: utf-8 -*- """ Created on Sun Jan 9 17:13:01 2022 @author: Administrator """ import matplotlib.pyplot as plt import matplotlib import mat 阅读全文
posted @ 2022-01-09 17:30 笑诺 阅读(25) 评论(0) 推荐(0)
摘要: # -*- coding: utf-8 -*- """ Created on Sun Jan 9 11:49:44 2022 @author: Administrator """ import matplotlib.pyplot as plt import matplotlib import mat 阅读全文
posted @ 2022-01-09 17:11 笑诺 阅读(60) 评论(0) 推荐(0)
摘要: import matplotlib.pyplot as plt import matplotlib import matplotlib.gridspec as gridspec matplotlib.rcParams['font.family'] = 'FangSong' gs = gridspec 阅读全文
posted @ 2022-01-09 12:17 笑诺 阅读(43) 评论(0) 推荐(0)
摘要: import matplotlib.pyplot as plt plt.plot([3, 1, 4, 5, 2]) #只有一个输入列表或数组时,参数被当做Y轴,X轴以索引自动生成 plt.ylabel("Grade") plt.savefig('test', dpi=600) #记录为PNG文件 p 阅读全文
posted @ 2022-01-09 11:49 笑诺 阅读(39) 评论(0) 推荐(0)