如何在python中使用分类变量在seaborn或matplotlib中绘制直方图

时间:2019-02-16 05:40:34

标签: python matplotlib

我在熊猫中有以下数据框

    Value1    Value2     Target
    23.45     12.34       0
    12.21     23.67       1
    9.22      56.43       1
    8.34      67.54       0
    9.23      68.00       1
    8.21      77.54       1
    10.23     34.54       0

这是一个示例数据框。我想在Target变量中绘制Value1和Value2的分布图。我可以使用以下命令绘制数字变量的distplot。

 df_num= df.select_dtypes(include = ['float64', 'int64'])
 df_num.hist(figsize=(16, 20), bins=50, xlabelsize=8, ylabelsize=8)

但是我想在目标列的01中看到数值变量的分布。

0 个答案:

没有答案