python工具——Seaborn详解编程语言

Seaborn是基于matplotlib的图形可视化python包

提供了一种高度交互式界面,便于用户能够做出各种有吸引力的统计图表

在matplotlib的基础上封装了更高级的API,使得作图更加容易

官网 IT虾米网

安装

pip install seaborn

eg:

柱形图

import matplotlib.pyplot as plt 
import seaborn as sns 
 
x = [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] 
y = [3, 4, 6, 8, 9, 10, 9, 11, 7, 8] 
sns.barplot(x,y) 
plt.show()

python工具——Seaborn详解编程语言

使用seaborn自带的经典数据集

直接使用会出现

urllib.error.URLError: <urlopen error [Errno 11004] getaddrinfo failed>

产生原因:

  无法访问外网

解决方法:

  手动下载IT虾米网

  放到 C:/Users/当前用户名/seaborn-data下,没有该文件夹手动创建

python工具——Seaborn详解编程语言

 使用tips的数据生成条形图

import matplotlib.pyplot as plt 
import seaborn as sns 
tips = sns.load_dataset("tips") 
tips.head() 
sns.barplot(x='day',y='tip',data=tips) 
plt.show()

python工具——Seaborn详解编程语言

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/20438.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论