Description Usage Arguments Details Value Examples
Returns a register as it was at a given time, with no history and no future.
Use rr_records() for snapshots of specifically a register's schema or its
data, but without adjusting the data to the schema of the same time.
| 1 2 | 
| register | An object of class  | 
| sequence | One of  | 
| maximum | An  | 
| include_maximum | Logical, whether to include entries whose
 | 
| parse_datetimes | Logical, whether to parse ISO8601 strings as datetimes
with  | 
A record is the latest entry for a given key.  'Latest' can be either the
maximum entry-number (recommended), or the maximum timestamp.  An entry
timestamp may be NA, and may not be unique.  If the timestamp of any
entry of a given key is NA, then no record for that key will be returned.
If the timestamp is not unique, then the entry with the maximum
entry-number will be chosen.
A tibble of records (latest entry per key).
| 1 2 3 4 5 6 7 8 | country <- rr_register("country")
snapshot <- rr_snapshot(country)
nrow(country$data)
nrow(snapshot$data)
country$schema$custodian
snapshot$schema$custodian
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.