简体   繁体   中英

R's data.table can not find the function “.”

I read that data.table understands the dot "." as an alias of "list". But:

> dt <- data.table(x = c(11, 22), y = c("f", "b"))
> dt
    x y
1: 11 f
2: 22 b
> dt[,.(y)]
Error in eval(expr, envir, enclos) : could not find function "."
>

Why is that?

According to the data.table New features on v.1.9.4 ( https://github.com/Rdatatable/data.table ),

.() can now be used in j and is identical to list(), for consistency with i.

So, it is better to install either v.1.9.4 version or the devel version from here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM