博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python之Seaborn
阅读量:6509 次
发布时间:2019-06-24

本文共 932 字,大约阅读时间需要 3 分钟。

install:  

pip install seaborn

 

official examples: https://seaborn.pydata.org/examples/index.html

 

在mac上的bug:

在mac上运行会出现warnings.warn("tight_layout : falling back to Agg renderer")

需要在tight_layout()前添加plt.show(),如果tight_layout()被内置到了API中,我就不知道怎么办了。例子:

import numpy as npimport seaborn as snsimport matplotlib.pyplot as pltsns.set(style="dark")rs = np.random.RandomState(50)# Set up the matplotlib figuref, axes = plt.subplots(3, 3, figsize=(9, 9), sharex=True, sharey=True)# Rotate the starting point around the cubehelix hue circlefor ax, s in zip(axes.flat, np.linspace(0, 3, 10)):    # Create a cubehelix colormap to use with kdeplot    cmap = sns.cubehelix_palette(start=s, light=1, as_cmap=True)    # Generate and plot a random bivariate dataset    x, y = rs.randn(2, 50)    sns.kdeplot(x, y, cmap=cmap, shade=True, cut=5, ax=ax)    ax.set(xlim=(-3, 3), ylim=(-3, 3))plt.show()  # I just add this line, and it worksf.tight_layout()

 

转载地址:http://qfbfo.baihongyu.com/

你可能感兴趣的文章
大家好,新年快乐。
查看>>
在相同的主机上创建一个duplicate数据库
查看>>
Date15
查看>>
从Date类型转为中文字符串
查看>>
基于multisim的fm调制解调_苹果开始自研蜂窝网调制解调器 最快2024年能用上?
查看>>
mupdf不支持x64_Window权限维持(七):安全支持提供者
查看>>
labview如何弹出提示窗口_LabVIEW开发者必读的问答汇总,搞定疑难杂症全靠它了!...
查看>>
hikariconfig mysql_HikariConfig配置解析
查看>>
mysql批量数据多次查询数据库_mysql数据库批量操作
查看>>
jquery 乱码 传参_jquery获取URL中参数解决中文乱码问题的两种方法
查看>>
JDBC_MySQL_jdbc连接mysql_MySQL
查看>>
zcu106 固化_xilinx zcu106 vcu demo
查看>>
java ftpclient 代码_java后台代码ftpclient下载文件
查看>>
java数据库生成model_继承BaseModelGenerator 生成Model时添加数据库表字段 生成代码示例...
查看>>
smarty使用php代码,笑谈配置,使用Smarty技术_php
查看>>
silk v3 decoder php,解码转换QQ微信的SILK v3编码音频为MP3或其他格式
查看>>
linux不能访问80端口,lunux开放80端口(本地访问不了linux文件可能是这个原因)...
查看>>
android单位转换小程序,微信小程序中rpx与rem单位转换
查看>>
ps切图教程 android,PS前端切图完整教程
查看>>
HTML如何把输入框变成必填值,required输入框为必填项
查看>>