Learn R Programming

mvSUSY (version 0.1.0)

as.data.frame.mvsusy: mvsusy to data.frame conversion method

Description

Turns mvsusy class object into a data.frame.

Usage

# S3 method for mvsusy
as.data.frame(x, row.names=NULL, optional=FALSE, ...)

Value

Returns data.frame.

Arguments

x

A mvsusy object.

row.names

Ignored, only for consistency to generic as.data.frame method.

optional

Ignored, only for consistency to generic as.data.frame method.

...

Ignored.

See Also

mvsusy

Examples

Run this code
# \donttest{
set.seed(1)
data = as.data.frame(replicate(5, sample(10, 5000, TRUE)))
res = mvsusy(data, segment=10L, Hz=10L)
df = as.data.frame(res)
df
# }

Run the code above in your browser using DataLab