Python中scatter()函数

Python中scatter()函数

1、scatter函数原型

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

3、其中颜色参数c如下:

4、基本的使用方法如下:

[python]  view plain  copy
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#导入必要的模块 
import numpy as np 
import matplotlib.pyplot as plt 
#产生测试数据 
x = np.arange( 1 , 10
y =
fig = plt.figure() 
ax1 = fig.add_subplot( 111
#设置标题 
ax1.set_title( 'Scatter Plot'
#设置X轴标签 
plt.xlabel( 'X'
#设置Y轴标签 
plt.ylabel( 'Y'
#画散点图 
ax1.scatter(x,y,c = 'r' ,marker = 'o'
#设置图标 
plt.legend( 'x1'
#显示所画的图 
plt.show() 

  

结果如下:

5、当scatter后面参数中数组的使用方法,如s,当s是同x大小的数组,表示x中的每个点对应s中一个大小,其他如c,等用法一样,如下:

(1)、不同大小

[python]  view plain  copy
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#导入必要的模块 
import numpy as np 
import matplotlib.pyplot as plt 
#产生测试数据 
x = np.arange( 1 , 10
y =
fig = plt.figure() 
ax1 = fig.add_subplot( 111
#设置标题 
ax1.set_title( 'Scatter Plot'
#设置X轴标签 
plt.xlabel( 'X'
#设置Y轴标签 
plt.ylabel( 'Y'
#画散点图 
sValue = x * 10 
ax1.scatter(x,y,s = sValue,c = 'r' ,marker = 'x'
#设置图标 
plt.legend( 'x1'
#显示所画的图 
plt.show() 

  

(2)、不同颜色

[python]  view plain  copy
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#导入必要的模块 
import numpy as np 
import matplotlib.pyplot as plt 
#产生测试数据 
x = np.arange( 1 , 10
y =
fig = plt.figure() 
ax1 = fig.add_subplot( 111
#设置标题 
ax1.set_title( 'Scatter Plot'
#设置X轴标签 
plt.xlabel( 'X'
#设置Y轴标签 
plt.ylabel( 'Y'
#画散点图 
cValue = [ 'r' , 'y' , 'g' , 'b' , 'r' , 'y' , 'g' , 'b' , 'r'
ax1.scatter(x,y,c = cValue,marker = 's'
#设置图标 
plt.legend( 'x1'
#显示所画的图 
plt.show() 

  

结果:

(3)、线宽linewidths

[python]  view plain  copy
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#导入必要的模块 
import numpy as np 
import matplotlib.pyplot as plt 
#产生测试数据 
x = np.arange( 1 , 10
y =
fig = plt.figure() 
ax1 = fig.add_subplot( 111
#设置标题 
ax1.set_title( 'Scatter Plot'
#设置X轴标签 
plt.xlabel( 'X'
#设置Y轴标签 
plt.ylabel( 'Y'
#画散点图 
lValue =
ax1.scatter(x,y,c = 'r' ,s = 100 ,linewidths = lValue,marker = 'o'
#设置图标 
plt.legend( 'x1'
#显示所画的图 
plt.show() 

  

 

                     注:  这就是scatter基本的用法。

  • 3
    点赞
  • 22
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值