I have a date value stored as a string in the following format: (Day_of_week
Month
Day
, Year
). I would like to remove the day of the week so the final format is: (Month
Day
, Year
)
mydata <- data.frame(Date=c("Tuesday, September 19, 2017",
"Friday, April 20,2018"),
Date_Exp=c("September 19, 2017",
"April 20,2018"))