Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is related to assignment by reference versus copying in data.table. I want to know if one can delete rows by reference, similar to

DT[,someCol:=NULL]

I want to know about

DT[someRow:=NULL, ]

I guess there's a good reason for why this function doesn't exist, so maybe you could just point out a good alternative to the usual copying approach, as below. In particular, going with my favourite from example(data.table),

DT = data.table(x=rep(c("a","b","c"),each=3), y=c(1,3,6), v=1:9)
     x y v
[1,] a 1 1
[2,] a 3 2
[3,] a 6 3
[4,] b 1 4
[5,] b 3 5
[6,] b 6 6
[7,] c 1 7
[8,] c 3 8
[9,] c 6 9

say I want to delete the first row from this data.table. I know I can do this

DT = DT[-1, ]

but often we may want to avoid that, because we are copying the object (and that requires about 3*N memory, if N object.size(DT), as pointed out here. Now I found set(DT,i,j,value). I know how to set specific values (like here: set all values in rows 1 and 2 and columns 2 and 3 to zero)

set(DT,1:2,2:3,0) 
DT
     x y v
[1,] a 0 0
[2,] a 0 0
[3,] a 6 3
[4,] b 1 4
[5,] b 3 5
[6,] b 6 6
[7,] c 1 7
[8,] c 3 8
[9,] c 6 9

but how can I erase the first two rows, say? Doing

set(DT,1:2,1:3,NULL)

sets the entire DT to NULL.

My SQL knowledge is very limited, so you guys tell me: given data.table uses SQL technology, is there an equivalent to the SQL command

DELETE FROM table_name
WHERE some_column=some_value

in data.table?

share|improve this question
6  
I don't think it is that data.table() uses SQL technology so much as one can draw a parallel between the different operations in SQL and the various arguments to a data.table. To me, the reference to "technology" somewhat implies that data.table is sitting on top of a SQL database somewhere, which AFAIK is not the case. – Chase May 28 '12 at 21:15
thanks chase. yeah, i guess that sql analogy was a wild guess. – Florian Oswald May 29 '12 at 21:44

2 Answers

Good question. data.table can't delete rows by reference yet.

data.table can add and delete columns by reference since it over-allocates the vector of column pointers, as you know. The plan is to do something similar for rows and allow fast insert and delete. A row delete would use memmove in C to budge up the items (in each and every column) after the deleted rows. Deleting a row in the middle of the table would still be quite inefficient compared to a row store database such as SQL, which is more suited for fast insert and delete of rows wherever those rows are in the table. But still, it would be a lot faster than copying a new large object without the deleted rows.

On the other hand, since column vectors would be over-allocated, rows could be inserted (and deleted) at the end, instantly; e.g., a growing time series.

share|improve this answer
thanks matthew. good to know there is not some fundamental reason that prevents you from implementing this. good stuff. see you around! – Florian Oswald May 29 '12 at 21:43
5  
Looking forward to this shipping... – Sim Dec 19 '12 at 6:06
@Matthew Dowle Is there some news on this ? – statquant Apr 19 at 16:08
1  
@statquant I think I should fix the 37 bugs, and finish fread first. After that it's pretty high. – Matthew Dowle Apr 19 at 18:07
1  
@MatthewDowle sure, thanks again for everything you are doing. – statquant Apr 19 at 18:26

Instead or trying to set to NULL, try setting to NA (matching the NA-type for the first column)

set(DT,1:2, 1:3 ,NA_character_)
share|improve this answer
yeah, that works I guess. My problem is that I have a lot of data and I want to get rid of exactly those rows with NA, possibly without having to copy DT to get rid of those rows. thanks for your comment anyway! – Florian Oswald May 29 '12 at 21:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.