Closed
Description
EDIT: I'm sure this will be covered by another issue but my searching failed to find anything appropriate.
System details:
Positron and OS details:
Positron Version: 2024.11.0 build 116
Code - OSS Version: 1.93.0
Commit: Unknown
Date: 2024-11-04T10:52:59.570Z
Electron: 30.4.0
Chromium: 124.0.6367.243
Node.js: 20.15.1
V8: 12.4.254.20-electron.0
OS: Linux x64 6.11.5-300.fc41.x86_64
Interpreter details:
R 4.4.1
Describe the issue:
Using data.table I get the No symbol named
diagnostic. This differs from dplyr usage which does not seem to trigger similar diagnostics.
Steps to reproduce the issue:
Place the following in a script and view the diagnostics
library(dplyr)
library(data.table)
filter(mtcars, carb < 4)
DT <- as.data.table(mtcars)
DT[carb < 4]
Expected or desired behavior:
Similar to dplyr, no diagnostics in this situation.