对于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()