找回密码
 注册
查看: 428|回复: 0

R语言 TWIX包 predict.TWIX()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-10-1 13:13:40 | 显示全部楼层 |阅读模式
predict.TWIX(TWIX)
predict.TWIX()所属R语言包:TWIX

                                         Predictions from a TWIX object
                                         一个TWIX对象的预测

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

The result is a data frame, whose rows are prediction values from  appointed tree(s).
其结果是一个数据框,其是从指定的树()的预测值的行。


用法----------Usage----------


## S3 method for class 'TWIX'
predict(object,newdata,sq=1,ccr=FALSE,type="class", ...)



参数----------Arguments----------

参数:object
an object returned from TWIX function.
对象返回从TWIX功能。


参数:newdata
data frame containing the new data(test data).
数据框包含新的数据(测试数据)。


参数:sq
Integer vector indicating for which trees predictions are required.
整向量表明树木的预测,是必需的。


参数:ccr
logical. If TRUE the result is a list of two components:  a data frame with prediction values and correct classification rate of trees.
逻辑。如果TRUE的结果是一个两部分组成:数据框的预测值和分类正确率的树木。


参数:type
character string indicating the type of predicted value returned.  Either class predicted classes or prob estimated class  probabilities are returned.
返回类型的预测值的字符串表示。无论是class预测班或返回prob估计类概率。


参数:...
additional arguments.
其他参数。


参见----------See Also----------

bagg,  TWIX,  plot.TWIX
bagg,TWIX,plot.TWIX


实例----------Examples----------


    library(ElemStatLearn)
    data(SAheart)

    ### response variable must be a factor[##响应变量必须是一个因素,]
    SAheart$chd <- factor(SAheart$chd)

    ### test and train data[##测试和训练数据]
    ###[##]
    set.seed(1234)
    icv <- sample(nrow(SAheart),nrow(SAheart)/3)
    itr <- setdiff(1:nrow(SAheart),icv)
    train <- SAheart[itr,]
    test <- SAheart[icv,]

    M1 <- TWIX(chd~.,data=train,topN=c(4,3),topn.method="single")

    ### classification [##分类]
    pred <- predict(M1,newdata=test,sq=1:2)
    pred

    ### for correct classification rate[##分类正确率]
    predict(M1,newdata=test,sq=1:2,ccr=TRUE)$CCR

    ### estimated class probabilities[##估计类概率]
    predict(M1,newdata=test,sq=1,type="prob")

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-28 18:47 , Processed in 0.581565 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表