filter_not_na: Filter having NAs

Description Usage Arguments Value Author(s) See Also Examples

Description

This function returns a tibble of all the values that are not NA

Usage

1

Arguments

df

The data frame or tibble to process

...

The columns that must not have NA values

Value

A tibble where the columns (...) are not NA

Author(s)

zekrom_vale

See Also

filter_na Filters a tibble where the vlaues are NA

filter_not_na Filters a tibble where the vlaues are not NA

where Filters a tibble matching regular expressions

Examples

1
2
3
y=1:100;
df=tibble(x=y, y=if_else(y>50, NA_integer_, y))
filter_not_na(df, y)

zekrom-vale/zUtil.R documentation built on June 2, 2019, 10:57 p.m.