#Computes Pearson's correlation matrix with p-values in R library(metan) # All numeric variables View(data_ge2) ALL=corr_coef(data_ge2) ALL plot(ALL) # Select variables Some=corr_coef(data_ge2, EP, EL, CD, CL,KW,ED,EL) Some plot(Some) ############