我在txt文件中有以下树(你可以复制粘贴并将其保存到txt文件中):
R> res
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
这是我的输入文件。我想得到每个节点(父亲)及其树的孩子的列表(这只是一个例子)。我想知道是否可以使用data.tree
将此txt格式转换为树。我怎样才能得到每个级别的孩子(父亲)?