I have been able to generate the following correlation matrix using:
attach(iris)
library(corrplot)
library(Hmisc)
library(Formula)
library(survival)
#FOR SETOSA:
m<-levels(Species)
setosaCor=cor(iris[Species==m[1],1:4],method = "pearson")
corrplot(setosaCor,method="number",mar=c(0,0,1,0),tl.col="black")
However, struggling to get the p values for this matrix. I need the p values in the form a matrix. This is what I've tried but not having any luck
p.value<-rcorr(as.matrix(iris[c(1,2,3,4)]), type=c("pearson"))
cor_mat(iris, vars = NULL, method = "pearson", alternative = "two.sided",conf.level = 0.95)
so like this?
output:
also the output have matrix format you can subset with [] symbols