pamrI: Instance of a learnerSchema for pamr models

Description Usage Author(s) See Also Examples

Description

This object is an instance of the learnerSchema object and will be typically used as the .method argument of an MLearn call.

Usage

1

Author(s)

Tobias Verbeke

See Also

MLearn

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
  set.seed(120)
  x <- matrix(rnorm(1000*20), ncol=20)
  y <- sample(c(1:4), size=20, replace=TRUE)
  alldf <- cbind.data.frame(t(x), y)

  # assure it is a factor (otherwise error message)
  alldf$y <- factor(alldf$y) 

  (mlobj <- MLearn(y ~ .,
      data = alldf,
      .method = pamrI,
      trainInd = 1:15))

nlcv documentation built on May 2, 2019, 4:56 p.m.

Related to pamrI in nlcv...