Conditionally drop rows
Closed this issue · 0 comments
Nelson-Gon commented
Description
Drop rows with x% missing
Similar Features
This may be similar to column_based_recode
or drop_na_if
but for rows not columns.
Feature Details
Given a data.frame
:
df <- data.frame(A=rep(NA,4), B=c(rep(NA,3),1))
I would like to keep rows that only have an x% of observed values.
Proposed Implementation
None yet.