I have the following dataset (edited for readability):
chol <- read.table(url("http://assets.datacamp.com/blog_assets/chol.txt"), header = TRUE)
And I am creating a histogram of the data doing:
ggplot(data=chol, aes(chol$AGE)) + geom_histogram()
For a particular example I would like to change the x-labels however.
Any thoughts on how I can pull this of?
See Question&Answers more detail:os