I would like to ask how to plot a decision tree in python. The functionality which I mean is similar to one in this question, but a picture is needed, not just text format.
For example, having this dictionary structure
MyNodeStructure = {'main': {'load': {'regA': None},
'comupute': {'loop': {'regA': None,
'regB': None}},
'store': None}}
I would like to get something like this as an output: Example of desired tree.
Do you know any module/easy way how to achieve this result in Python3?