Let's say that I want to delete the data in ith row and jth col in a data table by setting it to NULL:
dt[i, j := NULL,with=F]
set(dt1,i,j,value=NULL)
Both of the above options gave me the error: When deleting columns, i should not be provided
However if I don't provide i , the entire column in the data table gets deleted, which is not what I want.
So how do I delete a single value in a datatable?