-
Hi, This is my first brave question on github. First of all - great package- thanks a lot! Second, I am running multiple linear regressions, but my knowledge is vey limited in programming and purr. But then, I wanted to use your beautiful package to check my assumptions on many models (different outcomes)... and I wasn't able to pull it off. My ideal scenario would be having models in table as the link above explains (which I have), I know this is going a bit beyond the scope, but if you have some suggestions, would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
So once you've got your list of model objects |
Beta Was this translation helpful? Give feedback.
So once you've got your list of model objects
model_list
--lapply(model_list, check_model)
ormap(model_list, check_model)
will apply thecheck_model
function to each model in the list.