Detect the name of the months (in French)
pr_detect_months(df, col)
df | a dataframe |
---|---|
col | the column containing the text |
a tibble with the number of days detected by the algo
a <- data.frame(month = c("C'est lundi 1er mars et mardi 2", "Et mercredi 3", "Il est revenu en juin.")) pr_detect_months(a, month)#> # A tibble: 3 x 3 #> month months n_months #> * <fct> <list> <int> #> 1 C'est lundi 1er mars et mardi 2 <chr [1]> 1 #> 2 Et mercredi 3 <chr [0]> 0 #> 3 Il est revenu en juin. <chr [1]> 1