This may be a very basic question but I could't find it. Let's say I have a data frame d
with row numbers in disorder like this:
Signal
4 9998
3 549
1 18
5 2.342
2 0.043
How can I sort this by increasing row index numbers to obtain the following?
Signal
1 18
2 0.043
3 549
4 9998
5 2.342