我在 .csv 文件中有以下数据:
Name marks1 marks2
xy 10 30
yz 20 40
zx 30 40
vx 20 20
vt 10 20
如何在 y 轴和 x 轴上绘制一个marks1
图形marks2
?
y <- cbind(data$marks1,data$marks2)
x <- cbind(data$Name)
matplot(x,y,type="p")
我需要一个条形图,由于 x 轴数据量很大,我需要正确对齐它们并放置数字
例如图表应该像
标记 1 标记 2 在同一条中以两种不同的颜色标记,并在上面写上标记
#read csv file
aau <- read.csv("",head=TRUE,sep=",")
#convert into matrix format
aaumatrix <- as.matrix(aau)
#create barplot
barplot(aaumatrix)
#check for more attributes of barplot
?barplot