The R package PSPI (Propensity Score Predictive Inference) provides a suite of Propensity Score Predictive Inference (PSPI) methods to generalize treatment effects in trials to target populations. The package includes an existing model Bayesian Causal Forest (BCF) and four PSPI models (BCF-PS, FullBART, SplineBART, DSplineBART). These methods leverage Bayesian Additive Regression Trees (BART) to adjust for high-dimensional covariates and nonlinear associations, while SplineBART and DSplineBART further use propensity score based splines to address covariate shift between trial data and target population.
This package is based on Rcpp,
RcppArmadillo, RcppDist, and pg,
please make sure these three packages can be installed.
This package can be installed from R CRAN:
install.packages("PSPI")
or Github:
require("devtools")
install_github("https://github.com/zjg540066169/PSPI")
library(PSPI)
This package includes code derived from the BART3 package, originally developed by Rodney Sparapani.
The original source code, licensed under the GNU
General Public License version 2 (GPL-2), has been modified as
follows: - We include part of the C++ code in BART3, primarily about
functions about wbart and cpwart. We also
modify some files to make sure our package can be successfully compiled.
- Modifications were made by Jungang Zou, 2024.