We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
balT()
as.formula()
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 vectors
Was 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)
proj1-balT@ec7b1ee
The text was updated successfully, but these errors were encountered:
Seems this would fit into a larger solution to dispatch on the first argument of balanceTest to make balanceTest.formula and balanceTest.character.
balanceTest
balanceTest.formula
balanceTest.character
Sorry, something went wrong.
No branches or pull requests
In an example I'm working with I got
Was able to get it to run by
Perhaps this is something we can take care of rather than leaving it to the user to figure out? (
proj1-balT@ec7b1ee
)The text was updated successfully, but these errors were encountered: