【练习2021-10-21】matplotlib中 scatter()画点 Python

import matplotlib.pyplot as plt

# 要绘制单个点,可使用函数scatter() ,并向它传递一对 x 和 y 坐标,


# 它将在指定位置绘制一个点:
plt.scatter(2, 4, s=200) # 设置图表标题并给坐标轴加上标签
# 调用了scatter() ,并使用实参s 设置了绘制图形时使用的点的尺寸
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()

# 使用使 scatter() 绘制一系列点
x_values = [1, 2, 3, 4, 5]
y_values = [1, 4, 9, 16, 25]
plt.scatter(x_values, y_values, s=100) # 设置图表标题并给坐标轴指定标签
plt.show()

你可能感兴趣的:(flag高高立起,python)