Hi i have some troubles concerning the strptime() function, i have character data like:
data2[,1]
24-feb-15
26-ene-15
29-dic-14
i try to use srtptime() :
strptime(data2[,1], "%d-%b-%y")
but unfortunately it only works for 24-feb-15, i guess its because the other months are spanish abbreviated, so R doesn't recognize them, i have a lot of observations so i want to find a way to do it without changing manually the name of the months. Thanks for your help.
JDaniel