|
|
|
|
|
by torfason
2023 days ago
|
|
The zfit package is intended to address this issue, with the zlm() and comparable functions that are very thin wrappers around lm() and friends. The ony thing they do is flip the argument order so the data comes first, making exactly this use case much simpler. So you can do: cars %>% zlm(dist ~ speed)
(or now) cars |> zlm(dist ~ speed)
https://github.com/torfason/zfit |
|
Plus, I still wouldn't trust the code
to necessarily work the way I want, or to work the same way across package versions.