I have data of dates chosen from csv excel file and it has the format of day/month/year
DateAchat=DataAch[which((nchar(as.character(DataAch$FrontOfficeUser_ld))==5)),"CreationDate"]
head(DateAchat)
[1] 07/03/2015 07/03/2015 07/03/2015 07/03/2015 07/03/2015 08/03/2015
Then, I want to add 30 days to the first date for example. I get no correct result
as.Date(DateAchat[1])+30
[1] "0007-04-19"
I didn't understand why I get like this??