| 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,
ccov,
covRob,
fit.models.
data(woodmod.dat)
woodmod.cov <- ccov(woodmod.dat)
woodmod.covRob <- covRob(woodmod.dat)
print(woodmod.cov)
print(woodmod.covRob)
woodmod.fm <- fit.models(list(Robust = "covRob", Classical = "ccov"),
data = woodmod.dat)
print(woodmod.fm)