从R中的数据表中生成直方图

时间:2016-04-21 03:28:30

标签: r histogram

我有一个变量说一个数据为

计数|值

2 |苹果

5 |球

6 |猫

10 |狗

我想构建一个直方图,使得我的x轴值和y轴计数值。不知道怎么做

1 个答案:

答案 0 :(得分:1)

我们可以使用barplot

barplot(setNames(df1$Count, df1$Value))

数据

df1 <- structure(list(Count = c(2, 5, 6, 10), Value = c("Apple", "Ball",  
"Cat", "Dog")), .Names = c("Count", "Value"), class = "data.frame",
 row.names = c(NA, -4L))