Hello,
I am trying to sort a data frame of approximately 1500 interviews by invite date and completion date. I see that the "sort" command isn't what I need, but I'm having a difficult time getting the "order" command to work. I've read the help page, but it is a little difficult to grasp which is the relevant example.
The code I am using is:
sorted.df <- unsorted.df[order(int.data, comp.date), ]
Any help would be appreciated.



