Leo Torres
Leo Torres
And once the lattice is generated, there's a special plotting function that looks at the node attributes?
Alternatively, we could have a `pos` argument that works much like `edge_fc` et al in `draw_xgi_simplices`, that is, it could take a dict, a NodeStat, etc. This could be useful...
> singletons (default): has an unwanted effect IMO. In the SC class, removing a simplex removes all other simplices that it is included in. So removing singletons removes all edges...
Any ideas on how to optimize the edge function?
Also no way of easily adding stats! What if I have a matrix, or vector, or dictionary holding the values of a node stat? Right now we would have to...
```python3 >>> SC.simplices([0, 1, 2]).link() EdgeView() ``` Same for the other ones.
Good suggestion. One problem is that stats are meant to be dynamic, in two different ways: 1. A user can add a node attribute that then becomes a NodeStat object:...
Revisiting the above, having three different sources of truth seems overkill and generally a Big Bad Idea. So I think I'll go ahead and implement one static list in the...
@thomasrobiglio Yes, visible documentation is certainly part of this issue. Each of nodestats, edgestats, and their directed versions each live in a different module under the stats sub-package. So the...