Confidence Intervals for Multiple Correlation Coefficients (R-Squared and Adjusted R-Squared)
Source:R/betaSandwich-methods-r-sq-beta-sandwich.R
confint.rsqbetasandwich.Rd
Confidence 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 -7.163476 8.772529
#> adj -7.746582 9.327709