library(ggplot2) > > set.seed(123) > norm_nums <- rnorm(1000) > hist_df <- data.frame(norm_nums = norm_nums) > ggplot(hist_df, aes(x = norm_nums)) + ...
確定! 回上一頁