View source: R/fitted.enetLTS.R
fitted.enetLTS | R Documentation |
"enetLTS"
object.
A numeric vector which extract fitted values from the current model.
## S3 method for class 'enetLTS' fitted(object,vers=c("reweighted","raw","both"),type=c("response","class"),...)
object |
the model fit from which to extract fitted values. |
vers |
a character string specifying for which fit to make
predictions. Possible values are |
type |
type of prediction required. |
... |
additional arguments from the |
A numeric vector containing the requested fitted values.
Fatma Sevinc KURNAZ, Irene HOFFMANN, Peter FILZMOSER
Maintainer: Fatma Sevinc KURNAZ <fskurnaz@gmail.com>;<fskurnaz@yildiz.edu.tr>
enetLTS
,
predict.enetLTS
,
residuals.enetLTS
## for gaussian set.seed(86) n <- 100; p <- 25 # number of observations and variables beta <- rep(0,p); beta[1:6] <- 1 # 10% nonzero coefficients sigma <- 0.5 # controls signal-to-noise ratio x <- matrix(rnorm(n*p, sigma),nrow=n) e <- rnorm(n,0,1) # error terms eps <- 0.1 # contamination level m <- ceiling(eps*n) # observations to be contaminated eout <- e; eout[1:m] <- eout[1:m] + 10 # vertical outliers yout <- c(x %*% beta + sigma * eout) # response xout <- x; xout[1:m,] <- xout[1:m,] + 10 # bad leverage points fit1 <- enetLTS(xout,yout,crit.plot=FALSE) fitted(fit1) fitted(fit1,vers="raw") fitted(fit1,vers="both") fitted(fit1,vers="reweighted",type="response") ## for binomial eps <-0.05 # %10 contamination to only class 0 m <- ceiling(eps*n) y <- sample(0:1,n,replace=TRUE) xout <- x xout[y==0,][1:m,] <- xout[1:m,] + 10; # class 0 yout <- y # wrong classification for vertical outliers fit2 <- enetLTS(xout,yout,family="binomial") fitted(fit2) fitted(fit2,vers="raw") fitted(fit2,vers="both",type="class") fitted(fit2,vers="both") fitted(fit2,vers="reweighted",type="class") ## for multinomial n <- 120; p <- 15 NC <- 3 X <- matrix(rnorm(n * p), n, p) betas <- matrix(1:NC, ncol=NC, nrow=p, byrow=TRUE) betas[(p-5):p,]=0; betas <- rbind(rep(0,NC),betas) lv <- cbind(1,X) %*% betas probs <- exp(lv)/apply(exp(lv),1,sum) y <- apply(probs,1,function(prob){sample(1:NC, 1, TRUE, prob)}) xout <- X eps <-0.05 # %10 contamination to only class 0 m <- ceiling(eps*n) xout[1:m,] <- xout[1:m,] + 10 # bad leverage points yout <- y fit3 <- enetLTS(xout,yout,family="multinomial") fitted(fit3) fitted(fit3,vers="raw") fitted(fit3,vers="both",type="class") fitted(fit3,vers="both") fitted(fit3,vers="reweighted",type="class")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.