- x
a vector of numeric values, ordered by time.
Also allowed are xts
, zoo
,
or ts
objects.
- y
a vector of numeric values, ordered by time.
Also allowed are xts
, zoo
,
or ts
objects.
- lx
Markov order of x, i.e. the number of lagged values affecting the
current value of x. Default is lx = 1
.
- ly
Markov order of y, i.e. the number of lagged values affecting the
current value of y. Default is ly = 1
.
- q
a weighting parameter used to estimate Renyi transfer entropy,
parameter is between 0 and 1. For q = 1
, Renyi transfer
entropy converges to Shannon transfer entropy. Default is
q = 0.1
.
- entropy
specifies the transfer entropy measure that is estimated,
either 'Shannon' or 'Renyi'. The first character can be used
to specify the type of transfer entropy as well. Default is
entropy = 'Shannon'
.
- shuffles
the number of shuffles used to calculate the effective
transfer entropy. Default is shuffles = 100
.
- type
specifies the type of discretization applied to the observed time
series:'quantiles', 'bins' or 'limits'. Default is
type = 'quantiles'
.
- quantiles
specifies the quantiles of the empirical distribution of the
respective time series used for discretization.
Default is quantiles = c(5,95)
.
- bins
specifies the number of bins with equal width used for
discretization. Default is bins = NULL
.
- limits
specifies the limits on values used for discretization.
Default is limits = NULL
.
- burn
the number of observations that are dropped from the beginning of
the bootstrapped Markov chain. Default is burn = 50
.
- seed
a seed that seeds the PRNG (will internally just call set.seed),
default is seed = NULL
.
- na.rm
if missing values should be removed (will remove the values at
the same point in the other series as well). Default is TRUE
.