我对R来说比较新,我不能为我的生活弄清楚如何让我的条形图足够大,以便它实际上显示我的传奇......
这是我到目前为止所拥有的:
r_plot <- read.table(text = "'Soziale Medien' 'Wissenschaftlicher Text'
50 48
44 37
5 11
1 2", header=TRUE)
barplot(as.matrix(r_plot), beside=TRUE, col=rainbow(4))
legend("bottom", legend=c("asd", "bc", "cd", "ef"), fill=rainbow(4), inset=c(0,-0.5), horiz=TRUE)
我真的不知道如何解决这个问题。