我用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应该怎么做的任何想法?
谢谢!