Learn R Programming

fnets (version 0.1.6)

print.threshold: Print threshold

Description

Prints a summary of a threshold object

Usage

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

Value

NULL, printed to console

Arguments

x

threshold object

...

not used

See Also

threshold

Examples

Run this code
if (FALSE) {
library(fnets)
out <- fnets(data.unrestricted,
   var.args = list(n.cores = 2)
)
# Granger-causal network
th1 <- threshold(out$idio.var$beta)
plot(th1)
print(th1)
# Partial correlations
th2 <- threshold(out$lrpc$pc)
# Long-run partial correlations
th3 <- threshold(out$lrpc$lrpc)
}

Run the code above in your browser using DataLab