I'm trying to convert a string variable with Dutch dates into a date variable some example values of the original variable (date.string) : "18 sep. 2016", "29 mei 2014", "7 mrt. 2016" I tried:
df$date <- as.Date(df$dta.string, format = "%d %h %Y", locale = "dutch")
clearly I'm making a mistake since I only get NA's returned in my new column, some one any suggestion?