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
E.g.,
> n <- 10 > aa <- data.frame(x = rnorm(n), y = rnorm(n), t = rep(0:1, each = n/2)) > aa$match <- fullmatch(t ~ x, data = aa) > mlm(y ~ scale(x) + match, data = aa) Error in `[.data.frame`(data, all.vars(ttt)) : undefined columns selected
The text was updated successfully, but these errors were encountered:
Addressed #6 by maintaining original variables in modelframe.
f4a93e8
Solved in commit f4a93e8 by creating the new data.frame with core variables instead of computed (e.g. x over scale(x)).
x
scale(x)
Issue was opened just to maintain a log of the change.
Sorry, something went wrong.
No branches or pull requests
E.g.,
The text was updated successfully, but these errors were encountered: