Python学习笔记(8)数据可视化

#encoding=gbk
 
import matplotlib.pyplot as plt
 
#1.使用plot绘制折线图
values = [1,2,3,4,5]
squares = [1,4,9,16,25]
#plt.plot(squares)
plt.plot(values,squares,linewidth=5)
#设置图标标题,并给坐标轴加上标签
plt.title('Squares Numbers', fontsize=24)
plt.xlabel('Value', fontsize=14)
plt.ylabel('Squares of Value', fontsize=14)
plt.tick_params(axis='both',labelsize=14) #设置刻度标记的大小
plt.show()
 
#2.使用scatter()绘制散点图
#plt.scatter(2,4,s=200)   #s制定点的尺寸
plt.scatter(values,squares,s=200)
plt.title('Squares Numbers', fontsize=24)
plt.xlabel('Value', fontsize=14)
plt.ylabel('Squares of value', fontsize=14)
plt.tick_params(axis='both',which='major',labelsize=14)
plt.show()


x_values = list(range(1,1001))
y_values = [x ** 2 for x in x_values]
#plt.scatter(x_values, y_values, c='red', s=10)       #参数c设置点的颜色,也可c=(0,0.5,0.8) RGB颜色
plt.scatter(x_values, y_values, c=y_values, cmap=plt.cm.Blues, edgecolor='none', s=10)  #使用颜色映射
plt.title('Squares Numbers', fontsize=24)
plt.xlabel('Values',fontsize=14)
plt.ylabel('Square of Value', fontsize=14)
plt.tick_params(axis='both',which='major',labelsize=14)
#plt.show()
#自动保存图表,第一个参数是保存的位置,第二个参数是剪裁多余的空白区域,supported formats: eps, pdf, pgf, png, ps, raw, rgba, svg, svgz
plt.savefig('C:\\Users\\bingk\\Desktop\\python_dir\\picture\\Square_numbers.png',bbox_inches='tight')
 
 

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值