-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Add the possibility to generate networks with random number of nodes #14
Comments
I have added this possibility to You can find it in my |
I have added the possibility to generate networks with random number of nodes following an Uniform distribution. You can find it in my |
Please do open separate pull request for each of the issues instead of the links. Thanks! |
I think in this case you need to use the You can first generate a vector of integers that give you the number of vertices for each graph. And then a graph with the appropriate number of vertices for each entry of that vector. The reason you need to do this by hand is that currently there is no unified way (naming convention) to specify the number of vertices across all |
It is useful to give the user the possibility to create a sample of networks with random number of nodes, in particular: N_1,N_2,...,N_{sample_size} iid Poisson(num_vertices).
The text was updated successfully, but these errors were encountered: