Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
0

Stochastic block model

asked 7 years ago

Dianbin Bao gravatar image

Hi all,

I would like to draw a random graph by Sage. The general stochastic model is the following: The graph contains n vertices and the n vertices are divided into r communities C1,Cr. For two vertices within the same community, there is a probability Pr that they are connected directly by an edge. How do I plot such a graph in Sage? References appreciated.

Preview: (hide)

Comments

Maybe use

sage: SetPartitions(5).random_element()
{{1, 5}, {2, 4}, {3}}
FrédéricC gravatar imageFrédéricC ( 7 years ago )

Are the sizes of the communities given as part of the input? Maybe this is what the comment above is trying to address.

Is the probability of edges between vertices in different communities equal to 0?

fidbc gravatar imagefidbc ( 7 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 7 years ago

fidbc gravatar image

updated 7 years ago

Assuming the input consists of n, r, and the probabilities for edges within a community; and assuming that the probability of edges between vertices in different communities is 0, then here is a possible way to generate such a graph.

community_sizes = Partitions(n,length=r).random_element()
H = Graph()
for comm_size,Pr in zip(community_sizes,probs):
    H=H.disjoint_union(graphs.RandomGNP(comm_size,Pr),labels='integers')

This is assuming that n, r and probs (assumed to be a list of length r containing P1,P2,,Pr) are given as part of the input. To see the resulting graph you can use H.show().

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 7 years ago

Seen: 481 times

Last updated: Sep 22 '17