I have a dataframe column containing character dates ( it is a SAS dataset that I'm reading in R) with formats such as "27JUN2022" "28JUN2022" "29JUN2022" "30JUN2022" "01JUL2022" "02JUL2022" "03JUL2022" etc.(equivalent to date9. format of SAS). when I convert it into numeric dates by mutate(as.Date( dataframe$variable, "%Y-%m-%d"), it gives NA as result. I have checked there is no NA in the column.
Is there any possible solution exists? the desired output is to simply convert the column in to numeric date.
Thank you very much in advance.