xts列名称建议不会显示在RStudio中

时间:2016-10-12 13:20:48

标签: r autocomplete rstudio xts

例如,如果我有一个xts对象object.xts,那么当我输入

object.xts$

在RStudio中,我没有收到列名建议下拉菜单或自动填充功能。我想知道为什么这会发生在其他对象上,而不是xts

enter image description here

1 个答案:

答案 0 :(得分:0)

我的猜测是因为没有.DollarNames.xts方法。将此功能复制/粘贴到R会话后尝试:

.DollarNames.xts <- function(x, pattern = "") {
  grep(pattern, colnames(x), value = TRUE)
}