multiplyr (version 0.1.1)

arrange: Sort data

Description

Sorts data frame using the columns specified

Usage

arrange(.self, ...)
arrange_(.self, ..., .dots)

Arguments

.self
Data frame
...
Additional parameters
.dots
Workaround for non-standard evaluation

Value

Data frame

Details

This function takes a parallel data frame and sorts it by the first column specified. If there are any ties then it sorts by the second, and so on. Use desc(x) to specify that x should be sorted in descending order (see desc).

See Also

Other row manipulations: distinct, filter, group_by, slice

Examples

Run this code

dat <- Multiplyr (x=1:100, G=rep(1:4, each=25))
dat %>% arrange (x)
dat %>% arrange (G, x)
dat %>% shutdown()

Run the code above in your browser using DataLab