我使用给定的命令为我的数据绘制了框图,并尝试在其中写入文本(p值).
使用:
boxplot(data,ylab = prop_index[i]) text(1:2 - 0.4, data[,1]/2, paste("p-value=",p_val))
我应用了"text"命令但是注意已经出现在图像上.请告诉我应用此命令的适当方法
x1 <- rnorm(500) y1 <- sample(c("a", "b", "c"), 500, replace=T) boxplot(x1 ~ y1) text(x= 1, y= 3, labels= "some text") text(x= 2, y= 3, labels= "more \n text") text(x= 3, y= 3, labels= "red text", col= "red")