码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib 散点图scatter

时间:2017-09-11 19:57:30      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:label   mod   imp   sub   tar   data-   标题   start   otl   

1、scatter函数原型

技术分享

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

技术分享

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

技术分享

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

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

结果如下:

技术分享

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

(1)、不同大小

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

技术分享

(2)、不同颜色

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

结果:

技术分享

(3)、线宽linewidths

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

技术分享

 

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

matplotlib 散点图scatter

标签:label   mod   imp   sub   tar   data-   标题   start   otl   

原文地址:http://www.cnblogs.com/onemorepoint/p/7506211.html

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