I need to change/invert rows in my data frame, not transposing the data but moving the bottom row to the top and so on. If the data frame was:
1 2 3 4 5 6 7
You can reverse the order of a data.frame using the dplyr package:
dplyr
iris %>% arrange(-row_number())
Or without using the pipe-operator by doing
arrange(iris, -row_number())