如何在R中绘制直方图?

时间:2016-07-20 11:34:37

标签: r histogram

我正在使用R而我想绘制直方图,其中x-axis是车辆数量,y-axis是时间间隔。 类似的东西:

this

1 个答案:

答案 0 :(得分:-1)

我想你需要一个条形图:

x <- data.frame(n_vehicles = c(10, 20, 30, 40),
                time_interval = c(2, 5, 4, 9))
barplot(height = x$time_interval,
        names.arg = x$n_vehicles)

enter image description here

或者:

plot(x = x$n_vehicles,
     y = x$time_interval,
     type = "h")

"h"代表“直方图”。