📜  ggplot2 histogram - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:35.132000             🧑  作者: Mango

代码示例2
# Add mean line
p+ geom_vline(aes(xintercept=mean(weight)),
            color="blue", linetype="dashed", size=1)
# Histogram with density plot
ggplot(df, aes(x=weight)) + 
 geom_histogram(aes(y=..density..), colour="black", fill="white")+
 geom_density(alpha=.2, fill="#FF6666")