softmax {mda} | R Documentation |
softmax(x, gap = F)
x |
a matrix of mode numeric |
gap |
if TRUE , the difference between the largest and
next largest column is returned. |
A factor with levels the column labels of x
and values the
columns corresponding to the maximum column. If gap = TRUE
a
list is returned, the second component of which is the difference
between the largest and next largest column of x
.
data(iris) irisfit <- fda(Species ~ ., data = iris) posteriors <- predict(irisfit, type = "post") confusion(softmax(posteriors), iris[, "Species"])