plotIC {REMixed}R Documentation

IC plot

Description

IC plot

Usage

plotIC(fit, criterion = BICc, dismin = TRUE)

Arguments

fit

fit object of class cvRemix, from cv.remix;

criterion

which criterion among 'BICc', 'BIC', 'AIC' or 'eBIC' to take into account (default: BICc);

dismin

logical ; if minimizers of information criterion should be display.

Value

IC trhoughout the lambda.grid.

See Also

remix, cv.remix.

Examples

## Not run: 
project <- getMLXdir()

ObsModel.transfo = list(S=list(AB=log10),
                        linkS="yAB",
                        R=rep(list(S=function(x){x}),5),
                        linkR = paste0("yG",1:5))

alpha=list(alpha0=NULL,
           alpha1=setNames(paste0("alpha_1",1:5),paste0("yG",1:5)))

y = c(S=5,AB=1000)

res = cv.remix(project = project,
               dynFUN = dynFUN_demo,
               y = y,
               ObsModel.transfo = ObsModel.transfo,
               alpha = alpha,
               selfInit = TRUE,
               eps1=10**(-2),
               ncores=8,
               nlambda=8,
               eps2=1)

plotCalibration(res)

plotIC(res)

## End(Not run)

[Package REMixed version 0.1.0 Index]