Detect the name of the days (in French)

pr_detect_days(df, col)

Arguments

df

a dataframe

col

the column containing the text

Value

a tibble with the number of days detected by the algo

Examples

a <- data.frame(jours = c("C'est lundi 1er mars et mardi 2", "Et mercredi 3", "Il est revenu jeudi.")) pr_detect_days(a, jours)
#> # A tibble: 3 x 3 #> jours days n_days #> * <fct> <list> <int> #> 1 C'est lundi 1er mars et mardi 2 <chr [2]> 2 #> 2 Et mercredi 3 <chr [1]> 1 #> 3 Il est revenu jeudi. <chr [1]> 1