mblm (version 0.12.1)

summary.mblm: Summarizing median-based linear models

Description

'summary' method for class 'mblm'

Usage

# S3 method for mblm
summary(object, ...)

Arguments

object

an object of class 'mblm', usually, a result of a call to 'mblm'.

...

additional arguments

Value

For the return value, see summary.lm. Summary of 'mblm' class does not contain R-squared values and F-test result.

Details

This function is based on summary.lm code, and the base difference is use of nonparametric wilcox.test to obtain significance and mad instead of standard error of estimates. Of course you can force standard lm behavior by calling summary.lm, but values received in such way has low cognitive value.

References

Theil, H. (1950) A rank invariant method for linear and polynomial regression analysis. Nederl. Akad. Wetensch. Proc. Ser. A 53, 386-392 (Part I), 521-525 (Part II), 1397-1412 (Part III).

Sen, P.K. (1968). Estimates of Regression Coefficient Based on Kendall's tau. J. Am. Stat. Ass. 63, 324, 1379-1389.

Siegel, A.F. (1982). Robust Regression Using Repeated Medians. Biometrika, 69, 1, 242-244.

See Also

summary.lm, mblm, confint.mblm

Examples

Run this code
# NOT RUN {
set.seed(1234)
x <- 1:10+rnorm(10)
y <- x+rnorm(10)
y[10] <- 20
fit <- mblm(y~x)
summary(fit)

# }

Run the code above in your browser using DataLab