Makes scatter plot for MLR model

plot_mlr_model(model)

Arguments

model

Details

Value

References

Note

See also

Examples

##---- Should be DIRECTLY executable !! ---- ##-- ==> Define data, use random, ##-- or do help(data=index) for the standard data sets. ## The function is currently defined as function (model) { plot_regr(fitted.values(model), fitted.values(model) + residuals(model)) }
#> function (model) #> { #> plot_regr(fitted.values(model), fitted.values(model) + residuals(model)) #> } #> <environment: 0x10f964240>