标签: r ggplot2
使用数据框df和列col_name,我会生成如下的直方图。
df
col_name
ggplot(df, aes_string(x=col_name)) + geom_histogram(aes(y=..density..), binwidth=1, colour="black", fill="white")
这给了我一个如下的直方图。我需要改变这两件事。