R/face-spatial-temporal.R
face.Rd
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)
a cubble object
cb_long <- climate_mel |> face_temporal()
cb_back <- cb_long |> face_spatial()
identical(climate_mel, cb_back)
#> [1] TRUE