coo_list objects are list of coo_single.

new_coo_list(x = list())

coo_list(x)

vec_ptype_full.coo_list(x)

vec_ptype_abbr.coo_list(x)

is_coo_list(x)

is_coo_list1(x)

Arguments

x

a list of coo_single

Value

a coo_list object

Details

They behave like lists and thus as regular tibble/data.frame columns. The only difference is that and are understood by morphometric methods used in MomX.

Functions

  • new_coo_list: Constructor

  • coo_list: Helper

  • is_coo_list: Class tester

  • is_coo_list1: Class1 tester

Examples

matrix(1:12, ncol=2) %>% coo_single() %>% list() %>% coo_list()
#> <list_of< #> coo_single< #> x: double #> y: double #> > #> >[1]> #> [[1]] #> # A tibble: 6 x 2 #> x y #> <int> <int> #> 1 1 7 #> 2 2 8 #> 3 3 9 #> 4 4 10 #> 5 5 11 #> 6 6 12 #> ❯coo_single with 6 coordinates #>