我想将 spearman 相关性插入到空图中。目前我正在使用 mtext(...) 执行此操作,但是当无法计算相关性时我遇到了问题。在这种情况下,出现“NA”(Spearman 的结果和图中的 NA 都没有“)。
如何在图中省略显示 NA?
newcor<- (cor(twocolumndata,method=c("spearman")) # as there are 2 values newcor has to be specified >newcor[2] plot(c(0,1),c(0,1),type = "n", xaxt='n', yaxt='n',xlab='n') # Empty Plot mtext(newcor[2])#insert text (I left out here the positional infos)
附加信息: - 这个情节将进入 10 乘以 10 情节,因此它需要是自动的。- na.omit 在这里不起作用,我认为这可能是因为 NA 可能是字符
谢谢R人!朱莉娅