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
@hkjels it would likely be helpful for traversing the tree in the order you want
the code would look something like (reduce build-my-matrix empty-matrix (traverse <path> my-tree))
Nice, I’ll give it a go