-1

Does anyone know how to plot a dictionary to a decision tree in Python? It is a manual entry so i'm not interested in sci kit or graphviz.

I've tried pyplot but that doesn't seem to work.

Any suggestions?

d789w
  • 357
  • 5
  • 19

1 Answers1

0

Found the answer here

Dictionary object to decision tree in Pydot

For Python 3 change: for k,v in node.iteritems(): to for k,v in node.items()

d789w
  • 357
  • 5
  • 19