我正在通过 rpy2 用 ggplot2 绘制直方图,如下所示:
p = ggplot2.ggplot(df) + \
ggplot2.aes_string(x="x", colour="sample") + \
ggplot2.facet_grid(Formula("sample ~ .")) + \
ggplot2.geom_histogram(binwidth=0.3, fill="white")
它工作得很好,除了在直方图底部添加一个“基线”栏geom_histogram
,geom_density
我想删除它。这条线怎么去掉?这是我指的是用箭头注释的线的图片。谢谢。