the irls
R function carries out Iteratively Re-weighted Least Squares algorithm (Source: https://www.rdocumentation.org/packages/msme/versions/0.5.3/topics/irls).
One of the argument that can be passed in the irls
function is the offset
. According to the website above, offset
is defined as:
"this can be used to specify an a priori known component to be included in the linear predictor during fitting. This should be 0 or a numeric vector of length equal to the number of cases"
Which I am not so sure what it means (could be something really simple, but I am not sure).
What is the argument offset
for in this R function?
Thank you,