reorder_frame.Rd
You'd expect data[order,]
to "just work". It doesn't for data frames with a single column,
which happens for annotation data, hence the need for this function. Sigh.
reorder_frame(frame, order)
frame | A data frame to reorder the rows of. |
---|---|
order | An array containing indices permutation to apply to the rows. |
The data frame with the new row orders.
#> [1] 1 3 2#> foo #> 1 1 #> 3 3 #> 2 2