yuima-class {yuima} | R Documentation |
Class for stochastic differential equations
Description
The yuima
S4 class is a class of the yuima package.
Details
The yuima-class
object is the main object of the yuima package.
Some of the slots may be missing.
The data
slot contains the data, either empirical or simulated.
The model
contains the description of the
(statistical) model which is used to generate the data
via different
simulation schemes, to draw inference from the data
or both.
The sampling
slot contains information on how the data
have been
collected or how they should be generated.
The slot characteristic
contains information on
PLEASE FINISH THIS
.
The slot functional
contains information on
PLEASE FINISH THIS
.
Slots
data
:an object of class
yuima.data-class
model
:an object of class
yuima.model-class
sampling
:an object of class
yuima.sampling-class
characteristic
:an object of class
yuima.characteristic-class
functional
:an object of class
yuima.functional-class
Methods
- new
signature(x = "yuima", data = "yuima.data", model = "yuima.model", sampling = "yuima.sampling", characteristic = "yuima.characteristic"
: the function makes a copy of the prototype object from the class definition ofyuima-class
, then calls theinitialize
method passing as arguments the newly created object and the remaining arguments.- initialize
signature(x = "yuima", data = "yuima.data", model = "yuima.model", sampling = "yuima.sampling", characteristic = "yuima.characteristic"
: makes a copy of each argument in the corresponding slots of the objectx
.- get.data
signature(x = "yuima")
: returns the content of the slotdata
.- plot
signature(x = "yuima", ...)
: callsplot
from thezoo
package with argumentx@data@zoo.data
. Additional arguments...
are passed as is to theplot
function.- dim
signature(x = "yuima")
: the number of SDEs in theyuima
object.- length
signature(x = "yuima")
: a vector of length of each SDE described in theyuima
object.- cce
signature(x = "yuima")
: calculates the asyncronous covariance estimator on the data contained inx@data@zoo.data
. For more details seecce
.- llag
signature(x = "yuima")
: calculates the lead lag estimate r on the data contained inx@data@zoo.data
. For more details seellag
.- simulate
simulation method. For more information see
simulate
.- cbind
signature(x = "yuima")
: bind yuima.data object.
Author(s)
The YUIMA Project Team