combine_clean_bt_list_dbs | R Documentation |
Generally not needed if you parse all files at once, but can be useful if combining data extracted at multiple times or across multiple directories
combine_clean_bt_list_dbs(la, lb)
la |
a Clean BT List DB object |
lb |
another Clean BT List DB object |
a Clean BT List DB object that contains all elements from 'la' and 'lb'
data_dir <- system.file('extdata', package = 'babyTimeR')
baby_dann_db_nov <- read_one_bt_activity_file(
infile = file.path(data_dir, 'activity_Dann_202411.txt')
) |>
clean_bt_list_db()
baby_dann_db_dec<- read_one_bt_activity_file(
infile = file.path(data_dir, 'activity_Dann_202412.txt')
) |>
clean_bt_list_db()
baby_dann_db <- combine_clean_bt_list_dbs(
baby_dann_db_nov,
baby_dann_db_dec
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.