标签: r plot
我想制作" B"中所示的图形。和" C"。你知道这个剧情的名称是什么吗?我可以用什么R-package从我自己的数据中产生它?
答案 0 :(得分:1)
再次添加此作为答案。 使用常规的条形图很容易实现。 请参见示例here
counts <- table(mtcars$gear) barplot(counts, main="Car Distribution", horiz=TRUE, names.arg=c("3 Gears", "4 Gears", "5 Gears"))