Description Usage Arguments Value Examples
enframe_data
returns a data frame with one row per assemblage and a
list column of frequency vectors
1 | enframe_data(x)
|
x |
a list of assemblage data frames |
a data frame with one row per assemblage
1 2 3 4 5 6 7 8 9 10 11 | l <- list(
A = tibble::tibble(A1 = c(10,2,1,1)),
B = tibble::tibble(B1 = c(7,2,1))
)
enframe_data(l)
# each assemblage data frame must be named
l <- list(
A = tibble::tibble(A1 = c(10,2,1,1)),
tibble::tibble(B1 = c(7,2,1))
)
enframe_data(l)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.