data.table (version 1.9.6)

as.data.table.xts: Efficient xts to as.data.table conversion

Description

Efficient conversion xts to data.table.

Usage

"as.data.table"(x, keep.rownames = TRUE, ...)

Arguments

x
xts to convert to data.table
keep.rownames
keep xts index as index column in result data.table
...
ignored, just for consistency with as.data.table

See Also

as.xts.data.table

Examples

Run this code
## Not run: 
# data(sample_matrix, package = "xts")
# sample.xts <- xts::as.xts(sample_matrix) # xts might not be attached on search path
# # print head of xts
# print(head(sample.xts))
# # print dt
# print(as.data.table(sample.xts))
# ## End(Not run)

Run the code above in your browser using DataCamp Workspace