How could I create a histogram from this set of summarized data in R?
You need a barplot.
Height = c(4,17,12,6) Bins = c("0-19", "20-39", "40-59", "60-99") barplot(Height, names.arg=Bins)