as.data.frame.mvsusy {mvSUSY}R Documentation

mvsusy to data.frame conversion method

Description

Turns mvsusy class object into a data.frame.

Usage

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

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.

Value

Returns data.frame.

See Also

mvsusy

Examples


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


[Package mvSUSY version 0.1.0 Index]