enframe_data: Enframe biodiversity data.

Description Usage Arguments Value Examples

Description

enframe_data returns a data frame with one row per assemblage and a list column of frequency vectors

Usage

1

Arguments

x

a list of assemblage data frames

Value

a data frame with one row per assemblage

Examples

 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)

jbintz/biodiverse documentation built on May 8, 2019, 1:01 p.m.