R/plotCuspResidfitted.R

`plotCuspResidfitted` <-
function (object, caption = "Residual vs Fitted", xlab = paste("Fitted (", 
    colnames(fitted(object))[1], " convention)", sep = ""), ylab = "Residual", 
    ...) 
{
    plot(fitted(object), resid(object), xlab = xlab, ylab = ylab, 
        ..., main = caption)
}

Try the cusp package in your browser

Any scripts or data that you put into this service are public.

cusp documentation built on Aug. 29, 2022, 9:07 a.m.