Description Objects from the Class Slots Methods Note Author(s) References See Also Examples
List-like container for storing results from fmcs
function.
Objects can be created by calls of the form new("MCS", ...)
.
stats
:Object of class "numeric"
~~
mcs1
:Object of class "SDFset"
~~
mcs2
:Object of class "SDFset"
~~
signature(x = "MCS")
: ...
signature(from = "list", to = "MCS")
: ...
signature(x = "MCS")
: ...
signature(x = "MCS")
: ...
signature(x = "MCS")
: ...
...
Yan Wang
...
Related classes: SDF, SDFstr
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Create MCS instance
showClass("MCS")
data(sdfsample)
sdfset <- sdfsample
mcs <- fmcs(sdfset[[1]], sdfset[[2]], au=2, bu=2)
## Methods to return components of MCS
stats(mcs)
mcs[["stats"]]
mcs1(mcs)
mcs[["mcs1"]]
mcs2(mcs)
mcs[["mcs2"]]
## Constructor method from list
mylist <- list(stats=stats(mcs), mcs1=mcs1(mcs), mcs2=mcs2(mcs))
mymcs <- as(mylist, "MCS")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.