This is an example of what I want to do:
df <- data.frame(x=1:100,y=1:100)
empty_row_ids <- c(5,10)
This is the final output:
results <- rbind(data.frame(x=1:4,y=1:4),c(0,0),data.frame(x=5:8,y=5:8),c(0,0).data.frame(x=9:100,y=9:100))
Essentially, I want to insert some empty rows at some given numbers.