Created
January 29, 2025 11:11
-
-
Save agricolamz/23684509cead7f566dcb48b0b92272a4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
phonfieldwork::read_from_folder("...") |> | |
filter(tier == 2, | |
content != "") |> | |
mutate(dur = time_end-time_start) |> | |
summarise(duration_minutes = sum(dur)/60) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment