我制作了以下格式的 CSV 文件:
position number | list of positions it links to | 2nd list of positions it links to | ... | 6th list of positions it links to
所有项目都是整数,列表大小不一。
该文件形成一种树或网络(它是游戏树)。
我想将数据可视化为网络或树。
我可以根据与开始移动的距离(另一个整数)对树进行排序,但也许我不需要。
我希望它看起来像这样:
1
| \
2 4
|\ |\
3,7,5,9
......
....
|/
2000
关于我应该使用什么软件的任何想法和一些提示?