NEWS.md

regressinator 0.2.0

regressinator 0.1.3

This version fixes several bugs that arose during classroom use.

For example, if you fit this model:

bad_fit <- lm(cars$dist ~ cars$speed)

the simulation functions cannot work correctly because even with a different data = argument, the model fit will still refer to cars. The model should be fit like this:

good_fit <- lm(dist ~ speed, data = cars)

To prevent simulation problems, a suitable error is issued, so the user can refit the model correctly.

regressinator 0.1.2

First version released to CRAN.



Try the regressinator package in your browser

Any scripts or data that you put into this service are public.

regressinator documentation built on Sept. 11, 2024, 6:50 p.m.