How can I delete every n-th row from a dataframe in R?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You could create a function as follows
Let's test it out
|
|||||
|
|
|
If you want to get the each of the nth columns from a data frame or vector etc use modulo subsetting... Select the nth columns by repeating sets here as modulo of 3 (choose nth as you desire)
etc... |
|||
|
|
df[seq(1, NROW(df), by = n),]– Ramnath Oct 30 '11 at 0:17df[-seq(n, NROW(df), by = n),]might work better – Henry Oct 30 '11 at 0:26