我正在尝试在 R 中绘制这些数据-
column1 column2 column3
1-2 abc 10
1-2 def 15
1-2 ghi 20
2-3 abc 80
2-3 def 95
2-3 ghi 10
3-4 abc 30
3-4 def 55
3-4 ghi 80
x 轴将是 column1(因此 1-2、2-3 和 3-4 将作为 x 轴出现),并且在 y 轴上,应为每个 column2 元素绘制 column3 中的值。所以这本质上是一个“分组”的条形图。
我无法使用 R 绘制此分组条形图。我使用的代码片段如下:
dataset <- fetch(rs,n=-1)
plot_var <- table(dataset$percentage, dataset$age)
barplot(plot_var, names.arg,
main="Title of Graph",
xlab="Column1", col=c("darkblue","red"),
legend = rownames(plot_var), beside=TRUE)
如何让这个分组条形图显示?谢谢!