-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
In an example I'm working with I got
> covariates %>% setdiff("adjcnt_a20_64") %>%
+ paste(collapse="+") %>% paste("z ~", .) %>%
+ balanceTest(counties, unit.weights=adjcnt_a20_64)
Error: $ operator is invalid for atomic vectorsWas able to get it to run by
covariates %>% setdiff("adjcnt_a20_64") %>%
paste(collapse="+") %>% paste("z ~", .) %>%
as.formula() %>%
balanceTest(counties, unit.weights=adjcnt_a20_64)Perhaps this is something we can take care of rather than leaving it to the user to figure out? (proj1-balT@ec7b1ee)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels