Nothing
#### Test special cases for ltsReg()
library(robustbase)
## Platform - and other such info -- so we find it in old saved outputs
.libPaths()
SysI <- Sys.info()
structure(Sys.info()[c(4,5,1:3)], class="simple.list")
library(lib.loc = .libPaths()[1]) # the "R CMD check specific tmp-library"
sessionInfo()
c(robustbase = packageDescription("robustbase")$Built,
DEoptimR = packageDescription("DEoptimR")$Built)
if(SysI[["sysname"]] == "Linux" && require("sfsmisc")) local({
nn <- names(.Sc <- sfsmisc::Sys.cpuinfo())
nn <- names(.Sc <- .Sc[nn != "flags"])
print(.Sc[grep("\\.[0-9]$", nn, invert=TRUE)])
})
### 1) p = 1 ----------------------------------------------------
set.seed(1)
x <- c(rnorm(50),100, 1e10)
(r1 <- ltsReg(x ~ 1)) # failed in Valentin's 1.0-3 (pre-version)
summary(r1)
(r1. <- ltsReg(y = x))
i1 <- 15:17; ii <- (1:20)[-i1]
UN <- function(lis) lapply(lis, unname)
dimnames(r1.$X)[1] <- dimnames(r1$X)[1]
stopifnot(all.equal( r1[ii], r1.[ii], tolerance= 1e-15),
all.equal(UN(r1[i1]), UN(r1.[i1]), tolerance= 1e-15))
## intercept=FALSE, p > 1 -- coefficients were switched once
n <- 100; theta <- c(x=10, x2=40)
set.seed(7)
X <- cbind(x = rt(n, 4), x2 = rnorm(n))
dat <- data.frame(X, y = X %*% theta + rt(n, df=3)/10)
summary(M <- ltsReg(y ~ . -1, data = dat))
stopifnot(all.equal(coef(M), theta, tolerance = 1e-3))
## with alpha = 1
(r1.1 <- ltsReg(x ~ 1, alpha = 1))
summary(r1.1)
### 1b) p = 1, constant scale
(rc <- ltsReg(y = rep(1,12)))
str(rc)
summary(rc)
## with alpha = 1
(rc1 <- ltsReg(y = rep(1,12), alpha = 1))
summary(rc1)
stopifnot(residuals(rc) == 0, all.equal(unname(coef(rc )), 1),
residuals(rc1) == 0, all.equal(unname(coef(rc1)), 1))
### 2) alpha = 1 : classical estimates --- for general cases --------
cat('Time elapsed: ', proc.time(),'\n') # for ``statistical reasons''
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.