1.使用matplotlib绘制简单的折线图
import matplotlib.pyplot as plt
squares = [1,4,9,16,25]
plt.plot(squares)
plt.show()
首先导入模块pyplot,并给他指定了别名plt.模块pyplot包含很多用于生成图表的函数.
我们创建一个列表,在其中储存了平方数,在将这个列表传递给函数plot(),这个函数根据这些数字绘制出有意义的图形.
plt.show()打开matplotlib查看器,并显示绘制图形.
2.修改标签文字和线条粗细
import matplotlib.pyplot as plt
squares = [1,3,4,5,7,45]
plt.plot(squares,linewidth=5)
#设置图表标题,并给坐标轴加上标签
plt.title("Square Numbers", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("Square of Value", fontsize=14)
#设置刻度标记的大小
plt.tick_params(axis='both',labelsize=14)
plt.show()
3.校正图形
当你向plot()提供一系列数字时,我们可以给plot()同时提供输入值和输出值:
import matplotlib.pyplot as plt
input_values = [1, 2, 3, 4, 5]
squares = [1, 4, 9, 16, 25]
plt.plot(input_values, squares, linewidth=5)
4.使用scatter()绘制散点图并设置其样式
要绘制单个点,可使用函数scatter(),并向他传递一对x和y坐标,它将在指定位置绘制一个点
网友评论