Last active
May 7, 2018 17:13
-
-
Save Ddedalus/cddf4a78d3938aae4aff11b0cbee94b7 to your computer and use it in GitHub Desktop.
Random graph with given density
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
graphWithDensity <- function(no_vertices, dens){ | |
erdos.renyi.game(no_vertices, as.integer(no_vertices * dens), type="gnm", | |
directed = T) # Create a graph with given number of vertices and edges | |
} | |
g3 <- graphWithDensity(15, 2) | |
plot(g3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment