
I want to change the date format of trendsDataD to that of trendsDataE and also I want to change the chr to numeric inorder to merge them into a single table.

I want to change the date format of trendsDataD to that of trendsDataE and also I want to change the chr to numeric inorder to merge them into a single table.
 
    
    eg
as<- "03-jan"
as<- strptime(as,"%d-%b")
it will give
"2018-01-03 IST"
as <- format(as.Date(as),"%Y-%m-%d")
"2018-01-03"
