Outside of the tidymodels universe, it's easy to verify model assumptions. For example with linear regression (function lm), the package performance create understandable graphics and easy functions (check_heteroscedasticity()) to verify assumptions of a linear regression model :
- normality of residuals
- independence of the residuals
- homogeneity of the residuals
- non-collinearity of the variables.
Is there in the tidymodels universe equivalent packages to verify assumptions of a model ? Tidymodels packages create parnsnip object, so old model evaluation packages like performance are useless.
Thank you for your help