Weka_control(RWeka)
Weka_control()所属R语言包:RWeka
Control Weka Options
控制Weka中选项
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Set control options for Weka learners.
设置Weka中学习者的控制选项。
用法----------Usage----------
Weka_control(...)
参数----------Arguments----------
参数:...
named arguments of control options, see the details and examples.
命名参数的控制选项,查看详细信息和例子。
Details
详细信息----------Details----------
The available options for a Weka learner, foo() say, can be queried by WOW(foo) and then conveniently set by Weka_control(). See below for an example.
的WEKA学习者可用的选项,foo()说,可以质疑WOW(foo)“,然后方便地设置Weka_control()。请参阅下面的例子。
One can use lists for options taking multiple arguments, see the documentation for SMO for an example.
你还可以使用多个参数选项的列表,请参阅文档SMO的一个例子。
值----------Value----------
A list of class Weka_control which can be coerced to character for passing it to Weka.
类列表Weka_control这可强制转换为character将它传递给Weka中。
参见----------See Also----------
WOW
WOW
实例----------Examples----------
## Query J4.8 options:[#查询J4.8选项:]
WOW("J48")
## Learn J4.8 tree on iris data with default settings:[#了解J4.8树的虹膜数据,默认设置:]
J48(Species ~ ., data = iris)
## Learn J4.8 tree with reduced error pruning (-R) and [#了解J4.8减少错误修剪的树,(-R)]
## minimum number of instances set to 5 (-M 5):[#最小数目设置为5(M 5)的实例:]
J48(Species ~ ., data = iris, control = Weka_control(R = TRUE, M = 5))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|