View source: R/add_info_guests_in_database.R
add_info_guests_in_database | R Documentation |
Add information about guests in the database
add_info_guests_in_database(info_to_add, data_guests)
info_to_add |
Tibble. Information to be added. |
data_guests |
Tibble. Initial table. |
Tibble.
info_to_add_in_data_guests <- tibble::tibble( name = c("David", "Margot"), here_cocktail = rep("Yes", 2), here_diner = rep("Yes", 2), here_sunday = rep("Yes", 2), special_diet = c(NA_character_, "I am vegan"), menu_diner = rep("Adult", 2), time_confirmation = rep("2021-04-22 09:57:12 CEST", 2) ) data(data_guests_example) add_info_guests_in_database(info_to_add = info_to_add_in_data_guests, data_guests = data_guests_example)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.