search for: gdegree

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

Did you mean: degree
2006 Jun 29
1
initializing table and filling it out
...st.files("c:\\myDir") #initialize table ??? #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 ca...