Nothing
test_that("d.spls.split works", {
n <- 100
p <- 50
nondes <- 20
sigmaondes <- 0.5
data=d.spls.simulate(n=n,p=p,nondes=nondes,sigmaondes=sigmaondes)
X <- data$X
y <- data$y
ncells <- 5
Datatype <- d.spls.type(y,ncells=ncells)
pcal <- 70
# nb elts in calibration for each cell
ycounts <- sapply(1:ncells,function(u) sum(Datatype==u) )
Listecal <- ceiling(ycounts*pcal/100)
index.cal <- d.spls.split(X,Datatype,Listecal)
test0=which(index.cal==0)
# number of calibration points
expect_equal(length(index.cal), sum(Listecal))
# content of calibration index vector"
expect_equal(test0, integer())
})
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.