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
|
######################################################################
#
# printsum.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 for printing/summarizing
# network class objects.
#
# Contents:
#
# print.network
# print.summary.network
# summary.character
# summary.network
#
######################################################################
# Printing for network class objects.
#
#' @rdname network
#' @export print.network
#' @export
print.network<-function(x, matrix.type=which.matrix.type(x),
mixingmatrices=FALSE, na.omit=TRUE, print.adj=FALSE, ...)
{
cat(" Network attributes:\n")
for(i in 1:length(x$gal)){
if (names(x$gal)[i]=="n"){
attributeName<-"vertices"
attributeValue<-x$gal[[i]]
} else {
attributeName<-names(x$gal)[i]
attributeValue<-x$gal[[i]]
}
if(is.network(attributeValue)){
if(attributeName=="design"){
cat(" ",attributeName,"=\n")
cat(" total missing =",network.edgecount(attributeValue),"\n")
cat(" percent missing =",network.density(attributeValue),"\n")
}else{
cat(" ",attributeName,":\n",sep="")
if(is.discrete(attributeValue)){
assign(paste(" ",attributeName),attributeValue)
print(table(get(paste(" ",attributeName))))
if(mixingmatrices){
cat("\n","mixing matrix for ",attributeName,":\n",sep="")
print(mixingmatrix(x,attributeName))
}
}else{
print(summary(attributeValue))
}
}
}else{
if(attributeName!="mnext"){
if(is.discrete(attributeValue)){
#assign(paste(" ",attributeName),attributeValue)
#print(table(get(paste(" ",attributeName))))
print(table(attributeValue,dnn=paste(' ',attributeName,':',sep='')))
}else{
# for short attributes, just print out the values
if(inherits(attributeValue,c("factor","character","numeric", "logical","integer","double","NULL","call","formula"))&&(length(attributeValue) < 10)){
# handle NULL case because cat won't print NULL
if (is.null(attributeValue)){
cat(" ",attributeName,"= NULL\n")
} else {
if(is.call(attributeValue)) attributeValue <- deparse(attributeValue)
cat(" ",attributeName,"=",attributeValue,"\n")
}
} else{
# special handling for classes where summary would give messy or non-useful output
# don't print summary for net obs period or active attributes
if (attributeName=='net.obs.period' || grepl('.active$',attributeName) ){
cat(" ",attributeName,": (not shown)\n", sep="")
} else if (inherits(attributeValue,c("matrix"))){
cat(" ",attributeName,": ",nrow(attributeValue),"x",ncol(attributeValue)," matrix\n", sep="")
} else {
# default to printing out the summary for the attribute
cat(" ",attributeName,":\n", sep="")
if(is.call(attributeValue)){
# (unless it's a call like a formula)
print(attributeValue)
}else{
print(summary(attributeValue))
}
}
}
}
}
}
}
cat(" total edges=",network.edgecount(x,na.omit=FALSE),"\n")
cat(" missing edges=",network.naedgecount(x),"\n")
cat(" non-missing edges=",network.edgecount(x,na.omit=TRUE),"\n")
vna<-list.vertex.attributes(x)
if(na.omit){
vna<-vna[vna!="na"]
}
if(length(vna)==0){
cat("\n","No vertex attributes","\n",sep="")
}else{
cat("\n","Vertex attribute names:","\n")
cat(" ",vna,"\n")
}
# Print list of edge attributes, but only if there are not very many edges
# because list.edge.attributes is expensive on large nets
if(length(x$mel)<=1000){
ena<-list.edge.attributes(x)
if(na.omit){
ena<-ena[ena!='na']
}
if(length(ena)==0){
cat("\n","No edge attributes","\n",sep="")
}else{
cat("\n","Edge attribute names:","\n")
cat(" ",ena,"\n")
}
} else {
cat("\n","Edge attribute names not shown","\n")
}
#Print the adjacency structure, if desired
if(print.adj){
if(is.multiplex(x)&&(matrix.type=="adjacency"))
matrix.type<-"edgelist"
if(is.hyper(x))
matrix.type<-"incidence"
cat("\n",matrix.type,"matrix:\n")
if(network.edgecount(x)>0){
mat<-as.matrix.network(x,matrix.type=matrix.type)
attr(mat,"n")<-NULL #Get rid of any extra attributes
attr(mat,"vnames")<-NULL
attr(mat,"bipartite")<-NULL
print(mat)
}else
cat("Empty Graph\n")
}
invisible(x)
}
#Print method for summary.character
print.summary.character <- function(x, max.print=10, ...){
x<-table(x)
nam<-names(x)
x<-as.vector(x)
names(x)<-nam
if(length(x) <= max.print){
print(x)
}else{
ord<-order(as.vector(x),decreasing=TRUE)
cat(paste(" the ",max.print," most common values are:\n",sep=""))
print(x[ord][1:max.print])
}
invisible(x)
}
#Print method for summary.network
#' @export print.summary.network
#' @export
print.summary.network<-function(x, ...){
#Pull any extra goodies from summary.network (stored in gal)
na.omit<-x%n%"summary.na.omit"
mixingmatrices<-x%n%"summary.mixingmatrices"
print.adj<-x%n%"summary.print.adj"
#Print the network-level attributes
class(x)<-"network"
cat("Network attributes:\n")
for(i in 1:length(x$gal)){
if (names(x$gal)[i]=="n"){
attributeName<-"vertices"
attributeValue<-x$gal[[i]]
} else {
attributeName<-names(x$gal)[i]
attributeValue<-x$gal[[i]]
}
if(!(attributeName%in%c("mnext","summary.na.omit", "summary.mixingmatrices","summary.print.adj"))){
if(is.network(attributeValue)){
if(attributeName=="design"){
cat(" ",attributeName,"=\n")
cat(" total missing = ",network.edgecount(attributeValue),"\n", sep="")
cat(" percent missing =",network.density(attributeValue),"\n", sep="")
}else{
cat(" ",attributeName,"=\n")
print(attributeValue)
}
}else{
if(is.discrete(attributeValue)){
assign(paste(" ",attributeName),attributeValue)
print(table(get(paste(" ",attributeName))))
if(mixingmatrices){
cat("\n","mixing matrix for ",attributeName,":\n",sep="")
print(mixingmatrix(x,attributeName))
}
}else{
if(inherits(attributeValue,c("factor","character","numeric", "logical","integer","double","call","formula"))&& (length(attributeValue) < 10)){
if(is.call(attributeValue)) attributeValue <- deparse(attributeValue)
cat(" ",attributeName," = ",attributeValue,"\n",sep="")
}else{
cat(" ",attributeName,":\n", sep="")
if(is.call(attributeValue)){
print(attributeValue)
}else{
print(summary(attributeValue))
}
}
}
}
}
}
cat(" total edges =",network.edgecount(x,na.omit=FALSE),"\n")
cat(" missing edges =",network.naedgecount(x),"\n")
cat(" non-missing edges =",network.edgecount(x,na.omit=TRUE),"\n")
cat(" density =",network.density(x),"\n")
#Print the network-level attributes
van<-list.vertex.attributes(x)
if(na.omit){
van<-van[van!="na"]
}
if(length(van)==0){
cat("\n","No vertex attributes","\n",sep="")
}else{
cat("\nVertex attributes:\n")
for (i in (1:length(van))){
if(van[i]=="vertex.names"){
cat(" vertex.names:\n")
cat(" character valued attribute\n")
cat(" ",sum(!is.na(network.vertex.names(x)))," valid vertex names\n",sep="")
}else{
cat("\n ",van[i],":\n",sep="")
aaval<-get.vertex.attribute(x,van[i],unlist=FALSE)
aaclass<-unique(sapply(aaval,class))
aaclass<-aaclass[aaclass!="NULL"]
if(length(aaclass)>1){
cat(" mixed class attribute\n")
cat(" ",sum(!sapply(aaval,is.null)),"values\n")
}else if(aaclass%in%c("logical","numeric","character","list")){
cat(" ",aaclass," valued attribute\n",sep="")
aalen<-sapply(aaval,length)
if(all(aalen<=1)&&(aaclass!="list")){
cat(" attribute summary:\n")
print(summary(unlist(aaval)))
if(is.discrete(unlist(aaval))&&mixingmatrices){
cat(" mixing matrix:\n")
print(mixingmatrix(x,van[i]))
}
}else{
cat(" uneven attribute lengths; length distribution is\n")
print(table(aalen))
}
}else{
cat(" ",aaclass," valued attribute\n",sep="")
cat(" ",length(aaval)," values\n",sep="")
}
}
}
}
#Print the edge-level attributes
ean <- list.edge.attributes(x)
if(na.omit){
ean<-ean[ean!="na"]
}
if(length(ean)==0){
cat("\n","No edge attributes","\n",sep="")
}else{
cat("\nEdge attributes:\n")
for (i in (1:length(ean))){
cat("\n ",ean[i],":\n",sep="")
eaval<-get.edge.attribute(x$mel,ean[i],unlist=FALSE)
eaclass<-unique(sapply(eaval,class))
eaclass<-eaclass[eaclass!="NULL"]
if(length(eaclass)>1){
cat(" mixed class attribute\n")
cat(" ",sum(!sapply(eaval,is.null)),"values\n")
}else if(eaclass%in%c("logical","numeric","character","list")){
cat(" ",eaclass," valued attribute\n",sep="")
ealen<-sapply(eaval,length)
if(all(ealen<=1)&&(eaclass!="list")){
cat(" attribute summary:\n")
print(summary(unlist(eaval)))
}else{
cat(" uneven attribute lengths; length distribution is\n")
print(table(ealen))
}
}else{
cat(" ",eaclass," valued attribute\n",sep="")
cat(" ",length(eaval),"values\n",sep="")
}
}
}
#Print the adjacency structure
if(print.adj){
matrix.type=which.matrix.type(x)
if(is.multiplex(x)&&(matrix.type=="adjacency"))
matrix.type<-"edgelist"
if(is.hyper(x))
matrix.type<-"incidence"
cat("\nNetwork ",matrix.type," matrix:\n",sep="")
if(network.edgecount(x)>0){
mat<-as.matrix.network(x,matrix.type=matrix.type)
attr(mat,"n")<-NULL #Get rid of any extra attributes
attr(mat,"vnames")<-NULL
attr(mat,"bipartite")<-NULL
print(mat)
}else
cat("Empty Graph\n")
}
invisible(x)
}
#An internal routine to handle summaries of characters
summary.character <- function(object, ...){
class(object)<-c("summary.character",class(object))
object
}
# Summaries of network objects
#
#' @rdname network
#' @export summary.network
#' @export
summary.network<-function(object, na.omit=TRUE, mixingmatrices=FALSE, print.adj=TRUE, ...){
#Add printing parameters as network objects, and change the class
object%n%"summary.na.omit"<-na.omit
object%n%"summary.mixingmatrices"<-mixingmatrices
object%n%"summary.print.adj"<-print.adj
class(object)<-c("summary.network", class(object))
#Return the object
object
}
|