[Solved] Create histogram from summarized data R [closed]
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) barplot has many parameters that you might consider adjusting to make this prettier. 1 solved Create histogram from summarized data R [closed]