【python】散点图----Matplotlib 模块学习系列(三)

喜欢而已 提交于 2020-01-26 02:56:21

主要关注方法

plt.scatter()

参数:

  • x坐标
  • y坐标
  • s size
  • marker 形状
  • c color 颜色
  • alpha 透明度

在这里插入图片描述
代码实现

from matplotlib import pyplot as plt
import numpy as np


n = 100
X = np.random.normal(0, 1, n)
Y = np.random.normal(0, 1, n)
plt.scatter(X, Y, s=50, marker='*',  alpha=0.6)

plt.show()

方程散点图

import matplotlib.pyplot as plt
import numpy as np

# x^2/a^2+y^2/b^2=1
a = 3
b = 2

x = np.linspace(-10,10,100)
noise = np.random.normal(0, 1.3, x.shape)
y = x**2/1.4  + noise
plt.figure(num=4, figsize=(4,3))
plt.scatter(x,y, 2, color='red')
plt.show()

在这里插入图片描述

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!