Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upNot printed out this data.table when I not wanted #869
Comments
|
library(data.table) version 1.9.4 data <- data.table(v=c(2,2,3)) data[v<1, v:=3] If checking is FALSE, then print out all data.table. |
|
It's very hard to understand what you're trying to say here. I'm guessing it's about automatic printing when using |
|
Yes. It's a follow up from off list with me. I been struggling with it for a while but think there's a reasonable solution that fixes the knitr printing issue as well ... |
|
It still prints for
My system info:
|
|
It's fine in my Mac and win7. Can you provide the session info? 发自我的 iPhone
|
|
Session Info
|
|
I reinstall the package and test the code below. It's perfectly fine. So, I have no idea. I suggest you close all the R sessions, reinstall the package, and execute the code below. library(data.table)
tmp <- data.table(a = 1:4)
tmp[, b := 1:4] |
If had some check and it is TRUE, then in variable
estimcreate new variable a with value 1.But automatically printed out data.table.
Can some something to do that not printed out this
data.tablewhen I not wanted?