How could I create a histogram from this set of summarized data in R?
I attempted this:
dataset <- c(4,17,12,6)
hist(dataset)
However, this showed me the data without the "0-19","60-99" breaks etc.
I would like to know how to create this histogram with the correct breaks and names. Thanks.