python数据可视化的效果如何在web页面中展示
发布网友
发布时间:2022-04-26 21:07
我来回答
共1个回答
热心网友
时间:2022-04-18 06:21
import matplotlib.pyplot as plt
# 绘制折线图
squares = [1, 4, 9, 16, 25]
# plt.plot(squares, linewidth=5) # 指定折线粗细,
# #plt.show();
#
# #修改标签文字和线条粗细
# plt.title("squre number", fontsize=24)
# plt.xlabel("Value", fontsize=14)
# plt.ylabel("square of value", fontsize=14)
# plt.tick_params(axis='both', labelsize=14)
# plt.show()
# 校正图形
input_values = [1, 2, 3, 4, 5]
plt.plot(input_values, squares, linewidth=5)
plt.show()