Learn R Programming

networkDynamic (version 0.11.4)

print.networkDynamic: Provide a view of a networkDynamic object including timing information

Description

Prints out some very basic descriptive stats about the network's dynamics, and the the normal information printed for network objects.

Usage

# S3 method for networkDynamic
print(x, ...)

Value

Returns the networkDynamic object passed to the function.

Arguments

x

an object of class networkDynamic including dynamic relational information

...

additional items to be passed for consideration by other classes

Author

Pavel

Details

Prints some info about the number of time events in a networkDynamic object, then calls print.network

See Also

print.network

Examples

Run this code
  library(networkDynamic)
  data(flo)
  net1 <- network(flo)
  activate.edges(net1, onset=1:20, terminus=101:120)
  activate.vertices(net1, at=seq(2,32,2))
  print(net1)

Run the code above in your browser using DataLab