Ivan Jacob Agaloos Pesigan 2026-06-13
Generates nonparametric bootstrap confidence intervals (Efron &
Tibshirani, 1993: https://doi.org/10.1201/9780429246593) for
standardized regression coefficients (beta) and other effect sizes,
including multiple correlation, semipartial correlations, improvement in
R-squared, squared partial correlations, and differences in standardized
regression coefficients, for models fitted by lm().
You can install the CRAN release of betaNB with:
install.packages("betaNB")You can install the development version of betaNB from
GitHub with:
if (!require("pak")) install.packages("pak")
pak::pkg_install("jeksterslab/betaNB")In this example, a multiple regression model is fitted using program
quality ratings (QUALITY) as the regressand/outcome variable and
number of published articles attributed to the program faculty members
(NARTIC), percent of faculty members holding research grants
(PCTGRT), and percentage of program graduates who received support
(PCTSUPP) as regressor/predictor variables using a data set from 1982
ratings of 46 doctoral programs in psychology in the USA (National
Research Council, 1982). Confidence intervals for the standardized
regression coefficients are generated using the BetaNB() function from
the betaNB package.
library(betaNB)df <- betaNB::nas1982Fit the regression model using the lm() function.
object <- lm(QUALITY ~ NARTIC + PCTGRT + PCTSUPP, data = df)nb <- NB(object)BetaNB(nb, alpha = 0.05)
#> Call:
#> BetaNB(object = nb, alpha = 0.05)
#>
#> Standardized regression slopes
#> type = "pc"
#> est se R 2.5% 97.5%
#> NARTIC 0.4951 0.0713 5000 0.3617 0.6396
#> PCTGRT 0.3915 0.0759 5000 0.2369 0.5352
#> PCTSUPP 0.2632 0.0791 5000 0.1087 0.4179The betaNB package also has functions to generate nonparametric
bootstrap confidence intervals for other effect sizes such as RSqNB()
for multiple correlation coefficients (R-squared and adjusted
R-squared), DeltaRSqNB() for improvement in R-squared, SCorNB() for
semipartial correlation coefficients, PCorNB() for squared partial
correlation coefficients, and DiffBetaNB() for differences of
standardized regression coefficients.
RSqNB(nb, alpha = 0.05)
#> Call:
#> RSqNB(object = nb, alpha = 0.05)
#>
#> R-squared and adjusted R-squared
#> type = "pc"
#> est se R 2.5% 97.5%
#> rsq 0.8045 0.0523 5000 0.6950 0.8982
#> adj 0.7906 0.0560 5000 0.6732 0.8910DeltaRSqNB(nb, alpha = 0.05)
#> Call:
#> DeltaRSqNB(object = nb, alpha = 0.05)
#>
#> Improvement in R-squared
#> type = "pc"
#> est se R 2.5% 97.5%
#> NARTIC 0.1859 0.0589 5000 0.0838 0.3125
#> PCTGRT 0.1177 0.0481 5000 0.0353 0.2190
#> PCTSUPP 0.0569 0.0341 5000 0.0091 0.1366SCorNB(nb, alpha = 0.05)
#> Call:
#> SCorNB(object = nb, alpha = 0.05)
#>
#> Semipartial correlations
#> type = "pc"
#> est se R 2.5% 97.5%
#> NARTIC 0.4312 0.0690 5000 0.2895 0.5591
#> PCTGRT 0.3430 0.0722 5000 0.1879 0.4680
#> PCTSUPP 0.2385 0.0711 5000 0.0952 0.3696PCorNB(nb, alpha = 0.05)
#> Call:
#> PCorNB(object = nb, alpha = 0.05)
#>
#> Squared partial correlations
#> type = "pc"
#> est se R 2.5% 97.5%
#> NARTIC 0.4874 0.0978 5000 0.2937 0.6676
#> PCTGRT 0.3757 0.1070 5000 0.1626 0.5774
#> PCTSUPP 0.2254 0.1143 5000 0.0423 0.4786DiffBetaNB(nb, alpha = 0.05)
#> Call:
#> DiffBetaNB(object = nb, alpha = 0.05)
#>
#> Differences of standardized regression slopes
#> type = "pc"
#> est se R 2.5% 97.5%
#> NARTIC-PCTGRT 0.1037 0.1302 5000 -0.1416 0.3773
#> NARTIC-PCTSUPP 0.2319 0.1230 5000 0.0002 0.4829
#> PCTGRT-PCTSUPP 0.1282 0.1262 5000 -0.1221 0.3787See GitHub Pages for package documentation.
Efron, B., & Tibshirani, R. J. (1993). An introduction to the bootstrap. Chapman & Hall. https://doi.org/10.1201/9780429246593
National Research Council. (1982). An assessment of research-doctorate programs in the United States: Social and behavioral sciences. National Academies Press. https://doi.org/10.17226/9781
Pesigan, I. J. A. (2022). Confidence intervals for standardized coefficients: Applied to regression coefficients in primary studies and indirect effects in meta-analytic structural equation modeling [PhD thesis]. University of Macau.
R Core Team. (2026). R: A language and environment for statistical computing. R Foundation for Statistical Computing. https://www.R-project.org/