Grouped Bar Plot Species and plots

时间:2014-11-16 06:56:51

标签: r plot

我想制作一个有两组的分组条形图。一个名为Exotic Species,另一个名为Native Species。然后将它们与找到它们的绘图进行比较。因此图中涉及3列。 Y将是“物种丰富度”,它将是本地或外来物种的数量。 X将是“Plot name”。如何写出我上面描述的条形图的编码?如果你谷歌搜索欧洲议会选举R分组barplot(橙色和purply情节。这就是我想要的

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题你想要这样的事情: enter image description here

这是两个解决方案:

1. 使用barplot:让我们说mtcars是数据帧

# Grouped Bar Plot
counts <- table(mtcars$vs, mtcars$gear)
barplot(counts, main="Car Distribution by Gears and VS",
  xlab="Number of Gears", col=c("darkblue","red"),
    legend = rownames(counts), beside=TRUE)

Link

  1. 使用格子

    库(晶格) 条形图(物种〜原因,数据= Reasonstats,基团= CATERGORY,          scales = list(x = list(rot = 90,cex = 0.8)))

  2. Link