matplotlib plt.scatter

 

https://www.cnblogs.com/lfri/p/12248629.html

 

matplotlib  plt.scatter

作用:画散点图

 

plt.scatter()

参数如下:

x,y

XY是长度相同的数组

s

size,点的大小,标量或与数据长度相同的数组

c

color,点的颜色,标量或与数据长度相同的数组

marker

MarketStyle,可选,点的形状,默认'o'

cmap

Colormap,可选,默认'None'

norm

Normalize,亮度设置,0-1

vmin,vmax

亮度设置

alpha

透明度,0-1

linewidths

 

其中散点的形状参数marker如下:

https://matplotlib.org/api/markers_api.html

 

常用颜色

b----blue    c----cyan     g----green     b----black    r----red   y----yellow

 

实例1

import matplotlib.pyplot as plt

#x,y,大小,颜色
plt.scatter([1,2,3,4],[2,4,6,8],[10,20,30,400],['r', 'b','y','k'])
plt.scatter([1,2,3,4],[9,8,7,6],s=10,c='b', marker='v')

plt.show()

运行结果

matplotlib plt.scatter_第1张图片

实例2

import numpy as np
import matplotlib.pyplot as plt

# Fixing random state for reproducibility
np.random.seed(19680801)


N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = (30 * np.random.rand(N))**2  # 0 to 15 point radii

plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.show()

运行结果

matplotlib plt.scatter_第2张图片

 

你可能感兴趣的:(matplotlib)