python 绘制多个图表 - Seaborn(sns)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 绘制多个图表 - Seaborn(sns)相关的知识,希望对你有一定的参考价值。
import seaborn as sns
import matplotlib.pyplot as plt
sns.set(style="ticks")
# create figure
fig= plt.figure(figsize=(20,10))
# create axis
ax1 = plt.subplot2grid((1,2),(0,0))
ax2 = plt.subplot2grid((1,2),(0,1))
# plot (= boxplots)
sns.boxplot(x='colx', y='coly', data=df,ax=ax1)
sns.boxplot(x='colx', y='coly', data=df,ax=ax2)
# set separations between charts
plt.subplots_adjust(wspace = 0.2)
# plot
plt.show()
以上是关于python 绘制多个图表 - Seaborn(sns)的主要内容,如果未能解决你的问题,请参考以下文章
Python Seaborn:在 Facetgrid 中绘制多个 distplot
python 示例显示如何使用累积比绘制直方图。使用seaborn.FacetGrid()绘制多个直方图。
Python Seaborn 联合图未在图表上显示相关系数和 p 值
Python 绘图总结(seaborn库的使用) (上)
Python。在 Seaborn Facetgrid 上使用两个 y 轴绘制线图和条形图
停止 seaborn 在彼此之上绘制多个图形