pamr.predict: A function giving prediction information, from a nearest...

Description Usage Arguments Details Author(s) Examples

View source: R/pamr.predict.R

Description

A function giving prediction information, from a nearest shrunken centroid fit

Usage

1
2
3
pamr.predict(fit, newx, threshold,
             type = c("class", "posterior", "centroid", "nonzero"),
             prior = fit$prior, threshold.scale = fit$threshold.scale)

Arguments

fit

The result of a call to pamr.train

newx

Matrix of features at which predictions are to be made

threshold

The desired threshold value

type

Type of prediction desired: class predictions, posterior probabilities, (unshrunken) class centroids, vector of genes surviving the threshold

prior

Prior probabilities for each class. Default is that specified in "fit"

threshold.scale

Additional scaling factors to be applied to the thresholds. Vector of length equal to the number of classes. Default is that specified in "fit".

Details

pamr.predict Give a cross-tabulation of true versus predicted classes for the fit returned by pamr.train or pamr.cv, at the specified threshold

Author(s)

Trevor Hastie, Robert Tibshirani, Balasubramanian Narasimhan, and Gilbert Chu

Examples

1
2
3
4
5
6
7
8
9
suppressWarnings(RNGversion("3.5.0"))
set.seed(120)
x <- matrix(rnorm(1000*20),ncol=20)
y <- sample(c(1:4),size=20,replace=TRUE)
mydata <- list(x=x,y=y)
mytrain <-   pamr.train(mydata)
mycv <- pamr.cv(mytrain,mydata)
pamr.predict(mytrain, mydata$x , threshold=1)
 

Example output

Loading required package: cluster
Loading required package: survival
1234567891011121314151617181920212223242526272829301234Fold 1 :123456789101112131415161718192021222324252627282930
Fold 2 :123456789101112131415161718192021222324252627282930
Fold 3 :123456789101112131415161718192021222324252627282930
Fold 4 :123456789101112131415161718192021222324252627282930
 [1] 4 3 4 2 1 2 3 1 3 3 4 1 3 4 2 3 4 1 2 1
Levels: 1 2 3 4

pamr documentation built on May 2, 2019, 12:35 p.m.

Related to pamr.predict in pamr...