rn | R Documentation |
This function serves as a wrapper for function rp()
, it will add some attributes to the matrix related to network representation. These attributes will be used to decide which network type to generate (e.g. undirected, directed, weighted, etc.)
rn(
y1,
y2 = NULL,
emDim = 1,
emLag = 1,
emRad = NULL,
theiler = 0,
directed = FALSE,
cumulative = TRUE,
weighted = FALSE,
weightedBy = c("none", "si", "rt", "rf")[1],
rescaleWeights = FALSE,
fs = NA,
to.ts = NULL,
order.by = NULL,
to.sparse = FALSE,
method = c("Euclidean", "max", "SBD")[1],
targetValue = 0.05,
returnGraph = FALSE,
doPlot = FALSE,
doEmbed = TRUE,
silent = TRUE,
...
)
y1 |
A numeric vector or time series |
y2 |
A numeric vector or time series for cross recurrence |
emDim |
The embedding dimensions |
emLag |
The embedding lag |
emRad |
The threshold (emRad) to apply to the distance matrix to create a binary or weighted matrix. If |
theiler |
Use a
|
directed |
Should the matrix be considered to represent a directed network? (default = |
cumulative |
To make the network represent cumulative time, set |
weighted |
Should the matrix be considered to represent a weighted network? (default = |
weightedBy |
After setting values smaller than |
rescaleWeights |
If set to |
fs |
Sample frequency: A numeric value interpreted as the |
to.ts |
Should |
order.by |
If |
to.sparse |
Should sparse matrices be used? |
method |
Distance measure to use. Any option that is valid for argument |
targetValue |
A value passed to |
returnGraph |
Return an |
doPlot |
Plot the matrix by calling |
doEmbed |
If |
silent |
Silent-ish mode |
... |
Any paramters to pass to |
A (Coss-) Recurrence matrix that can be interpreted as an adjacency (or incidence) matrix.
Other Distance matrix operations (recurrence network):
mat_di2bi()
,
mat_di2ch()
,
mat_di2we()
,
rn_phases()
,
rn_plot()
,
rn_recSpec()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.