plot_mlr_model {conmolfields} | R Documentation |
Makes scatter plot for MLR model
plot_mlr_model(model)
model |
##---- 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)) }