You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DT = data.table(myname = 1, some_var = 2)
DT[somevar == 2]
# Error in eval(.massagei(isub), x, parent.frame()) :
# object 'somevar' not found
Should be easy enough to run adist on names(DT) (or also ls()) to suggest some potential misspellings. Nothing too sophisticated of course, maybe just look within levensthein distance of 2 or 3. Truncated to 10 options or so in case there are numbered columns.
The text was updated successfully, but these errors were encountered:
Consider:
Should be easy enough to run
adist
onnames(DT)
(or alsols()
) to suggest some potential misspellings. Nothing too sophisticated of course, maybe just look within levensthein distance of 2 or 3. Truncated to 10 options or so in case there are numbered columns.The text was updated successfully, but these errors were encountered: