例子1:
import matplotlib.pyplot as plt
# 单点 s代表点的大小
plt.scatter(2,8, s=200)
# 绘制一系列点
x_values = [1,2,3,4,5]
y_values = [1,4,9,16,25]
plt.scatter(x_values, y_values, s=100)
plt.title("Square Numbers", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("Square of Value", fontsize=14)
# 设置刻度标记的大小
plt.tick_params(axis="both", which="major", labelsize=14)
plt.show()
例子2:
import matplotlib.pyplot as plt
# 绘制一系列点
x_values = list(range(1,1001))
y_values = [x**2 for x in x_values]
#edgecolors 点的轮廓 c 点的颜色 c='red'
#plt.scatter(x_values, y_values, c=(0,0,0.8), edgecolors='none', s=40)
# 使用颜色映射, 根据值生成不同的颜色深浅
plt.scatter(x_values, y_values, c=y_values, cmap=plt.cm.Blues, edgecolors='none', s=40)
plt.title("Square Numbers", fontsize=24)
plt.xlabel("Value", fontsize=14)
plt.ylabel("Square of Value", fontsize=14)
# 设置刻度标记的大小
plt.tick_params(axis="both", which="major", labelsize=14)
# 设置每个坐标轴的取值范围 , x, y轴的最小值和最大值
plt.axis([0, 1100, 0, 1100000])
# 自动保存图表 第二个参数用于将多余的空白区域裁剪掉
plt.savefig("square_plt.png", bbox_inches="tight")
plt.show()