getSummary {sitepickR} | R Documentation |
Summary tables
Description
Build summary tables, with unit/match/sub-unit balance between initially selected units and a target population, for each covariate of interest
Usage
getSummary(smOut, diagnostic)
Arguments
smOut |
list; selectMatch() output |
diagnostic |
numeric; balance Diagnostic: "unitBal" = original unit balance, "matchBal" = match balance, "matchFreq" = sucessful match frequency, "matchCount" = match success count by replacement group, "subunitBal" =sub-unit balance |
Value
ggplot object
Examples
################################################################################
############## Balance Diagnostics [sitepickR Package] #########################
######### Robert Olsen, Elizabeth A. Stuart & Elena Badillo-Goicoechea (2022) ##
################################################################################
# Basic usage of getSummary()
rawCCD <- sitepickR::rawCCD
uSampVarsCCD <- c("w.pct.frlunch", "w.pct.black", "w.pct.hisp", "w.pct.female")
suSampVarsCCD <- c("sch.pct.frlunch", "sch.pct.black", "sch.pct.hisp", "sch.pct.female")
dfCCD <- prepDF(rawCCD,
unitID="LEAID", subunitID="NCESSCH")
dfCCD <- dplyr::filter(dfCCD, unitID %in% unique(dfCCD$unitID)[1:80])
smOut <- selectMatch(df = dfCCD, # user dataset
unitID = "LEAID", # column name of unit ID in user dataset
subunitID = "NCESSCH", # column name of sub-unit ID in user dataset
unitVars = uSampVarsCCD, # name of unit level covariate columns
subunitSampVars = suSampVarsCCD, # name of sub-unit level covariate columns
nUnitSamp = 30,
nRepUnits = 5,
nsubUnits = 2
)
getSummary(smOut, diagnostic="unitBal")
[Package sitepickR version 0.0.1 Index]