Description Usage Arguments Value Examples
Dapply, dapply2 ist plyr::llply()
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | Dapply(x, ...)
dapply2(
data,
fun = function(x) as.numeric(x),
stringsAsFactors = default.stringsAsFactors(),
...
)
## S3 method for class 'formula'
Dapply(
x,
data,
fun = function(xx) { as.numeric(xx) },
stringsAsFactors = default.stringsAsFactors(),
...
)
## S3 method for class 'data.frame'
Dapply(
data,
...,
fun = function(x) as.numeric(x),
stringsAsFactors = default.stringsAsFactors()
)
|
x |
Objekt |
... |
Weitere Argumente an llply |
data |
Data.frame |
fun |
funktion function(x) as.numeric(x) |
stringsAsFactors |
logical: should character vectors be converted to factors? |
data.frame
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.