I have the following data.frame
that I would like to covert into an xts()
object but have been breaking my head trying to figure out how to format the times:
The data is arranged from recent (at the top) to oldest (at the bottom). The problem is that every row is not consistent with the format so I am having trouble trying to format it in a way that each row will display the correct date & time.
Desired output for Date/Time Column:
01/05/17 02:55 PM
01/05/17 11:40 AM
01/05/17 07:00 AM
12/30/16 05:50 PM
12/29/16 07:03 AM
12/30/16 07:00 AM
DATA:
data <- structure(list(Date = c("Jan-05-17 02:55PM", "11:40AM", "07:00AM",
"Dec-30-16 05:50PM", "Dec-29-16 07:03AM", "07:00AM"), News = c("ENTEROMEDICS INC Files SEC form 8-K, Other Events, Financial Statements and Exhibits +89.95%",
"Why These 5 Biopharma Stocks Are Making Massive Gains on Thursday",
"EnteroMedics Announces vBloc® Neurometabolic Therapy Now Available at MedStar Health and Roper St. Francis PR Newswire",
"Why U.S. Steel, EnteroMedics, and McEwen Mining Slumped Today at Motley Fool -18.03%",
"Splits Calendar: EnteroMedics splits before market open today (70:1 ratio)",
"EnteroMedics Announces Retirement of All Senior Convertible Notes PR Newswire"
), Symbol = c("ETRM", "ETRM", "ETRM", "ETRM", "ETRM", "ETRM")), .Names = c("Date",
"News", "Symbol"), row.names = c(NA, 6L), class = "data.frame")
Use
sub
to replace a digit at the start ofDate
withNA
followed by space followed by the digit. From that useread.table
to create a 2 column data frame with the date (orNA
) in column 1 and the time in column 2. Fill in theNA
values usingna.locf
givingDF2
. Nowcbind
DF2
anddata[-1]
reading the data.frame so created usingread.zoo
. Finally convert the resulting"zoo"
object to"xts"
.