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 |
row.names |
Ignored, only for consistency to generic |
optional |
Ignored, only for consistency to generic |
... |
Ignored. |
Value
Returns data.frame
.
See Also
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]