face_temporal {cubble} | R Documentation |
Pivot a cubble object between the nested/long (spatial/temporal) form
Description
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.
Usage
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)
Arguments
data |
a cubble object |
col |
a character (or a symbol), the list column to be expanded,
|
Value
a cubble object
Examples
cb_long <- climate_mel |> face_temporal()
cb_back <- cb_long |> face_spatial()
identical(climate_mel, cb_back)
[Package cubble version 0.3.2 Index]