I want to delete the first row of a tibble. How do I do this? Can someone help?
Input
A B C
1 2 3
4 5 6
Output
A B C
4 5 6
I tried to do lapply with the subset function (choose from second element onwards) to each column of the tibble but it does not work.