I received this
Error in if (min(corr) < -1 - .Machine$double.eps || max(corr) > 1 + .Machine$double.eps) { : missing value where TRUE/FALSE needed
and I am not sure what it means. I have a missing value in my data and would like to remove that row of data. My previous code for getting a corrplot was
library(corrplot)
C <- cor(SIMPIN_Data)
corrplot(C, method="number", use="complete.obs")
Help? I am very new to R.
My data looks like this
 1-Response time 1-Accuracy 2-Response time 2-Accuracy 3-Response Time 3-Accuracy
1        500         .80             200          .60          100         .99
2        550          NA             250          .30          900         .50
3        550         .20             250          .30          900         .50
 
    