View source: R/prep_remove_from_cache.R
| prep_remove_from_cache | R Documentation |
Remove a specified element from the data frame cache
prep_remove_from_cache(object_to_remove)
object_to_remove |
character name of the object to be removed as character string (quoted), or character vector containing the names of the objects to remove from the cache |
nothing
Other data-frame-cache:
prep_add_data_frames(),
prep_get_data_frame(),
prep_list_dataframes(),
prep_load_folder_with_metadata(),
prep_load_workbook_like_file(),
prep_purge_data_frame_cache()
## Not run:
prep_load_workbook_like_file("meta_data_v2") #load metadata in the cache
ls(.dataframe_environment()) #get the list of dataframes in the cache
#remove cross-item_level from the cache
prep_remove_from_cache("cross-item_level")
#remove dataframe_level and expected_id from the cache
prep_remove_from_cache(c("dataframe_level", "expected_id"))
#remove missing_table and segment_level from the cache
x<- c("missing_table", "segment_level")
prep_remove_from_cache(x)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.