Dan Schult
Dan Schult
The doc examples should show floats with decimal points and integers without. So I think that should catch the difference in dtype. The other approach would be to let the...
Right -- the existing doc-string examples show some results as integers. And that is what the code does right now (unlike `numpy`). But the docs also claim that the output...
Can we add to line 43 (return type listed in the doc_string). Maybe change it to be `"float or int or ndarray"`.
I don't see anything in the docs indicating that it works for MultiGraphs. (But it says that input G should be a directed graph when it should say undirected graph.)...
You might try creating the edges iterator before the for loop. Something like: ```python partition_dict = partition.partition_dict partition_key = self.partition_key G = self.G edges = G.edges(keys=True, data=True) if G.is_multigraph() else...
Can you make this PRs title/subject line informative?
Searching for k-lift in the literature brought me to many discussions of a lift of a graph. But they are not generating random versions of it. So I think it...
Thanks for the nudge -- I'm not sure I know which way of handling it is better. From a naive generalist perspective, it seems just fine to return disconnected results...