import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
import matplotlib.font_manager as fm
# 打印可用的中文字体列表
font_list = fm.findfont(fm.FontProperties(family='SimHei'))
print(font_list)
# 设置字体路径
font_path = '/usr/share/fonts/chinese/SimHei.ttf' # 将路径替换为你字体文件的实际路径
# 加载字体
custom_font = FontProperties(fname=font_path)
# 配置Matplotlib以使用自定义字体
plt.rcParams['font.family'] = custom_font.get_name()
import pandas as pd
import matplotlib.pyplot as plt
df = pd.DataFrame({‘x’: [1, 2, 3, 4, 5], ‘y’: [2, 4, 6, 8, 10]})
ax = df.plot()
ax.set_xlabel(‘横轴’)
ax.set_ylabel(‘纵轴’)
ax.set_title(‘数据图’)
plt.savefig(‘plot.png’) # 保存为PNG格式,可以根据需要调整文件名和格式
plt.show()