Dan Schult
Dan Schult
The best approach is to have a simple enough example that you can compute it by hand. But that is not always possible. The next best thing is to generate...
Q1: The `pytest.importorskip` function is poorly named. It should be `pytest.import_or_skip`. The idea is that running this command tries to import e.g. `numpy` and if successful, it stores that imported...
I have not had a chance to look through the code in any kind of careful way yet. (2 more weeks of the semester so there is light at the...
I think I see the graph E in figure 2 of that paper. That's very helpful to have those published values -- especially if your implementation agrees with them. :}...
I tried using the self-assigned feature to make sure I didn't forget about this issue in case you didn't come back after a break. It doesn't have any impact over...
It looks like a new version of matplotlib in the CI tests is failing,. That is not your PR, it is the new testing configuration. We'll work on that --...
I went ahead and made some changes that had been discussed. And that led to some that hadn't been discussed. Discussed stuff: - changed nodelist preparation code - remove casting...
This looks nice! Can you add an example (perhaps with a couple lines adding to a previous example) where you use one Graph to set the attributes of another? That's...
If you use `G.edges` as the second argument, e.g. `nx.set_edge_attributes(H, G.edges)` then the attributes of the edges in H will be updated to the attributes of the edges in G....
Thanks for this idea -- but I'm afraid that if we try to enable every possible argument to each matplotlib function we will explode. :) I would prefer that we...