bal.ks.psa {PSAgraphics} | R Documentation |
Kolgomorov-Smirnov 2 sample tests for multiple strata
Description
Automates the Kolgomorov-Smirnov 2-sample nonparametric test of equivalence of two distrbutions across multiple pairs of sample distributions.
Usage
bal.ks.psa(continuous, treatment = NULL, strata = NULL)
Arguments
continuous |
Quantitative covariate that is being balanced within
strata in a PSA. If |
treatment |
Binary variable of same length as |
strata |
Integer variable (usually 1 - 5); A vector of same length as continuous indicating the derived strata from estimated propensity scores. Generally 5 or 6 strata are used, but graph works reasonably well at least up to 10 strata. |
Details
Makes multiple calls to ks.test
, returning a vector of p-values
associated with strata from a Propensity Score Analysis.
Value
Returns a vector of same length as the number of strata containing the p-values from the KS-test of equivalence of distributions for each stratum-treatment pair.
Author(s)
James E. Helmreich James.Helmreich@Marist.edu
Robert M. Pruzek RMPruzek@yahoo.com
See Also
bal.ms.psa
, bal.cs.psa
, bal.cws.psa
Examples
continuous<-rnorm(1000)
treatment<-sample(c(0,1),1000,replace=TRUE)
strata<-sample(5,1000,replace=TRUE)
bal.ks.psa(continuous,treatment,strata)