I'm using statnet and R for the first time, and keep coming across this error message:
Error in .Call(getEdgeAttribute_R, el, attrname, na.omit, null.na, deleted.edges.omit) : NULL value passed as symbol address
I have not had this problem in any other packages that I've used. And I have not been able to locate any other threads/questions with this error in statnet.
Any help and/or suggestions is greatly appreciated!
– KatzM Mar 23 '21 at 13:20
> netmat1 <- rbind (c(0,1,1,0,0), + c(0,0,1,1,0), + c(0,0,1,0,0), + c(1,1,1,1,1), + c(1,01,0,0,1)) > rownames(netmat1) <- c("A", "B", "C", "D", "E") > colnames(netmat1) <- c("A", "B", "C", "D", "E") > net1 <- network(netmat1, matric.type = "adjacency") Error in .Call(setVertexAttribute_R, x, attrname, value, v) : NULL value passed as symbol address > class(net1) Error: object 'net1' not found – KatzM Mar 23 '21 at 13:21