比较这种行为,
df <- data.frame(a11111 = rnorm(5,0), b11111= rnorm(5,0))
df$a # pressing tab at this instance auto-completes a11111
df$a # hitting return at this instance returns the value for a11111
这种行为:
library(data.table)
dt <- data.table(df)
dt[,a # pressing tab at this instance does not auto-complete a11111
dt[,a # pressing return at this instance returns an 'object not found' error
dt$a # behaves like how it does for the data frame
我假设退货有效,因为x$name
相当于x[["name", exact = FALSE]]
?但是,我不明白自动完成的行为。由于data.table
语法是基于的[
,它是否实用和/或可能dt[,a <tab/return>
像这样工作dt$a<tab/return>
?
我在 Windows 7 64 位上运行 Rstudio 0.97.551 和 R 版本 3.0.1。