Around pkg::yaml base functions

export_yaml(x)

import_yaml(x)

Arguments

x

any object

Examples

(chivas$coo[[1]] %>% export_yaml() -> x)
#> x: #> - 33.0 #> - 32.0 #> - 36.0 #> - 141.0 #> - 297.0 #> - 329.0 #> - 332.0 #> - 273.0 #> - 238.0 #> - 232.0 #> - 130.0 #> - 113.0 #> 'y': #> - 437.0 #> - 273.0 #> - 125.0 #> - 44.0 #> - 52.0 #> - 201.0 #> - 349.0 #> - 508.0 #> - 668.0 #> - 816.0 #> - 770.0 #> - 614.0
x %>% import_yaml()
#> # A tibble: 12 x 2 #> x y #> <dbl> <dbl> #> 1 33 437 #> 2 32 273 #> 3 36 125 #> 4 141 44 #> 5 297 52 #> 6 329 201 #> 7 332 349 #> 8 273 508 #> 9 238 668 #> 10 232 816 #> 11 130 770 #> 12 113 614 #> ❯coo_single with 12 coordinates