Skip to contents

The creator object can be complex so we prepare components of the final object (e.g. affiliation, nameIdentifiers) then run prep_array_objects

Usage

prep_creators(x)

Arguments

x

data frame or named list.

Value

List of unboxed data frames

Examples


wddsWizard::becker_project_metadata$creators |>
 prep_creators()
#> [[1]]
#> Warning: Setting row names on a tibble is deprecated.
#> # A tibble: 1 × 5
#>   name             givenName familyName affiliation      nameIdentifiers 
#> * <chr>            <chr>     <chr>      <list>           <list>          
#> 1 Daniel J. Becker Daniel J. Becker     <tibble [1 × 2]> <tibble [1 × 2]>
#> 
#> [[2]]
#> Warning: Setting row names on a tibble is deprecated.
#> # A tibble: 1 × 4
#>   name            givenName   familyName affiliation     
#> * <chr>           <chr>       <chr>      <list>          
#> 1 Guang-Sheng Lei Guang-Sheng Lei        <tibble [1 × 2]>
#>