Confidence Intervals for Multiple Correlation Coefficients (R-Squared and Adjusted R-Squared)
Source:R/betaSandwich-methods-r-sq-beta-sandwich.R
confint.rsqbetasandwich.RdConfidence Intervals for Multiple Correlation Coefficients (R-Squared and Adjusted R-Squared)
Usage
# S3 method for class 'rsqbetasandwich'
confint(object, parm = NULL, level = 0.95, ...)Examples
object <- lm(QUALITY ~ NARTIC + PCTGRT + PCTSUPP, data = nas1982)
std <- BetaHC(object)
rsq <- RSqBetaSandwich(std)
confint(rsq, level = 0.95)
#> 2.5 % 97.5 %
#> rsq 0.7413304 0.8677221
#> adj 0.7228540 0.8582736