1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
#' @rdname Pajek
#'
#' @description \code{loadnetwork2} - The same as above, but adapted to be called within \code{loadpajek}.
#'
#' @param safe If \code{FALSE} error will occur if not all vertices have labels. If \code{TRUE} reading works faster.
#' @param closeFile Should the connection be closed at the end. Should be always \code{TRUE} if function is used directly.
#' @import Matrix
#' @importFrom utils read.table
#'
#' @export
"loadnetwork2" <-
function(filename,useSparseMatrix=NULL,minN=50,safe=TRUE,closeFile=TRUE){
if(is.character(filename)){
file<-file(description=filename,open="r")
} else file<-filename
while(TRUE){
line<-scan(file = file, nlines =1,what="char",quiet =TRUE, blank.lines.skip=FALSE)
if(substr(line[1],start=1,stop=1)=="%") {print(paste(line,collapse=" "));next}
if(line[1]=="") next
n<-line
break
}
if(length(n)==2){
n<-as.numeric(n[2])
if(safe){
vnames<-rep(as.character(NA),n)
while(TRUE){
line<-scan(file = file, nlines =1,what="char",quiet =TRUE, blank.lines.skip=FALSE)
if(length(line)==0||sum(grep(pattern="^ *$",x=as.character(line))==1)) break
if(line[1]=="") break
if(substr(line[1],start=1,stop=1)=="%") {print(paste(line,collapse=" "));next}
if(substr(line[1],start=1,stop=1)=="*"){
type=line[1]
break
}
vnames[as.integer(line[1])]<-line[2]
}
}else{
vnames<-read.table(file=file,nrows=n,as.is =TRUE)[,2]
type=""
}
if(all(is.na(vnames))){
vnames<-NULL
} else vnames[is.na(vnames)]<-""
if(is.null(useSparseMatrix)){
useSparseMatrix<- n>=50
}
if(useSparseMatrix){
if(requireNamespace("Matrix")){
M<-Matrix::Matrix(0,nrow=n,ncol=n,sparse=TRUE)
}else{
M<-matrix(0,nrow=n,ncol=n)
warning("Matrix package is not installed. Ordanary (dense) matrices will be used instead of sparse onse")
}
}else{
M<-matrix(0,nrow=n,ncol=n)
}
if(type=="*Matrix"){
tmp<-read.table(file=file,nrows=n)
tmp<-as.matrix(tmp)
M[1:n,1:n]<-M
} else while(TRUE){
line<-scan(file = file, nlines =1,what="char",quiet =TRUE, blank.lines.skip=FALSE)
if(length(line)==0||sum(grep(pattern="^ *$",x=as.character(line))==1)) break
if(substr(line[1],start=1,stop=1)=="%") {print(paste(line,collapse=" "));next}
if(substr(line[1],start=1,stop=1)=="*"){
type=line[1]
next
}else line<-as.double(line)
if(tolower(type)=="*arcs"){
M[line[1],line[2]]<-line[3]
}else if(tolower(type)=="*edges") {
M[line[1],line[2]]<-line[3]
M[line[2],line[1]]<-line[3]
}
}
dimnames(M)<-list(vnames,vnames)
} else if(length(n)==3){
n12<-as.numeric(n[2])
n1<-as.numeric(n[3])
n2<-n12-n1
if(safe){
vnames<-rep(as.character(NA),n12)
while(TRUE){
line<-scan(file = file, nlines =1,what="char",quiet =TRUE, blank.lines.skip=FALSE)
if(length(line)==0||sum(grep(pattern="^ *$",x=as.character(line))==1)) break
if(substr(line[1],start=1,stop=1)=="%") {print(paste(line,collapse=" "));next}
if(substr(line[1],start=1,stop=1)=="*"){
type=line[1]
break
}
vnames[as.integer(line[1])]<-line[2]
}
}else{
vnames<-read.table(file=file,nrows=n12,as.is =TRUE)[,2]
type=""
}
if(all(is.na(vnames))){
vnames<-NULL
} else vnames[is.na(vnames)]<-""
if(is.null(useSparseMatrix)){
useSparseMatrix<- n12>50
}
if(useSparseMatrix){
if(requireNamespace("Matrix")){
M<-Matrix::Matrix(0,nrow=n12,ncol=n12,sparse=TRUE)
}else{
warning("Matrix package is not installed. Ordanary (dense) matrices will be used instead of sparse onse")
M<-matrix(0,nrow=n12,ncol=n12)
}
} else {
M<-matrix(0,nrow=n12,ncol=n12)
}
if(type=="*Matrix"){
tmp<-read.table(file=file,nrows=n1)
tmp<-as.matrix(tmp)
M[1:n1,(n1+1):n12]<-tmp
} else while(TRUE){
line<-scan(file = file, nlines =1,what="char",quiet =TRUE, blank.lines.skip=FALSE)
if(length(line)==0||sum(grep(pattern="^ *$",x=as.character(line))==1)) break
if(substr(line[1],start=1,stop=1)=="%") {print(paste(line,collapse=" "));next}
if(substr(line[1],start=1,stop=1)=="*"){
type=line[1]
next
}else line<-as.double(line)
M[line[1],line[2]]<-line[3]
M[line[2],line[1]]<-line[3]
}
dimnames(M)<-list(vnames,vnames)
M<-M[1:n1,(n1+1):n12]
} else stop("Error in line: ", line)
if(closeFile) close(file)
M[is.na(M)]<-1
return(M)
}
|