Displaying 1 result from an estimated 1 matches for "gclose".
Did you mean:
close
2006 Jun 29
1
initializing table and filling it out
...{
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'll be adding one full column with density and t...