orderCompletely: Order a data.frame by missingness and all columns

View source: R/dataframe.R

orderCompletelyR Documentation

Order a data.frame by missingness and all columns

Description

Completely order all rows in a data.frame.

Usage

orderCompletely(observed)

Arguments

observed

a data.frame holding ordered factors in every column

Value

the sorted order of the rows

Examples

df <- as.data.frame(matrix(c(sample.int(2, 30, replace=TRUE)), 10, 3))
mask <- matrix(c(sample.int(3, 30, replace=TRUE)), 10, 3) == 1
df[mask] <- NA
df[orderCompletely(df),]

rpf documentation built on Aug. 22, 2023, 1:06 a.m.