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
# works lmModel = lm(len ~ supp+dose, data = ToothGrowth) # does not work but would be great lmModel = lm(len ~ supp*dose, data = ToothGrowth) broken(lmModel, ToothGrowth[1,])
The text was updated successfully, but these errors were encountered:
candidate fix for #7
56cab46
thanks, interactions are handled now
model <- lm(Sepal.Length~Petal.Width*Species, data=iris) new_observation <- iris[1,] br <- broken(model, new_observation) plot(br)
unfortunately, support for other terms is more difficult right now this will not work:
model <- lm(Sepal.Length~log(Petal.Width), data=iris)
Sorry, something went wrong.
updating documentation after #7
9b77842
Awesome, thanks a lot for the patch and the library itself.
No branches or pull requests
The text was updated successfully, but these errors were encountered: