Skip to contents

Plots residuals (observed - residuals) values vs. predicted values. The predicted values are obtained from the model with the parameters values estimated by maximum likelihood estimation using simulated annealing.

Usage

mle_plot_residuals(
  x,
  yvar,
  lab_residuals = "Residuals",
  lab_predicted = "Predicted",
  ...
)

Arguments

x

List with the results of the simulated annealing algorithm for Maximum Likelihood Estimation. See likelihood::anneal()

yvar

The name of the column that contains the dependent variable (the “observed” value). This column must be present in the source_data of the x (results) list

lab_residuals

The text for the residual axis lab (y-axis)

lab_predicted

The text for the predicted axis lab (x-axis)

...

other ggplot2 parameters

Value

A ggplot object displaying the residuals vs. predicted values, with a horizontal line at zero.