Skip to contents

Removes any pin set by obr_pin(). After unpinning, get_efo_fiscal() and get_efo_economy() revert to resolving the most recent live EFO via the dynamic URL resolver.

Usage

obr_unpin()

Value

Invisibly returns the previously pinned vintage (or NULL if no pin was set).

Examples

# \donttest{
op <- options(obr.cache_dir = tempdir())
obr_pin("March 2025")
#>  Pinned EFO to "March 2025".
obr_unpin()
#>  Unpinned EFO (was "March 2025").
options(op)
# }