predict_Weka_classifier(RWeka)
predict_Weka_classifier()所属R语言包:RWeka
Model Predictions for R/Weka Classifiers
R / Weka中分类器的模型预测
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Predicted values based on fitted Weka classifier models.
装Weka中分类模型的基础上的预测值。
用法----------Usage----------
## S3 method for class 'Weka_classifier'
predict(object, newdata = NULL,
type = c("class", "probability"), ...)
参数----------Arguments----------
参数:object
an object of class inheriting from Weka_classifier.
从Weka_classifier继承的类的对象。
参数:newdata
an optional data frame in which to look for variables with which to predict. If omitted or NULL, the training instances are used.
一个可选的数据框中寻找变量,用以预测。如果省略或NULL,培训实例。
参数:type
character string determining whether classes should be predicted (numeric for regression, factor for classification) or class probabilities (only available for classification). May be abbreviated.
字符串确定是否应预测类(数字回归分析,因素分类)或类概率(仅适用于分类)。可能是缩写。
参数:...
further arguments passed to or from other methods.
进一步的参数传递给其他方法。
值----------Value----------
Either a vector with classes or a matrix with the posterior class probabilities, with rows corresponding to instances and columns to classes.
无论是矢量类或矩阵与后级的概率,对应的类的实例和列与行。
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|