Learn R Programming

netdiffuseR (version 1.22.6)

as.array.diffnet: Coerce a diffnet graph into an array

Description

Coerce a diffnet graph into an array

Usage

# S3 method for diffnet
as.array(x, ...)

Value

A three-dimensional array of \(T\) matrices of size \(n\times n\).

Arguments

x

A diffnet object.

...

Ignored.

Details

The function takes the list of sparse matrices stored in x and creates an array with them. Attributes and other elements from the diffnet object are dropped.

dimnames are obtained from the metadata of the diffnet object.

See Also

diffnet.

Other diffnet methods: %*%(), c.diffnet(), diffnet-arithmetic, diffnet-class, diffnet_index, plot.diffnet(), summary.diffnet()

Examples

Run this code
# Creating a random diffnet object
set.seed(84117)
mydiffnet <- rdiffnet(30, 5)

# Coercing it into an array
as.array(mydiffnet)

Run the code above in your browser using DataLab