as.data.frame.susy {SUSY} | R Documentation |
susy to data.frame conversion method
Description
Turns susy
class object into a data.frame
.
Usage
## S3 method for class 'susy'
as.data.frame(x, row.names=NULL, optional=FALSE, corr.no.abs=TRUE, ...)
Arguments
x |
A |
row.names |
Ignored, only for consistency to generic |
optional |
Ignored, only for consistency to generic |
corr.no.abs |
Logical, defaults to |
... |
Ignored. |
Value
Returns data.frame
.
See Also
Examples
n = 1000
data = data.frame(
var1 = runif(n, 300, 330),
var2 = runif(n, 300, 330)
)
res = susy(data, segment=30L, Hz=15L)
as.data.frame(res)
[Package SUSY version 0.1.0 Index]