I have a series of data sets that I've fit with non-linear models (same model with different parameters for each data set). I'm trying to model the residuals e
so that we can simulate the results y
. When I plot the residuals (predicted y_hat
- observed y
) vs the model predictions y
it looks like there is constant variance.
I wanted a less subjective approach than just looking at the plots of the residuals, but the tests I've found are trying to compare across groups. There are no separate groups in this data set. I guess I could partition the data across different levels of y
, but I was tried a different approach, and I'm interested for feedback.
Does it make sense to fit a linear model absolute value(e) = slope*y_hat + intercept
and just check the p-value for the slope parameter? What if my residuals are non-normal?