为啥我的数字变量有日期以及如何将整个内容转换为 xts?
Posted
技术标签:
【中文标题】为啥我的数字变量有日期以及如何将整个内容转换为 xts?【英文标题】:Why does my numeric variable have dates and how do I convert the whole thing to xts?为什么我的数字变量有日期以及如何将整个内容转换为 xts? 【发布时间】:2021-10-25 10:10:37 【问题描述】:我的输出头部看起来像这样;当我执行 str(output) 时,它似乎是维数为 1 的数字,我似乎无法提取日期,显然 xts(output) 没有日期就无法工作。
2018-01-02 2018-01-03 2018-01-04 2018-01-05 2018-01-08 2018-01-09 2018-01-10
0.000 6511.339 6575.760 6584.575 6653.247 6676.615 6677.939 6662.670
【问题讨论】:
【参考方案1】:看来你有一个命名向量:
# create the vector `vector` with your values
vector <- c(6511.339, 6575.760, 6584.575, 6653.247, 6676.615, 6677.939, 6662.670)
# check vector (not named now)
vector
# add names to vector
names(vector) <- c("2018-01-02", "2018-01-03", "2018-01-04", "2018-01-05",
"2018-01-08"," 2018-01-09", "2018-01-10")
# now check named vector
vector
# get the names of the vector
names(vector)
#output:
[1] "2018-01-02" "2018-01-03" "2018-01-04" "2018-01-05" "2018-01-08" " 2018-01-09"
[7] "2018-01-10"
【讨论】:
您可能需要添加xts(vector, order.by = as.Date(names(vector)))
以上是关于为啥我的数字变量有日期以及如何将整个内容转换为 xts?的主要内容,如果未能解决你的问题,请参考以下文章
无分隔线纯数字日期如何转换为斜杠、横杠、点分隔以及文字日期?