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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
|
######################################################################
#
# fileio.R
#
# Written by Carter T. Butts <buttsc@uci.edu>; portions contributed by
# David Hunter <dhunter@stat.psu.edu> and Mark S. Handcock
# <handcock@u.washington.edu>.
#
# Last Modified 11/26/19
# Licensed under the GNU General Public License version 2 (June, 1991)
# or greater
#
# Part of the R/network package
#
# This file contains various routines related to reading/writing network
# objects from external files.
#
# Contents:
#
# read.paj
# read.paj.simplify
# readAndVectorizeLine
# switchArcDirection
#
######################################################################
#Read an input file in Pajek format
# some details at http://vlado.fmf.uni-lj.si/pub/networks/pajek/doc/pajekman.pdf p. 73
# generally this steps through the file until it finds markers for specific sub sections
# when it sees one ('*Vertices*') it drops into a sub-loop that keeps advancing the file read
# however, note that the overall loop may run multiple times in order to correctly detect all of the pieces in the file
# things are made more complicated becaue there can be multiple *Edges or *Arcs definitions in a network
# when it is a "mutliple network" (multiplex) http://vlado.fmf.uni-lj.si/pub/networks/doc/ECPR/08/ECPR01.pdf slide 21
# TODO: not sure if multiplex is set appropriately for this case
# Also, attributes can be have 'default' values (the previous record) if not explicitly set on each row
# TODO: need an argument to indicate if multiple sets of relations on the same vertex set should be returned
# as a multiplex network or a list of networks.
#' Read a Pajek Project or Network File and Convert to an R 'Network' Object
#'
#' Return a (list of) \code{\link{network}} object(s) after reading a
#' corresponding .net or .paj file. The code accepts ragged array edgelists,
#' but cannot currently handle 2-mode, multirelational (e.g. KEDS), or networks
#' with entries for both edges and arcs (e.g. GD-a99m). See \code{network},
#' \code{statnet}, or \code{sna} for more information.
#'
#'
#' If the \code{*Vertices} block includes the optional graphic attributes
#' (coordinates, shape, size, etc.) they will be read attached to the network
#' as vertex attributes but values will not be interperted (i.e. Pajek's color
#' names will not be translated to R color names). Vertex attributes included
#' in a \code{*Vector} block will be attached as vertex attributes.
#'
#' Edges or Arc weights in the \code{*Arcs} or \code{*Edges} block are include
#' in the network as an attribute with the same name as the network. If no
#' weight is included, a default weight of 1 is used. Optional graphic
#' attributes or labels will be attached as edge attributes.
#'
#' If the file contains an empty \code{Arcs} block, an undirected network will
#' be returned. Otherwise the network will be directed, with two edges (one in
#' each direction) added for every row in the \code{*Edges} block.
#'
#' If the \code{*Vertices}, \code{*Arcs} or \code{*Edges} blocks having timing
#' information included in the rows (indicated by `...` tokens), it will be
#' attached to the vertices with behavior determined by the \code{time.format}
#' option. If the \code{'networkDynamic'} format is used, times will be
#' translated to \code{networkDynamic}'s spell model with the assumtion that
#' the original Pajek representation was indicating discrete time chunks. For
#' example \code{"[5-10]"} will become the spell \code{[5,11]}, \code{"[2-*]"}
#' will become \code{[2,Inf]} and \code{"[7]"} will become \code{[7,8]}. See
#' documentation for \code{networkDynamic}'s \code{?activity.attribute} for
#' details.
#'
#' The \code{*Arcslist}, \code{*Edgelist} and \code{*Events} blocks are not yet
#' supported.
#'
#' As there is no known single complete specification for the file format,
#' parsing behavior has been infered from references and examples below.
#'
#' @aliases read.paj.simplify switchArcDirection readAndVectorizeLine
#' @param file the name of the file whence the data are to be read. If it does
#' not contain an absolute path, the file name is relative to the current
#' working directory (as returned by \code{\link{getwd}}). \code{file} can
#' also be a complete URL.
#' @param verbose logical: Should longer descriptions of the reading and
#' coercion process be printed out?
#' @param debug logical: Should very detailed descriptions of the reading and
#' coercion process be printed out? This is typically used to debug the reading
#' of files that are corrupted on coercion.
#' @param edge.name optional name for the edge variable read from the file. The
#' default is to use the value in the project file if found.
#' @param simplify Should the returned network be simplified as much as
#' possible and saved? The values specifies the name of the file which the data
#' are to be stored. If it does not contain an absolute path, the file name is
#' relative to the current working directory (see \code{\link{getwd}}). If
#' \code{specify} is TRUE the file name is the name \code{file}.
#' @param time.format if the network has timing information attached to
#' edges/vertices, how should it be processed? \code{'pajekTiming'} will
#' attach the timing information unchanged in an attribute named
#' \code{pajek.timing}. \code{'networkDynamic'} will translate it to a spell
#' matrix format, attach it as an \code{'activity'} attribute and add the class
#' \code{'networkDynamic'} -- formating it for use by the \code{networkDynamic}
#' package.
#' @return The structure of the object returned by \code{read.paj} depends on
#' the contents of the file it parses. \itemize{ \item if input file contains
#' information about a single 'network' object (i.e .net input file) a single
#' network object is returned with attribute data set appropriately if
#' possible. or a list of networks (for .paj input). \item if input file
#' contains multiple sets of relations for a single network, a list of network
#' objects ('network.series') is returned, along with a formula object?. \item
#' if input .paj file contains additional information (like partition
#' information), or multiple \code{*Network} definitions a two element list is
#' returned. The first element is a list of all the network objects created,
#' and the second is a list of partitions, etc. (how are these matched up) }
#' @author Dave Schruth \email{dschruth@@u.washington.edu}, Mark S. Handcock
#' \email{handcock@@stat.washington.edu} (with additional input from Alex
#' Montgomery \email{ahm@@reed.edu}), Skye Bender-deMoll
#' \email{skyebend@@uw.edu}
#' @seealso \code{\link{network}}
#' @references Batagelj, Vladimir and Mrvar, Andrej (2011) Pajek Reference
#' Manual version 2.05
#' \url{http://web.archive.org/web/20240906013709/http://vlado.fmf.uni-lj.si/pub/networks/pajek/doc/pajekman.pdf} Section
#' 5.3 pp 73-79
#'
#' Batageli, Vladimir (2008) "Network Analysis Description of Networks"
#' \url{http://web.archive.org/web/20240511173536/http://vlado.fmf.uni-lj.si/pub/networks/doc/ECPR/08/ECPR01.pdf}
#'
#' Pajek Datasets \url{http://web.archive.org/web/20240411203537/http://vlado.fmf.uni-lj.si/pub/networks/data/esna}
#' @keywords datasets
#' @examples
#'
#' \dontrun{
#' require(network)
#'
#' par(mfrow=c(2,2))
#'
#' test.net.1 <- read.paj("http://vlado.fmf.uni-lj.si/pub/networks/data/GD/gd98/A98.net")
#' plot(test.net.1,main=test.net.1%n%'title')
#'
#' test.net.2 <- read.paj("http://vlado.fmf.uni-lj.si/pub/networks/data/mix/USAir97.net")
#' # plot using coordinates from the file in the file
#' plot(test.net.2,main=test.net.2%n%'title',
#' coord=cbind(test.net.2%v%'x',
#' test.net.2%v%'y'),
#' jitter=FALSE)
#'
#' # read .paj project file
#' # notice output has $networks and $partitions
#' read.paj('http://vlado.fmf.uni-lj.si/vlado/podstat/AO/net/Tina.paj')
#' }
#'
#' @export read.paj
read.paj <- function(file,verbose=FALSE,debug=FALSE,
edge.name=NULL, simplify=FALSE,time.format=c('pajekTiming','networkDynamic'))
{
time.format<-match.arg(time.format)
# process filename
if(inherits(file, "connection")){
fileNameParts0 <- strsplit(summary(file)$'description',"/")[[1]]
} else {
fileNameParts0<-strsplit(file,"/")[[1]]
}
# split again to try to get file extension
fileNameParts1 <- strsplit(fileNameParts0[length(fileNameParts0)],"\\.")[[1]]
# filename may not have extension
if(length(fileNameParts1)>1){
fileName <- paste(fileNameParts1[1:length(fileNameParts1)-1],collapse=".")
fileExt <- fileNameParts1[length(fileNameParts1)] #should be "net" or "paj" (but never used ?)
} else {
fileName<-fileNameParts1
fileExt<-""
}
# open connection (if it is not one already)
if (is.character(file)) {
file <- file(file, "rt")
on.exit(close(file))
}
if (!inherits(file, "connection"))
stop("argument 'file' must be a character string or connection")
if (!isOpen(file)) {
open(file, "rt")
on.exit(close(file))
}
isSeekable <- regexpr("http",file)>0
# also disable seeking if a gz connection, as it will break
if(summary(file)$'class'=='unz'){
isSeekable<-FALSE
}
# initialize state tracking variables
lineNumber<-0 # input line number parsed for debugging
nnetworks <- 0 # number of networks (edge types) in current *Network block
network.names <- NULL # names of networks (edge types) in current *Network block
vertex <- NULL # has the vertex block been found?
nvertex <- 0 # number of vertices in currently processing network
network.title <- fileName # default name for network is filename
partition <- NULL # partitions, if found
names.partition <- NULL # names of partitions, if found
vector <- NULL # vectors, if found
colnames.vector <- NULL # names of vectors if found
projects <- list() # projects if found (each set of related networks is a 'project')
nprojects <- 0 # number of projects found
names.projects <- NULL # names of projects if found.
nextline <- TRUE # control flag to indicate if should proceede to next line
line <- " " # usually tokens corresponding to line being red
previousArcs<-NULL
previousEdges<-NULL
edgeData<-NULL
is2mode <- FALSE # flag indicating if currently processing biparite network
nevents <- 0 # for two-mode data, size of first mode
nactors <- 0 # for two-mode data, size of second mode
multiplex<-FALSE # flag indicating if currently processing multiplex network
loops<-FALSE
# begin file parsing
while(!inherits(line,"try-error")){
while(any(grep("^%", line)) | nextline){
if(debug) print(paste("new parsing loop started at line",lineNumber))
options(show.error.messages=FALSE)
# read the next line with error messages disabled
line <- try(readLines(file, 1, ok = FALSE))
options(show.error.messages=TRUE)
# If the line was not an error, tokenize using space as seperator
if(!inherits(line,"try-error") & length(line)>0){
line <- strsplit(line, " ")[[1]]
line <- line[line!=""]
lineNumber<-lineNumber+1
}
nextline <- FALSE # there was an error (probably end of file) so don't parse anymore
}
nextline <- TRUE
# if(verbose) warning(paste("afterbeingWhileLoop",line))
#
# ---- Network parsing -------
# Search for lines begining with *Network within the .paj file
# not all files will include a *Network heading (usually only .paj)
# it indicates that all the following sections (vertices, partitions, etc) belong to that network
if(any(grep("\\*Network", line, ignore.case = TRUE))){
if (verbose) print(paste('parsing *Network block at line',lineNumber))
if(debug){
print(paste(" nnetworks=",nnetworks))
print(paste(" network.names=",network.names))
print(paste(" vertex null?",is.null(vertex)))
print(paste(" network.title=",network.title))
print(paste(" vector null?",is.null(vector)))
print(paste(" colnames.vector=",colnames.vector))
print(paste(" names.projects=",names(projects)))
}
if(verbose) print(paste("number of networks",nnetworks)) #dschruth added
# we are about to start a new network, so need to run the post-processing
# code on the previously parsed network (if there is one)
if(nnetworks > 0 ){
if(debug) print("assembleing networks into 'project'")
# grab all the named networks from the environment
# and put 'em in a list
networksData<-lapply(network.names,function(netName){get(netName)})
# TODO: delete networks from environment to clear up space?
# take the various objects that have been parsed from the .paj file and assemble
# them into a network object (or list of network objects, a 'project'), doing some appropriate conversion
projects <- postProcessProject( network.title,
vector,
colnames.vector,
vertex, # data for building vertices,
edgeData,
nnetworks, # number of networks found,
network.names, # names of networks found
networksData,
projects,
time.format,
verbose
)
} else { # networks have not been created, but need to check if only vertices have been found and empty network needed
if(!is.null(vertex)){
# need to initialize a network here to deal with the case where no arcs/edge in the file
# Note that without the arcs/edge, we have no way to know if network was supposed to be directed or multiplex
networksData<-list( network.initialize(n=nvertex, bipartite=nactors))
projects <- postProcessProject( network.title,
vector,
colnames.vector,
vertex, # data for building vertices,
edgeData,
nnetworks, # number of networks found,
network.names=network.title, # names of networks found
networksData,
projects,
time.format,
verbose)
}
}
# since we are starting a new network, reset all of the network level info, directed, 2mode, etc
network.title <-NULL
network.names <- NULL
vertex<-NULL
nvertex<-0
nnetworks <- 0
vector <- NULL
colnames.vector <- NULL
nextline <- TRUE
arcsLinePresent<-FALSE
edgesLinePresent<-FALSE
previousArcs<-NULL
previousEdges<-NULL
is2mode <- FALSE #for two-mode data
nevents <- 0 #for two-mode data
nactors <- 0 #for two-mode data
multiplex<-FALSE
loops<-FALSE
# now parse the new network title
network.title <- paste(line[-1],collapse=" ")
if(is.null(network.title)){
network.title <- network.name # this seems wrong, should be file name?
warning('no name found for network, using "',network.name,'"')
}
} # END NETWORK PARSING BLOCK
#
# vertices specification
# search for lines beignning with *Vertices
# and then read in the number of lines equal to the expected number of vertices
if(any(grep("\\*Vertices", line, ignore.case = TRUE))){
if (verbose) print(paste('parsing *Vertices block at line',lineNumber))
previousArcs <- NULL #used for arc+edge specified networks.... reset to null for every new network.. might be sufficient here
previousEdges<-NULL
nvertex <- as.numeric(line[2]) # parse the number of vertices
#nnetworks <- nnetworks + 1 # if we found vertices, we must have a network
# give the network a default name (may be overwritten later)
network.name <- paste(network.title,sep="")
if(!is.na(line[3])){ #dschruth added for two-mode
is2mode <- TRUE #used in matrix below #dschruth added for two-mode
nactors <- as.numeric(line[3]) #used for error check #dschruth added for two-mode
nevents <- nvertex-nactors #used for error check #dschruth added for two-mode
} #dschruth added for two-mode
if(isSeekable){
# cache the table position in the input file in case we need to jump pack here later
preReadTablePosition <- seek(file,where=NA)
}
# if(network.title =="SanJuanSur_deathmessage.net") #read.third paragraph in details of documentation of read table about how it determines the number of columns in the first 5 lines...
# vertex <- read.table(file,skip=-1,nrows=nvertex,col.names=1:8,comment.char="%",fill=TRUE,as.is=FALSE) #dschruth added 'comment.char="%"' and 'fill=TRUE'
# else
# read it as table
# NOTE: rows may omit values ()
vertex <- read.table(file,skip=-1,nrows=nvertex, comment.char="%",fill=TRUE,as.is=FALSE,row.names=NULL)
if(ncol(vertex)==1){ vertex <- cbind(1:nrow(vertex),vertex)}
#need to check to see if we are reading in more vertex rows than there actually are (some edges are implied)
edgelistPosition <- grep("\\*(arcs|edges|matrix)",as.matrix(vertex),ignore.case=TRUE, useBytes = TRUE)
if(any(edgelistPosition)){
if(verbose){
print("vertex list has missing entries or n was mis-specified, re-reading it...")
} else {
warning('vertex list has missing entries or n was mis-specified, re-reading it...')
}
if(!isSeekable) stop("Resize of abbreviated vertex list via seek is not possible with URLs. Try downloading file and loading locally")
nVertexRows <- edgelistPosition-1
dummyNotUsed <- seek(file,where=preReadTablePosition) #reset the file position back to before the table was read
vertex <- read.table(file,skip=-1,nrows=nVertexRows,comment.char="%",fill=TRUE,as.is=FALSE,) #dschruth added 'comment.char="%"' and 'fill=TRUE'
if(ncol(vertex)==1){ vertex <- cbind(1:nrow(vertex),vertex)}
}
if(nvertex!=nrow(vertex)){
if(verbose){
print(paste("vertex list (length=",nrow(vertex),") is being re-sized to conform with specified network size (n=",nvertex,")",sep=""))
}
colnames(vertex)[1:2] <- c("vn","name")
vertex <- merge(data.frame(vn=1:nvertex),vertex,all.x=TRUE,all.y=FALSE,by.y="vn") #fill in the holes with NA names
}
# increment the debugging line counter
lineNumber<-lineNumber+nvertex
if(verbose) print(paste(" found",nvertex,'vertices'))
} # end vertices parsing block
#
# partition specification (vertex level attribute)
#
if(any(grep("\\*Partition", line, ignore.case = TRUE))){
if (verbose) print(paste('parsing *Partition block at line',lineNumber))
partition.name <- as.character(paste(line[-1],collapse="."))
names.partition <- c(names.partition,partition.name)
line <- readAndVectorizeLine(file)
lineNumber<-lineNumber+1 # update debugging line number
# skip comments
while(any(grep("^%", line))){
line <- readAndVectorizeLine(file)
lineNumber<-lineNumber+1 # update debugging line number
}
nvertex <- as.numeric(line[2])
if(is.null(partition)){
partition <- read.table(file,skip=0,nrows=nvertex)
lineNumber<-lineNumber+nvertex # update debugging line number
}else{
partition <- c(partition,
read.table(file,skip=0,nrows=nvertex))
lineNumber<-lineNumber+nvertex # update debugging line number
}
if(verbose) print("partition found and set")
# TODO: why is partition not attached as vertex attribute?
}
#
# ----- Vector specification (vetex-level attribute) -----
#
if(any(grep("\\*Vector", line, ignore.case = TRUE))){
if (verbose) print(paste('parsing *Vector block at line',lineNumber))
vector.name <- as.character(paste(line[-1],collapse="."))
colnames.vector <- c(colnames.vector,vector.name)
line <- readAndVectorizeLine(file)
lineNumber<-lineNumber+1 # update debugging line number
# skip comments
while(any(grep("^%", line))){
line <- readAndVectorizeLine(file)
lineNumber<-lineNumber+1 # update debugging line number
}
nvertex <- as.numeric(line[2])
if(is.null(vector)){
vector <- read.table(file,skip=0,nrows=nvertex)
lineNumber<-lineNumber+nvertex # update debugging line number
}else{
vector <- data.frame(vector,
read.table(file,skip=0,nrows=nvertex))
lineNumber<-lineNumber+nvertex # update debugging line number
}
if(verbose) print("vector found and set")
}
#
# ----- arcs / edges specification --------
#
arcsLinePresent<-any(grep("\\*Arcs$", line, ignore.case = TRUE))
edgesLinePresent<-any(grep("\\*Edges$", line, ignore.case = TRUE))
if(arcsLinePresent | edgesLinePresent){
if(arcsLinePresent){
if(verbose) print(paste("parsing *Arcs block at line",lineNumber))
# if we had already parsed an arcs block, and we just found another one, better clear the old
if(!is.null(previousArcs)){
previousArcs<-NULL
}
} else {
if(verbose) print(paste("parsing *Edges block at line",lineNumber))
# if we had already parsed an edges block, and we just found another one, better clear the old
if(!is.null(previousEdges)){
previousEdges<-NULL
}
}
if(missing(edge.name)){
if(length(line)>1){ # this *Arcs / *Edges block is definding a named 'network' of relationships
network.name <- strsplit(paste(line[3:length(line)],collapse="."),'\"')[[1]][2] #dschruth added collapse to allow for multi work network names
#Note: don't increment the number of networks found until later, because this is executed for both arcs and edges block
}else{
# append an index to the network name (to be used as edge attribute) only if we've seen multiple networks
network.name <- paste(network.title,ifelse(nnetworks>0,nnetworks,''),sep="")
#network.name <- network.title #old way
}
}else{
# define the network name as the edge name passed in by user
# TODO: seems like if user passes in edge.name, multirelational edges will not be parsed correctly
# because they will be given the same name
network.name <- edge.name
}
dyadList <- list() #dschruth changed (was NULL)
listIndex <- 1 #dschruth added
line <- readAndVectorizeLine(file)
lineNumber<-lineNumber+1 # update debugging line number
# skip comments / blank lines
while(any(grep("^%", line))){
line <- readAndVectorizeLine(file)
lineNumber<-lineNumber+1 # update debugging line number
}
# keep reading lines until reaching the end of the block
while(!any(grep("\\*[a-zA-Z]", line)) & length(line)>0){ #dschruth changed \\* to \\*[a-zA-Z] to allow for time asterisks
# check line length for parse problems
# should be fromId,toId, weight
# if there are not 3, matrix reform will go bad later on
if(length(line)<2){
stop("Arc/Edge record on line ",lineNumber," does not appear to have the required 2 elements:'",paste(line,collapse=' '),"'")
}
dyadList[[listIndex]] <- gsub("Newline","",line) # replace any newlines
line <- readAndVectorizeLine(file)
lineNumber<-lineNumber+1 # update debugging line number
listIndex <- listIndex+1
}
if(verbose) print(paste(" length of dyad list",length(dyadList)))
nextline <- FALSE
# check if we found any dyads
if(length(dyadList)>0){
### deal with the possible Ragged Array [RA] dyad list .. see Lederberg.net ###
#TODO: I think this was for dealing with *arcslist / *edgelist, move to seperate section or do detection directly
RAlengths <- unlist(lapply(dyadList,length))
maxRAwidth <- max(RAlengths)
# TODO: this is an ugly error-prone way to check if there are attributes, need to fix
# dyadsHaveAttributes <- any(is.na(as.numeric(unlist(dyadList)))) # handling edge attributes (NAs introduced by coersion)
# if(dyadsHaveAttributes){
# warning(paste("don't worry about these",length(dyadList),"warnings,the dyads have attributes and were NA'ed during as.numeric() call. \n the actual dyad matrix width is only 2 "))
# }
#
# if(maxRAwidth > 4 & !dyadsHaveAttributes){# #needs to be 4 because of normal edgelist can have sender reciever weight and time
# if(verbose)print(" stacking ragged dyad array ")
# dyads0 <- unlist(lapply(dyadList, function(x) c(x, rep(NA, maxRAwidth - length(x)))))
# dyads1 <- data.frame(matrix(dyads0,nrow=length(dyadList),ncol=maxRAwidth,byrow=TRUE))
#
# colnames(dyads1) <- c("sender","receiver",paste("r",seq(3,maxRAwidth),sep=""))
#
# dyads2 <- reshape(dyads1,idvar="senderNo",ids=row.names(dyads1),direction="long",
# times=names(dyads1)[-1],timevar="receiverNo",
# varying=list(names(dyads1)[-1]))
#
# dyads <- as.matrix(dyads2[!is.na(dyads2$receiver),c("sender","receiver")])
#
# if(verbose)print("finished stacking ragged dyad array")
# }else{ # not a ragged array
### done dealing with RA possiblity ### all written by dschruth
if(debug) print(" unlisting dyad list to matrix")
# check if weight was ommited
if (all(RAlengths==2)){
# assume default weight of 1
# convert to data.frame by first unlisting and dumping into 3 col matrix
edgeData <- as.data.frame(stringsAsFactors=TRUE,matrix(unlist(lapply(dyadList,function(x){
c(as.numeric(x[1:2]),1)})),
nrow=length(dyadList),ncol=3,byrow=TRUE))
if(verbose) print('weights ommited from arcs/edges lines, assuming weight of 1')
} else {
# create a data frame from the (possibly ragged) rows of the dyadList
edgeData<-as.data.frame(stringsAsFactors=TRUE,fillMatrixFromListRows(dyadList))
# convert to appropriate class, have to convert to character first because it is a factor and NA will be recoded wrong
edgeData[,1]<-as.numeric(as.character(edgeData[,1]))
edgeData[,2]<-as.numeric(as.character(edgeData[,2]))
edgeData[,3]<-as.numeric(as.character(edgeData[,3]))
}
# }
# version with just first two columns to make checking easier
dyads<-cbind(edgeData[,1:2])
# check for non-numeric ids (bad coercion)
if(any(is.na(dyads))){
badRows<-lineNumber-(which(is.na(dyads),arr.ind=TRUE)[,1])
stop('vertex id columns in arcs/edges definition contains non-numeric or NA values on line(s) ',paste(badRows,collapse=' '))
}
# check for non-integer vertex ids
if(any(round(dyads)!=dyads)){
badRows<-lineNumber-(which(round(dyads)!=dyads,arr.ind=TRUE)[,1])
stop('vertex id columns in arcs/edges definition contains non-integer values on line(s) ',paste(badRows,collapse=' '))
}
# check for out of range vertex ids
if((max(dyads) > nvertex)){ # nrow(dyads)==1 is for C95.net
# figure out which rows are bad
badRows<-1+lineNumber-(which(dyads > nvertex,arr.ind=TRUE)[,1])
stop("vertex id(s) in arcs/edge definition is out of range on line(s) ",paste(badRows,collapse=' '))
#if(verbose) print("first dyad list (arcs?), is too short to be a full network, skipping to next dyad list (edges?)")
}
if(is.null(previousArcs) & is.null(previousEdges)){ #first time through (always an arc list?)
# definitly creating a network, so increment the counter and names
nnetworks <- nnetworks + 1
network.names <- c(network.names, network.name)
if(arcsLinePresent){
directed <- TRUE
previousArcs <- edgeData
} else {
previousEdges <- edgeData
# there must not be an arcs block, so assume undirected
directed <-FALSE
}
}else{ #second time through (always an edge list?)
if(verbose) print(paste("previous dyads exist!! symmetrizing edges and combining with arcs"))
if(edgesLinePresent){
# should only be edges
edgeData.flipped <- switchArcDirection(edgeData)
edgeData <- rbind(previousArcs,edgeData,edgeData.flipped) # TODO: what if arcs and edges don't have same number of cols
}else{
stop('reached sequence of multiple *Arcs blocks, parsing code must have bad logic')
}
previousArcs <- NULL # we've used 'em, so null it out
}
# check for multiple ties
repeatLines<-anyDuplicated(dyads)
if(repeatLines>0){
multiplex<-TRUE
if(verbose) print('network contains duplicated dyads so will be marked as multiplex')
}
# check for self-loops
loopLines<-which(dyads[,1]==dyads[,2])
if (length(loopLines)>0){
loops<-TRUE
if(verbose) print('network contains self-loop edges so will be marked as such')
}
## initialize the appropriate type of network
# NOTE: network creation occurs TWICE for networks with both arcs and edges, but the first network
# is overwritten by the second. Needlessly slow on large nets, but difficult to avoid, since
# we don't know if there is a 2nd block on the first pass
if(is2mode){
temp <- network.initialize(n=nvertex, directed=directed,
bipartite=nactors,multiple=multiplex,loops=loops)
}else{
temp <- network.initialize(n=nvertex, directed=directed,multiple=multiplex,loops=loops)
}
# add in the edges
add.edges(temp,tail=edgeData[,1],head=edgeData[,2])
# temp <- network(x=dyads[,1:2],directed=directed)#arcsLinePresent)#dschruth added
if(ncol(edgeData)>2){ #only try to set the edge value if there is a third column (there always is?)
temp <- set.edge.attribute(temp,network.names[nnetworks], edgeData[,3])
if(verbose) print(paste(" edge weight attribute named",network.names[nnetworks],"created from edge/arc list"))
}
assign(network.names[nnetworks], temp)
rm(temp)
if(verbose) print("network created from edge/arc list")
# if(arcsLinePresent) nextline <- TRUE #{ print(" 'arcs' line followed by dyads present... skip past the current 'edges' line");}
# end of edge/arc adding
}
}
#
# ----- matrix parsing -------
#
if(any(grep("\\*Matrix", line, ignore.case = TRUE))){
if(verbose) print(paste('parsing *Matrix block at line',lineNumber))
if(length(line)>1){
# if a network name is given, use that
network.name <- strsplit(line[3],'\"')[[1]][2]
}else{
# otherwise name it acoding to the file name, adding a digit if we've seen multiple nets
#network.name <- paste("network",nnetworks+1,sep="")
network.name <- paste(network.title,ifelse(nnetworks>0,nnetworks,''),sep="")
}
nnetworks <- nnetworks + 1
network.names <- c(network.names, network.name)
temp0 <- as.matrix(read.table(file,skip=0,nrows=nvertex,as.is=TRUE))
lineNumber<-lineNumber+nvertex
lastColNum <- ncol(temp0)
if(all(apply(temp0[,-lastColNum],1,sum)==temp0[,lastColNum])){
if(verbose) print("removing final marginal sum column of matrix")
temp0 <- temp0[,-lastColNum]
}
if(verbose) print(paste(" matrix dimensions: dim1",dim(temp0)[1],"na",nactors,"dim2",dim(temp0)[2],"ne",nevents)) #checking
if(is2mode & (dim(temp0)[1]!=nactors | dim(temp0)[2]!=nevents)){
stop("dimensions do not match bipartite specifications")
}else{
# check for self-loops
loops<-
# convert the adjacency matrix to a network, using values as an edge attribute
temp <- as.network.matrix(x=temp0,
matrix.type='adjacency',
bipartite=is2mode, #dschruth added "bipartate=is2mode" for two-mode
ignore.eval=FALSE,
names.eval=network.name,
loops=any(diag(temp0)>0) # check for self-looops
)
if(verbose) print("network created from matrix")
}
assign(network.names[nnetworks], temp)
rm(temp)
}
# detect and report some formats that we cannot yet parse
if(any(grep("\\*Arcslist", line, ignore.case = TRUE))){
warning(paste('skipped *Arcslist block at line',lineNumber, ' read.paj does not yet know how to parse it '))
#TODO: see http://vlado.fmf.uni-lj.si/vlado/podstat/AO/net/TinaList.net
}
if(any(grep("\\*Edgeslist", line, ignore.case = TRUE))){
warning(paste('skipped *Edgeslist block at line',lineNumber, ' read.paj does not yet know how to parse it '))
# TODO: see http://vlado.fmf.uni-lj.si/vlado/podstat/AO/net/TinaList.net
}
if(any(grep("\\*Events", line, ignore.case = TRUE))){
stop(paste('found *Events block at line',lineNumber, ' read.paj does not yet know how to parse Event timing format '))
# TODO: see http://vlado.fmf.uni-lj.si/vlado/podstat/AO/net/Friends.tim
}
} # end file-parsing while loop
if(verbose){
print(paste('End of file reached at line',lineNumber))
}
#if(is.null(network.title)) network.title <- network.name
if(debug){
print(paste("nnetworks=",nnetworks))
print(paste("network.names=",network.names))
print(paste("vertex null?",is.null(vertex)))
print(paste("network.title=",network.title))
print(paste("vector null?",is.null(vector)))
print(paste("colnames.vector=",colnames.vector))
print(paste("nprojects=",length(projects)))
print(paste("names.projects=",names(projects)))
}
if(verbose) print(paste("number of networks found:",nnetworks)) #dschruth added
# ------------ post-processing --------------------
if(nnetworks > 0){
if(debug) print("assembling networks into 'project' before returning")
# grab all the named networks from the environment
# and put 'em in a list
networksData<-lapply(network.names,function(netName){get(netName)})
# TODO: delete networks from environment to clear up space?
# this code takes the various objects that have been parsed from the .paj file and assembles
# them into a network object (or list of network objects, a 'project'), doing some appropriate conversion
projects <- postProcessProject( network.title,
vector,
colnames.vector,
vertex, # data for building vertices,
edgeData,
nnetworks, # number of networks found,
network.names, # names of networks found
networksData,
projects,
time.format,
verbose
)
} else { # networks have not been created, but need to check if only vertices have been found
if(!is.null(vertex)){
# need to initialize a network here to deal with the case where no arcs/edge in the file
# Note that without the arcs/edge, we have no way to know if network was supposed to be directed or multiplex
networksData<-list( network.initialize(n=nvertex, bipartite=nactors))
projects <- postProcessProject( network.title,
vector,
colnames.vector,
vertex, # data for building vertices,
edgeData=NULL,
nnetworks, # number of networks found,
network.names = network.title, # names of networks found
networksData,
projects,
time.format,
verbose)
}
}
if(is.null(partition)){
if(verbose) print(paste("number of projects",length(projects))) #dschruth added
# if there is only one 'project' (network) remove it from the list and return it that way.
if(length(projects)==1){
projects <- projects[[1]]
}
if(nnetworks>1){
if (verbose){
print('appending network objects into a network.series')
}
class(projects) <- "network.series"
}
}else{
names(partition) <- names.partition
if (verbose){
print('returning projects and partitions as seperate list elements')
}
projects <- list(networks=projects, partitions=partition)
} #end ifelse
#
# Simplify
#
if(is.logical(simplify)){
if(simplify){
simplify <- fileName
}else{
return(projects)
}
}
read.paj.simplify(x=projects,file=simplify,verbose=verbose)
} #end read.paj
# this code takes the various objects that have been parsed from the .paj file and assembles
# them into a network object (or list of network objects, a 'project'), doing some appropriate conversion
# this is called whenever the main parsing loop believes that it has finished with a section of
# the .paj file describing a group of networks.
# this code is extracted here because it can be called from two different places and must remain identical
postProcessProject<-function(
network.title,
vector,
colnames.vector,
vertex, # data for building vertices,
edgeData, # data for building edges
nnetworks, # number of networks found,
network.names, # names of networks found
networksData, # list of basic networks created
projects,
time.format,
verbose
){
colnames(vector) <- colnames.vector
colnames(vertex) <- c("vertex.numbers","vertex.names","cen1","cen2")[1:ncol(vertex)]
networks <- vector("list",length=nnetworks)
if(verbose) print(paste("processing networks:",paste(network.names,collapse=', ')))
for(i in seq(along.with=network.names)){
temp <- networksData[[i]]
isDynamic<-FALSE
if(!is.null(vertex)){
if (nrow(as.data.frame(stringsAsFactors=TRUE,vertex)) == network.size(temp)) {
# set the vertex names to match names in file
temp <- set.vertex.attribute(temp, "vertex.names",
as.character(vertex[as.numeric(vertex[,1]),2]))
if (ncol(vertex)>2) { # number of columns > 2 -> vertex has attributes
#vert.attr.nam <- c("na","vertex.names","x","y") #assume first three are coords (true?)
vert.attr.nam <- c("na","vertex.names",seq_len(ncol(vertex))) #temp names for rest
# verify that coordinates are numeric
if(ncol(vertex)>=3 && all(is.numeric(vertex[,3]))){
vert.attr.nam[3] <- 'x'
}
if(ncol(vertex)>=4 && all(is.numeric(vertex[,4]))){
vert.attr.nam[4] <- 'y'
}
# check if z coordinate exists and add it if it does
if(ncol(vertex)>=5 && all(is.numeric(vertex[,5]))){
vert.attr.nam[5] <- 'z'
}
# loop over each column of vertex attributes
for (vert.attr.i in 3:ncol(vertex)){
v <- vertex[,vert.attr.i]
if (is.factor(v)){ # if it's a factor (non-numeric), then
vert.attr.nam.tmp <- levels(v)[1] # see if the first factor is an attribute name
if (vert.attr.nam.tmp=="") vert.attr.nam.tmp <- levels(v)[2] # in case of missing data
if (nlevels(v)<=2&!is.na(match(vert.attr.nam.tmp, # check for match if # factors <=2
c("s_size","x_fact","y_fact","phi","r","q",
"ic","bc","bw","lc","la","lr",
"lphi","fos","font")))) { #from pajekman.pdf v1.2.3 p.69-70
vert.attr.nam[vert.attr.i+1] <- vert.attr.nam.tmp #if match, name the next column
} else { #if not, set the attribute, converting to character (networks incompat w/factors)
# if this is the 6th column, assume it is a shape name
# but it could be the 5th column if z is missing (ugg, I hate this format!)
if('z'%in%vert.attr.nam){
if(vert.attr.i==6 ){
vert.attr.nam[6]<-'shape'
}
} else {
if(vert.attr.i==5 ){
vert.attr.nam[5]<-'shape'
}
}
# spec says missing values should be filled in by row above
values<-as.character(vertex[as.numeric(vertex[,1]),vert.attr.i])
missingVals<-which(values=='')
while(length(missingVals)>0){
values[min(missingVals)]<-values[min(missingVals)-1]
missingVals<-which(values=='')
}
# special processing:
# check if it has brackets for time info, if so added
if (length(grep('^\\[.+\\]$',values))>0) {
isDynamic<-TRUE
# if using pajeck time structure, just assign it
if(time.format=='pajekTiming'){
vert.attr.nam[vert.attr.i]<-'pajekTiming'
} else if (time.format =='networkDynamic'){
# if using nd, convert to spell matrix and assign as 'active' attribute
vert.attr.nam[vert.attr.i]<-'active'
values<-lapply(values,as.spells.pajek)
}
}
temp <- set.vertex.attribute(temp,vert.attr.nam[vert.attr.i], values)
}
} else { #not a factor, set the attribute and don't convert to character
temp <- set.vertex.attribute(temp,vert.attr.nam[vert.attr.i],
vertex[as.numeric(vertex[,1]),vert.attr.i])
}
if (verbose) print(paste(' set vertex attribute',vert.attr.nam[vert.attr.i]))
}
}
} else {
stop('number of rows in vertex data does not match number of vertices')
}
} # end vertex data processing
# process edge data
if(!is.null(edgeData)){
if (ncol(edgeData)>3) { # number of columns > 3 means dyads have attributes
edge.attr.nam <- c("from","to","weight",4:ncol(edgeData)) #temp names for rest
# loop over each column of edge attributes
for (edge.attr.i in 4:ncol(edgeData)){
e <- edgeData[,edge.attr.i]
if (is.factor(e)){ # if it's a factor (non-numeric), then
edge.attr.nam.tmp <- levels(e)[1] # see if the first factor is an attribute name
if (edge.attr.nam.tmp=="") edge.attr.nam.tmp <- levels(e)[2] # in case of missing data
if (nlevels(e)<=2&!is.na(match(edge.attr.nam.tmp, # check for match if # factors <=2
c("w","c","p","s","a","ap","l","lp","lr","lphi","lc","la","fos","font",'h1','h2','a1','k1','k2','a2')))) {
edge.attr.nam[edge.attr.i+1] <- edge.attr.nam.tmp #if match, name the next column
} else { #if not, set the attribute, converting to character (networks incompat w/factors)
# spec says missing values should be filled in by row above
values<-as.character(edgeData[,edge.attr.i])
missingVals<-which(values=='')
while(length(missingVals)>0){
values[min(missingVals)]<-values[min(missingVals)-1]
missingVals<-which(values=='')
}
# special processing:
# if name is 'l' (line label) it needs to have possible enclosing quotes removed
# check if it has brackets for time info, if so added
if (length(grep('^\\[.+\\]$',values))>0) {
isDynamic<-TRUE
# if using pajeck time structure, just assign it
if(time.format=='pajekTiming'){
edge.attr.nam[edge.attr.i]<-'pajekTiming'
} else if (time.format =='networkDynamic'){
# if using nd, convert to spell matrix and assign as 'active' attribute
edge.attr.nam[edge.attr.i]<-'active'
values<-lapply(values,as.spells.pajek)
}
}
if(edge.attr.nam[edge.attr.i] == 'l'){
values<-gsub('"','',values)
}
temp <- set.edge.attribute(temp,edge.attr.nam[edge.attr.i], values)
}
} else { #not a factor, set the attribute and don't convert to character
temp <- set.edge.attribute(temp,edge.attr.nam[vert.attr.i],
edgeData[,edge.attr.i])
}
if (verbose) print(paste(' set edge attribute',edge.attr.nam[edge.attr.i]))
}
}
} # end arc/edge data processing
if(!is.null(network.title)){
temp <- set.network.attribute(temp, "title", network.title) # not sure if this should also be the edges relation?
}else{
warning("null network title")
}
if(nrow(as.data.frame(stringsAsFactors=TRUE,vertex))== network.size(temp)){ #should i be doing this? why don't these numbers match all time
temp <- set.vertex.attribute(temp,"vertex.names",as.character(vertex[as.numeric(vertex[,1]),2]))
}
# if it is a dynamic network and we are doing nD format, secretly give it the networkDynamic class
if(isDynamic){
if(time.format=='networkDynamic'){
if(verbose) print(" network has dynamics and is assigned 'networkDynamic' class")
# using this instead of the safer as.networkDynamic() to avoid adding Suggests dependency on networkDynamic
class(temp)<-c('networkDynamic',class(temp))
} else {
if(verbose) print(' network has dynamic info which was saved without interpretation. see argument "time.format" for details')
}
}
networks[[i]] <- temp
if (verbose) print(paste("processed and added",network.names[i],"to list of networks"))
}
names(networks) <- network.names
if(nnetworks > 1){
networks <- list(formula = ~1, networks = networks,
stats = numeric(0),coef=0)
class(networks) <- "network.series"
} else{
networks <- networks[[1]]
}
projNames<-names(projects)
projects <- c(projects,list(networks))
names(projects) <-c(projNames, network.title)
return(projects)
}
# reads a single line of a file, splits it into tokens on ' ' and returns as string vector
readAndVectorizeLine <- function(file){
line <- readLines(file, 1, ok = TRUE)
if(!inherits(line,"try-error") & length(line)>0){
line <- strsplit(line," ")[[1]]
line <- line[line!=""]
}
line
}
read.paj.simplify <- function(x,file,verbose=FALSE)
{
classx <- class(x)
if(inherits(x,"network")){
cat(paste(file," is a single network object.\n",sep=""))
assign(file,x)
save(list=file,
file=paste(file,".RData",sep=""))
cat(paste("network saved as a 'network' object in ",file,".RData.\n",sep=""))
return(x)
}
if(inherits(x,"network.series")){
nnets <- length(x$networks)
cat(paste(file," is a set of ",nnets," networks on the same set of nodes.\n",sep=""))
cat(paste("The network names are:\n ",
paste(names(x$networks),collapse="\n "),"\n",sep=""))
cnames <- names(x$networks)
if(length(cnames) == 1){
assign(cnames,x$networks[[1]])
save(list=cnames,
file=paste(file,".RData",sep=""))
cat(paste("network simplified to a network object.\n",sep=""))
cat(paste("network saved as a 'network' object in ",file,".RData.\n",sep=""))
return(x$networks[[1]])
}else{
assign(file,x)
save(list=file,
file=paste(file,".RData",sep=""))
cat(paste("network saved as a 'network.series' object in ",file,".RData.\n",sep=""))
return(x)
}
}
if(classx=="list"){
ncollects <- length(x$networks)
nnets <- length(x$networks)
npart <- length(x$partitions)
cnames <- names(x$networks)
if(length(cnames) > 1){
cat(paste(file," is a set of ",ncollects," collections of networks\n",
"as well as Pajek 'partiton' information.\n",sep=""))
cat(paste("The collection names are:\n ",
paste(cnames,collapse="\n "),"\n",sep=""))
for(i in seq(along.with=cnames)){
thisnet <- x$networks[[i]]
classthisnet <- class(thisnet)
if(inherits(thisnet,"network.series") & length(thisnet$networks)==1){
thisnet <- thisnet$networks[[1]]
classthisnet <- class(thisnet)
}
if(inherits(thisnet,"network")){
cat(paste("The collection ",cnames[i]," is a single network object.\n",
sep=""))
}else{
cat(paste("The collection ",cnames[i], " is a set of networks on the same nodes.\n",sep=""))
cat(paste("The network names are:\n ",
paste(names(thisnet$networks),collapse="\n "),"\n",sep=""))
}
}
cat(paste("There are ",npart," partitions on the networks.\n",sep=""))
cat(paste("The partition names are:\n ",
paste(names(x$partitions),collapse="\n "),"\n",sep=""))
cat(paste(".RData file unchanged.\n",sep=""))
}else{
thisnet <- x$networks[[1]]
classthisnet <- class(thisnet)
if(inherits(thisnet,"network")){
cat(paste(file," is a single network object called ", cnames,"\n",
"as well as Pajek 'partiton' information.\n",sep=""))
cat(paste("There are ",npart," partitions on the networks.\n",sep=""))
cat(paste("The partition names are:\n ",
paste(names(x$partitions),collapse="\n "),"\n",sep=""))
}else{
cat(paste(file," is a collection of networks called ", cnames,"\n",
"as well as Pajek 'partiton' information.\n",sep=""))
cat(paste("The network names are:\n ",
paste(names(thisnet$networks),collapse="\n "),"\n",sep=""))
cat(paste("There are ",npart," partitions on the networks.\n",sep=""))
cat(paste("The partition names are:\n ",
paste(names(x$partitions),collapse="\n "),"\n",sep=""))
}
assign(cnames,x$networks[[1]])
assign(paste(cnames,"partitions",sep="."),x$partitions)
save(list=c(cnames, paste(cnames,"partitions",sep=".")),
file=paste(file,".RData",sep=""))
if(inherits(x$networks[[1]],"network")){
cat(paste("network simplified to a 'network' object plus partition.\n",sep=""))
cat(paste("network saved as a 'network' object and a separate partition list in ",file,".RData.\n",sep=""))
}else{
cat(paste("network simplified to a 'network.series' object plus partition.\n",sep=""))
cat(paste("network saved as a 'network.series' object and a separate partition list in ",file,".RData.\n",sep=""))
}
}
}
return(x)
}
# swaps the first two columns (tail, heads) in a matrix
switchArcDirection <- function(edgelist){
edgelist[,1:2] <- edgelist[,2:1]
edgelist
}
# return a character matrix with number of rows equal to length of list x
# and ncol = longest element in x
# assumes that list elements may not be all the same length
# each row is filled in fro
fillMatrixFromListRows<-function(x){
maxLen<-max(sapply(x,length))
paddedRows<-lapply(x,function(r){
row<-rep('',maxLen)
row[1:length(r)]<-unlist(r)
row
})
return(do.call(rbind,paddedRows))
}
# convert strings in pajek's timing notation into a spell matrix
# example "[5-10,12-14]", "[1-3,7]", "[4-*]"
# does not check spells for correctness of spell definitions
as.spells.pajek <-function(pajekTiming,assume.discrete=TRUE){
# strip off brackets
p<-gsub('\\[','',pajekTiming)
p<-gsub('\\]','',p)
# split on comma
splStrings<-strsplit(p,',')
spls<-sapply(splStrings[[1]],function(s){
# default always active
spl<-c(-Inf,Inf)
elements<-strsplit(s,'-')[[1]]
if(length(elements)==2){
# replace Infs
if (elements[1]=='*'){
elements[1]<-'-Inf'
}
if (elements[2]=='*'){
elements[2]<-'Inf'
}
# convert to numeric and form spell
spl<-c(as.numeric(elements[1]),as.numeric(elements[2]))
} else if (length(elements)==1){
# only one element, so duplicate
spl[1:2]<-as.numeric(elements[1])
} else {
stop('unable to parse token: ',s)
}
if (assume.discrete){
# add one time unit to the ending value to conform with networkDynamic's 'until' spell definition
spl[2]<-spl[2]+1
}
return(spl)
})
# reshape vector of spell data into a 2-column matrix
return(matrix(spls,ncol=2,byrow=TRUE))
}
|