I am new to R. I have a large data set with one of the columns containing a time stamp. The format of the column content is e.g. Sat Mar 07 18:38:01 EST 2015. Now I want to create an additional column in data frame with just date. All I care about in my second column is e.g. Mar 07 2015. I tried other similar questions but they are addressing a different format. Thanks in advance !
EDIT
The problem has been resolved. The best approach is to convert it into POSIXct object and then strip time or date off of it.