Join the audio and video dataframes into one big dataframe
join_full_audio_video.Rd
Join the audio and video dataframes into one big dataframe
Usage
join_full_audio_video(
audiostats,
videostats,
output_name = NULL,
keep_na = FALSE,
keep_comments = FALSE
)
Examples
if (FALSE) { # \dontrun{
audiomonths <- concat_month_bl("../basiclevel_dataprep/all_bl/", "output/", "audio")
audiostats <- concat_all_bl(audiomonths, "all_audio.csv")
videomonths <- concat_month_bl("../basiclevel_dataprep/all_bl/", "output/", "video")
videostats <- concat_all_bl(videomonths, "all_video.csv")
joined_data <- join_full_audio_video(audiostats, videostats)
} # }