rdataframesorting

How to sort data by column in descending order in R


I've looked and looked and the answer either does not work for me, or it's far too complex and unnecessary.

I have data, it can be any data, here is an example

chickens <- read.table(textConnection("
feathers beaks
2   3
6   4
1   5
2   4
4   5
10  11                               
9   8
12  11
7   9
1   4
5   9
"), header = TRUE)

I need to, very simply, sort the data for the 1st column in descending order. It's pretty straightforward, but I have found two things below that both do not work and give me an error which says:

"Error in order(var) : Object 'var' not found.

They are:

chickens <- chickens[order(-feathers),]

and

chickens <- chickens[sort(-feathers),]

I'm not sure what I'm not doing, I can get it to work if I put the df name in front of the varname, but that won't work if I put an minus sign in front of the varname to imply descending sort.

I'd like to do this as simply as possible, i.e. no boolean logic variables, nothing like that. Something akin to SPSS's

SORT BY varname (D)

The answer is probably right in front of me, I apologize for the basic question.

Thank you!


Solution

  • You need to use dataframe name as prefix

    chickens[order(chickens$feathers),]  
    

    To change the order, the function has decreasing argument

    chickens[order(chickens$feathers, decreasing = TRUE),]