我已经使用包中的函数获得了decision tree
forchurn
数据集。这棵树很大,所以我看不到整棵树。我想将它输出到一个文本文件中,但格式正在改变。如何保存它以保留树格式。J48()
RWeka
save(m2,file="thisexample.txt", ascii=TRUE)
m2
是dataframe
我存储J48
树输出的地方。
我已经使用包中的函数获得了decision tree
forchurn
数据集。这棵树很大,所以我看不到整棵树。我想将它输出到一个文本文件中,但格式正在改变。如何保存它以保留树格式。J48()
RWeka
save(m2,file="thisexample.txt", ascii=TRUE)
m2
是dataframe
我存储J48
树输出的地方。
I.使用'函数的iris
数据集示例。RWeka
J48()
library(RWeka)
result = J48(Species~.,data=iris)
result
# J48 pruned tree
# ------------------
# Petal.Width <= 0.6: setosa (50.0)
# Petal.Width > 0.6
# | Petal.Width <= 1.7
# | | Petal.Length <= 4.9: versicolor (48.0/1.0)
# | | Petal.Length > 4.9
# | | | Petal.Width <= 1.5: virginica (3.0)
# | | | Petal.Width > 1.5: versicolor (3.0/1.0)
# | Petal.Width > 1.7: virginica (46.0/1.0)
# Number of Leaves : 5
# Size of the tree : 9
二、使用sink()
函数将其写入文本文件
sink("result.txt")
print (result)
sink()
三、打开result.txt
保存在您当前的工作目录中。