prep_remove_from_cache {dataquieR} | R Documentation |
Remove a specified element from the data frame cache
Description
Remove a specified element from the data frame cache
Usage
prep_remove_from_cache(object_to_remove)
Arguments
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 |
Value
nothing
See Also
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()
Examples
## 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)
[Package dataquieR version 2.5.1 Index]