sortDataFrame: Sorting a data frame by a key

Description Usage Arguments Value Author(s) References Examples

Description

A simple function to sort a data frame based on a certain keyword. This function was posted by r-fanatic at a dzone forum (the webpage is not available anymore).

Usage

1
sortDataFrame(x, key, ...)

Arguments

x

The data frame to be sorted.

key

The key by which the data frame will be sorted.

...

Further arguments to be passed to the order function.

Value

The sorted data frame.

Author(s)

r-fanatic

References

The original webpage where r-fanatic posted the code is not available as of 3rd April 2017.

Examples

1
2
3
4
5
# Create a simple data frame and order using the "B" key
ppp <- data.frame(A=1:10,B=10:1)
ppp
sortDataFrame(ppp,"B")
ppp

RCEIM documentation built on May 1, 2019, 10:29 p.m.