Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a function for Burt's effective size. The formula boils down to:

Effective size = n - 2t/n

  • where t is the number of ties (not counting ties to ego)
  • n is the number of people in the network (not counting ego).

I'm not really sure where to start with writing functions within/for igraph.

Let me know if more detail would be helpful...

Thanks.

share|improve this question
1  
Provide a sample graph, and what you've tried so far for calculating the size. – Richie Cotton Nov 1 '11 at 16:54

1 Answer

up vote 6 down vote accepted

First simulate a basic graph:

require(igraph)

alters = 50
ties   = 10
set.seed(12345)
edgelist = rbind(0, 1:alters)
edgelist = cbind(edgelist, replicate(ties, sample(alters, 2)))
g = graph(edgelist, directed=F)

dev.new(width=5, height=5)
plot(g, layout=layout.kamada.kawai)

enter image description here

Then write a simple function to calculate the effective size. (The functions in here that operate on g are all nicely documented in the igraph manual and in various examples around the net.)

EffectiveSize <- function(g, ego=0) {
  n = neighbors(g, ego)
  t = length(E(g)[to(n) & !to(ego)])
  n = length(n)
  n - 2 * t / n
}
> EffectiveSize(g)
[1] 49.6
share|improve this answer
Ah. Thank you! Sorry for the redundant/basic question, but I really wasn't sure if I'd have to call/edit in C. I didn't realize I could create normal R functions to work with igraph. – crock1255 Nov 1 '11 at 20:30
Yea it's really flexible like that. igraph is a great package too, with these slick ways of indexing/iterating on the vertices and edges. Good luck with your project! – John Colby Nov 1 '11 at 21:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.