什么R-package可以产生这个情节?

时间:2018-01-18 09:43:47

标签: r plot

我想制作" B"中所示的图形。和" C"。你知道这个剧情的名称是什么吗?我可以用什么R-package从我自己的数据中产生它?

enter image description here

1 个答案:

答案 0 :(得分:1)

再次添加此作为答案。
使用常规的条形图很容易实现。 请参见示例here

counts <- table(mtcars$gear)
barplot(counts, main="Car Distribution", horiz=TRUE,
names.arg=c("3 Gears", "4 Gears", "5 Gears"))