summaryrefslogtreecommitdiff
path: root/progs/gallium/python/tests/tree.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/gallium/python/tests/tree.py')
-rwxr-xr-xprogs/gallium/python/tests/tree.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/progs/gallium/python/tests/tree.py b/progs/gallium/python/tests/tree.py
new file mode 100755
index 0000000000..0c1bcda4cf
--- /dev/null
+++ b/progs/gallium/python/tests/tree.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+#
+# See also:
+# http://www.ailab.si/orange/doc/ofb/c_otherclass.htm
+
+import os.path
+import sys
+
+import orange
+import orngTree
+
+for arg in sys.argv[1:]:
+ name, ext = os.path.splitext(arg)
+
+ data = orange.ExampleTable(arg)
+
+ tree = orngTree.TreeLearner(data, sameMajorityPruning=1, mForPruning=2)
+
+ orngTree.printTxt(tree)
+
+ file(name+'.txt', 'wt').write(orngTree.dumpTree(tree) + '\n')
+
+ orngTree.printDot(tree, fileName=name+'.dot', nodeShape='ellipse', leafShape='box')