摘要:
画带标准差的柱状图,除了barplot之外,还需要用到Hmisc包中的errbar。x=read.table("correlation_coefficient_inter-class")y=read.table("correlation_coefficient_between-class")inter=mean(x[,1])between=mean(y[,1])y_mean=cbind(inter,between)mp=barplot(y_mean,ylim=c(0,1), col = c(rgb(216,179,101,maxColorValue=25
阅读全文