matplotlib中的Seaborn pointplot行为

时间:2017-08-28 00:49:26

标签: python matplotlib seaborn

您好我正在关注使用seaborn并尝试使用matplotlib执行相同绘图的kaggle泰坦尼克教程

    grid = sns.FacetGrid(train_df, row='Embarked', size=2.2, aspect=1.6)
    grid.map(sns.pointplot, 'Pclass', 'Survived', 'Sex', palette='deep')
    grid.add_legend()

我想使用matplotlib函数。我尝试使用df.plot但似乎无法决定将哪些包含在x& y以及如何获得Embarked

的子图

0 个答案:

没有答案