#activate the package library(ggplot2) #load the dataframe ID <- 1:200 values <- rnorm(200, mean=65, sd=15) my.dataframe <- data.frame(ID, values) #simple density plot with ggplot() ggplot(my.dataframe, aes(values)) + geom_density()