View source: R/fig_functions.R
fig_delete | R Documentation |
These functions allow deleting values stored in the global fig instance.
fig_delete(...) fig_delete_all()
... |
Keys to be deleted. |
Reference to the global fig instance. Other methods can be chained after this one.
fig_store_many("foo" = 1, "bar" = 2, "baz" = 3) fig_delete("foo") fig_delete("bar", "baz") fig_get_many("foo", "bar", "baz") # == list(NULL, NULL, NULL) fig_store_many("foo" = 1, "bar" = 2, "baz" = 3) fig_delete_all() fig_get_many("foo", "bar", "baz") # == list(NULL, NULL, NULL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.