Generates Class Indicator Matrix from a Factor
生成类的一个因素指标矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generates a class indicator function from a given factor.
生成一个类从一个给定的因素指标功能。
用法----------Usage----------
class.ind(cl)
参数----------Arguments----------
参数:cl
factor or vector of classes for cases. </table>
类情况的因素或向量。 </ TABLE>
值----------Value----------
a matrix which is zero except for the column corresponding to the class.
一个矩阵是零除列相应的类。
参考文献----------References----------
Modern Applied Statistics with S. Fourth edition. Springer.
举例----------Examples----------
# The function is currently defined as[该功能目前定义为]
class.ind <- function(cl)
{
n <- length(cl)
cl <- as.factor(cl)
x <- matrix(0, n, length(levels(cl)) )
x[(1:n) + n*(unclass(cl)-1)] <- 1
dimnames(x) <- list(names(cl), levels(cl))
x
}