在seaborn转置factorplot

时间:2017-07-09 12:55:50

标签: python pandas seaborn

按照previous question如何绘制几个箱形图,现在我想知道如何转换因子图而不是1x5图片

enter image description here

我需要将其设为5x1。

如何垂直对齐factorplot?

1 个答案:

答案 0 :(得分:1)

对于seaborn boxplot,您需要使用row参数来提供沿行映射的数量,而不是col参数。

import seaborn as sns
import matplotlib.pyplot as plt

titanic = sns.load_dataset("titanic")

g = sns.factorplot(y="age", x="embark_town",
                    hue="sex", row="class",
                    data=titanic[titanic.embark_town.notnull()],
                   orient="v", kind="box", size=3)
plt.show()

enter image description here