I have a variable with dates from the year 1960 to 2000 (dd/mm/yy) which are encoded as character, and I am trying to convert them into dates using the next expression:
MUJERES$Fecha_nacimiento <- as.Date(MUJERES$Fecha_nacimiento, "%d/%m/%y")
Using this script, some years convert for example from "8/8/68" into "2060-08-08".
How can I convert this into the correct year (1960 instead of 2060)?