# 导包import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
# 如果浏览器不显示图片,就需要加上这句话%matplotlib inline
# 让图片中可以显示中文
plt.rcParams['font.sans-serif']="SimHei"# 让图片中可以显示负号
plt.rcParams["axes.unicode_minus"]=False# 支持svg矢量图%config Inlinebackend.figure_format ="svg"
2. 绘制一条线
plt.figure(figsize=(5,3))
x =["Mon","Tues","Wed","Thur","Fri","Sat","Sun"]
y =[20,40,35,55,42,80,50]
plt.plot(x, y, c="g", marker="D", markersize=5)
plt.xlabel("星期")
plt.ylabel("活跃度")
plt.title("Python语言活跃度")# 画文本# ha:水平对齐方式(left,right,center)# va:垂直对齐方式(top,bottom,center)for a, b inzip(x, y):
plt.text(a, b, b, ha="center", va="bottom")
作者:张华 发表于:2024-07-20 版权声明:可以任意转载,转载时请务必以超链接形式标明文章原始出处和作者信息及本版权声明(http://blog.csdn.net/quqi99)
try ubuntu core on qemu
#ovmf is to ensure compatibility with the re…