| cobs-methods {cobs} | R Documentation |
Print, summary and other methods for cobs objects.
## S3 method for class 'cobs':
print(x, digits = getOption("digits"), ...)
## S3 method for class 'cobs':
summary(object, digits = getOption("digits"), ...)
## S3 method for class 'cobs':
coef(object, ...)
## S3 method for class 'cobs':
fitted(object, ...)
## S3 method for class 'cobs':
knots(Fn, ...)
## S3 method for class 'cobs':
residuals(object, ...)
x, object, Fn |
object of class cobs. |
digits |
number of digits to use for printing. |
... |
further arguments passed from and to methods. |
These are methods for fitted COBS objects, as computed by
cobs.
print.cobs() returns its argument invisibly.
The coef(), fitted(), knots(), and
residuals() methods return a numeric vector.
Martin Maechler
predict.cobs for the predict method,
plot.cobs for the plot method,
and cobs for examples.
example(cobs) Sbs # uses print.* summary(Sbs) coef(Sbs) knots(Sbs)