We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ashist()
Running
import xgi H = xgi.sunflower(3, 1, 50)
we get a correct output from H.edges.size.aslist(), that is [50, 50, 50] (three edges of size 50), but
H.edges.size.aslist()
[50, 50, 50]
I guesse it's because there's only one edge size?
The text was updated successfully, but these errors were encountered:
Great catch, thanks! I think I can fix this by setting bins=min(np.unique(_vals), bins) or something like that.
bins=min(np.unique(_vals), bins)
Sorry, something went wrong.
7e5c96c
No branches or pull requests
Running
we get a correct output from
H.edges.size.aslist()
, that is[50, 50, 50]
(three edges of size 50), butI guesse it's because there's only one edge size?
The text was updated successfully, but these errors were encountered: