rlm: Robust Regression.

Description Usage Constraints Examples

Description

performs robust regression

Usage

1
rlm(formula, data = list(), psi, ...)

Constraints

plot method not supported Example for widetable: widetbl <- FLTable(getTestTableName("tblautompg"), "ObsID") flmod <- rlm(Weight~ Acceleration , data = widetbl) summary(flmod) coefficients(flmod) residuals(flmod)

Examples

1
2
3
4
5
6
7
8
9
Example for deeptbl:
library(MASS)
options(debugSQL =TRUE)
table  <- FLTable(getTestTableName("tblRobustRegr"), "ObsID","VarID", "Num_Val")
flmod <- rlm(a~., data = table)
predict(flmod)
residuals(flmod)
flmod$fitted.values
summary(flmod)

Fuzzy-Logix/AdapteR documentation built on May 6, 2019, 5:07 p.m.