print.summary.ibr {ibr} | R Documentation |
print
method for class “summary.ibr
”.
## S3 method for class 'summary.ibr': print(x,displaybw=FALSE, digits = max(3, getOption("digits") - 3), ...)
x |
Object of class ibr . |
displaybw |
Boolean that indicates if bandwidth are printed or not. |
digits |
Rounds the values in its first argument to the specified number of significant digits. |
... |
Further arguments passed to or from other methods. |
The function print.summary.ibr
prints a list of summary
statistics of the fitted iterative bias reduction model given in x
.
Pierre-Andre Cornillon, Nicolas Hengartner and Eric Matzner-Lober.
Cornillon, P. A., Hengartner, N. and Matzner-Lober, E. (2009) Recursive Bias Estimation for high dimensional regression smoothers. submitted.
## Not run: data(ozone, package = "ibr") res.ibr <- ibr(ozone[,-1],ozone[,1],df=1.2) summary(res.ibr) predict(res.ibr) ## End(Not run)