I am currently running multilevel analyses in R to analyze data for a daily diary study where observations are nested within people. I am interested in identifying how much of the total variance in my variables of interest is at the between-person and within-person level. I am trying to determine this with the ICC(1) in R and the residual ICC (1-ICC), but I was wondering if anyone might know how to find the associated p-values for the ICC and residual ICC? I have tried using the icc() function in the performance package and the multilevel.icc() function in the misty package, but they don't seem to provide p-values in the output.
Thank you!
DB_results <- lmer(DB_score~1+(1|MID), data=analysisData, REML=FALSE)
icc_DB <- performance::icc(DB_results)
And then, to look at the residual ICC, I did the following: icc_DB <- 0.756 residual_icc_DB <- 1 - icc_DB
– ccoul Jun 02 '22 at 16:19