This function converts data from a xts object to a tbl_df(). Note that the dataframe must be of type xts and ordered by a date column. This date column will be preserved and save as "date".

xts_tbl(xts)

Arguments

xts

A xts series that will be converted to a tbl_df().

Value

A tbl_df() with the first column the "date" column used to order the xts series by.

Examples

if (FALSE) { library(dplyr) data(TRI) df_xts_tbl <- TRI %>% tbl_xts(., cols_to_xts = TRI, spread_by = Country) %>% xts_tbl() }