码迷,mamicode.com
首页 > 编程语言 > 详细

数字的可视化:python画图之散点图sactter函数详解

时间:2018-11-10 21:53:06      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:img   title   range   legend   inf   nump   mat   数组   形状   

最近开始学习python编程,遇到scatter函数,感觉里面的参数不知道什么意思于是查资料,最后总结如下:

1、scatter函数原型

技术分享图片

 

 

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

 技术分享图片

 

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

 技术分享图片

 

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

#导入必要的模块
import numpy as np
import matplotlib.pyplot as plt
#产生测试数据
x = np.arange(1,10)
y = x
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)、不同大小

#导入必要的模块
import numpy as np
import matplotlib.pyplot as plt
#产生测试数据
x = np.arange(1,10)
y = x
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)、不同颜色

#导入必要的模块
import numpy as np
import matplotlib.pyplot as plt
#产生测试数据
x = np.arange(1,10)
y = x
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

#导入必要的模块
import numpy as np
import matplotlib.pyplot as plt
#产生测试数据
x = np.arange(1,10)
y = x
fig = plt.figure()
ax1 = fig.add_subplot(111)
#设置标题
ax1.set_title(‘Scatter Plot‘)
#设置X轴标签
plt.xlabel(‘X‘)
#设置Y轴标签
plt.ylabel(‘Y‘)
#画散点图
lValue = x
ax1.scatter(x,y,c=‘r‘,s= 100,linewidths=lValue,marker=‘o‘)
#设置图标
plt.legend(‘x1‘)
#显示所画的图
plt.show()

 

 技术分享图片

 

数字的可视化:python画图之散点图sactter函数详解

标签:img   title   range   legend   inf   nump   mat   数组   形状   

原文地址:https://www.cnblogs.com/saryli/p/9940710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!