标签: r histogram data-analysis
如何从R?
我试过这个:
dataset <- c(4,17,12,6) hist(dataset)
但是,这显示了没有&#34; 0-19&#34;,&#34; 60-99&#34;休息等。
我想知道如何使用正确的符号和名称创建此直方图。感谢。
答案 0 :(得分:1)
你需要一个条形图。
Height = c(4,17,12,6) Bins = c("0-19", "20-39", "40-59", "60-99") barplot(Height, names.arg=Bins)
barplot有许多参数,您可以考虑调整这些参数以使其更漂亮。
barplot