Closed eoppe1022 closed 6 years ago
Thanks! Sorry for delayed reply--caught me traveling. I made the formula the first argument so as to make the function feel like 'lm' or 'glm'. However you can pipe data like so:
iris %>%
kms(input_formula = "Species ~ .")
%>% plot_confusion
or
mtcars %>%
filter(complete.cases(mpg)) %>%
kms(input_formula = "mpg ~.") ->
out
How's that seem?
(Also added more permanent example here)
That's awesome! Nice work. Feel free to close if you want.
Great!
Hey, awesome package. Do you think it would be possible to rearrange the formula so that
data
is the first argument? That way, the formula could be pipeable likedata %>% kms()