specter

Latest version: 1.1.3
2018-03-07T13:57:05.000263Z

Can I use specter to create a matrix from a tree? Meaning that the first column will be populated with duplicates for all childrens children and so on

nathanmarz 2018-03-07T14:14:04.000592Z

@hkjels it would likely be helpful for traversing the tree in the order you want

nathanmarz 2018-03-07T14:14:45.000102Z

the code would look something like (reduce build-my-matrix empty-matrix (traverse <path> my-tree))

2018-03-07T14:26:38.000611Z

Nice, I’ll give it a go