Basic density plots. library(ggplot2) # Basic density p <- ggplot(df, aes(x=weight)) + geom_density() p # Add mean ...
確定! 回上一頁