| print.covfm {robust} | R Documentation |
The generic print method for objects of class "cov", "covRob", and "covfm".
## S3 method for class 'cov': print(x, ...) ## S3 method for class 'covRob': print(x, ...) ## S3 method for class 'covfm': print(x, ...)
x |
an oject of class "cov", "covRob", or "covfm". |
... |
additional arguments to be passed to the print functions, for example digits. |
x is invisibly returned.
a short description of the object is displayed in the console.
print,
cov,
covRob,
fit.models.
data(woodmod.dat) woodmod.cov <- cov(woodmod.dat) print(woodmod.cov) woodmod.covRob <- covRob(woodmod.dat) print(woodmod.covRob) woodmod.fm <- fit.models(list(Robust = "covRob", Classical = "cov"), data = woodmod.dat) print(woodmod.fm)