如何使用R中的ggplot2对直方图的y轴进行标准化?

时间:2015-01-22 16:05:51

标签: r ggplot2 statistics histogram normalize

我用ggplot2制作了我的数据框'HYDROPHILIC_D'的直方图:

qplot(HYDROPHILIC_D, data=HSE_data, geom="histogram", binwidth=2)

但是,我想将y轴标准化。我试过以下但没有成功。

ggplot(HYDROPHILIC_D, data =HSE_data + geom_histogram(aes(x = value,   
y=..ncount..) + scale_y_continuous())

有关scale_y_continuous应该怎么做的任何想法?

谢谢!

0 个答案:

没有答案