私はplotrixを使用してラダーチャートを生成しています。各行に相関率を表示したい。誰でも助けてくれませんか。どうもありがとう。
これは私のコードです:
library(plotrix)
args <- commandArgs(TRUE)
pdfname <- args[1]
datafile <- args[2]
pdf(pdfname, width=12,height=12)
eqdata = read.csv(datafile , header = T,sep=",")
educattn <- as.matrix(eqdata[2:3])
rownames(educattn) <- eqdata$ques
colnames(educattn) <- c('Cummulative','Current')
p <- bumpchart(educattn,main="Percentile ranking correlation plot",rank=TRUE,col=rainbow(17),mar=c(5,20,5,20))
print(p)
dev.off()
これが出力されます