summary.cm.Rd
summary
method for class icm
.
# S3 method for icm summary(object, ...)
object | an object of class " |
---|---|
… | other arguments. |
The function summary.icm
returns the following elements, given an object of the class "icm
",
a named vector of coefficients.
root mean square error for the lower interval bound.
root mean square error for the upper interval bound.
Billard, L. and Diday, E. (2000) Regression analysis for interval-valued data. Data Analysis, Classification and Related Methods: Proceedings of the Seventh Conference of the International Federation of Classification Societies, Springer-Verlag, pp. 369-374.
Lima Neto, E.A. and De Carvalho, F.A.T. (2008). Centre and range method to fitting a linear regression model on symbolic interval data. Computational Statistics and Data Analysis, 52, 1500--1515.
##-- Continuing the icm() example: data("Cardiological.MinMax", package = "iRegression") ex.icm <- icm(PulseMin~SystMin+DiastMin,PulseMax~SystMax+DiastMax,data=Cardiological.MinMax) ex.sum <- summary(ex.icm) ex.sum#> Call: #> icm.default(formula1 = PulseMin ~ SystMin + DiastMin, formula2 = PulseMax ~ #> SystMax + DiastMax, data = Cardiological.MinMax) #> #> Estimate StdErr #> [1,] 21.1708061 18.4290175 #> [2,] 0.3288879 0.1074485 #> [3,] 0.1698512 0.1327378 #> #> RMSE.L: #> [1] 11.0942 #> RMSE.U: #> [1] 10.41365