This functions asks users which columns in the dataframe they would like to keep
and records this appropriately in the metadata. The input data is assumed to be
in wide format.
The output may require additional manual editing.
metadata_add_locations(dataset_id, location_data, user_responses = NULL)
Arguments
- dataset_id
Identifier for a particular study in the database
- location_data
A dataframe of site variables
- user_responses
Named list containing simulated user input for manual selection
of variables, mainly for testing purposes
Examples
if (FALSE) { # \dontrun{
austraits$locations %>% dplyr::filter(dataset_id == "Falster_2005_1") %>%
select(-dataset_id) %>% spread(location_property, value) %>% type_convert() -> location_data
metadata_add_locations("Falster_2005_1", location_data)
} # }