search for: gbetweenness

Displaying 1 result from an estimated 1 matches for "gbetweenness".

Did you mean: betweenness
2006 Jun 29
1
initializing table and filling it out
...e ??? #loop through files for(f in myfiles[-1]) { netMat <- read.table( f, sep" " ) netMat <-as.matrix(netMat) # calculate the needed Stats gden(netMat)->density centralization(netMat, degree) -> Gdegree centralization(netMat, betweenness) -> Gbetweenness centralization(netMat, closeness) -> Gcloseness #store into table ???? } So my questions are two First how can I initialize the table (it will be a 4 X 1001 table) without filling it out first. Second how can I store each value in the table (i.e. in each round I...