I have got the decision tree
for churn
data set using J48()
function from RWeka
package. The tree is really big hence I am unable to see the whole tree. I want to output it in a text file but the format is getting changed. How can I save it preserving the tree format.
save(m2,file="thisexample.txt", ascii=TRUE)
m2
is the dataframe
in which I am storing the J48
tree output.