face_temporal | R Documentation |
While face_temporal()
switches a cubble object into a long cubble,
suitable for temporal operations, face_spatial()
turns a long cubble back
into a nest cubble for spatial operations. The two operations are exact
inverse.
face_temporal(data, col)
## S3 method for class 'temporal_cubble_df'
face_temporal(data, col)
## S3 method for class 'spatial_cubble_df'
face_temporal(data, col)
face_spatial(data)
## S3 method for class 'spatial_cubble_df'
face_spatial(data)
## S3 method for class 'temporal_cubble_df'
face_spatial(data)
data |
a cubble object |
col |
a character (or a symbol), the list column to be expanded,
|
a cubble object
cubble: An R Package for Organizing and Wrangling Multivariate Spatio-Temporal Data
cb_long <- climate_mel |> face_temporal()
cb_back <- cb_long |> face_spatial()
identical(climate_mel, cb_back)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.