Description Usage Arguments Value Author(s) See Also Examples
This function returns a tibble of all the values that are not NA
1 |
df |
The data frame or tibble to process |
... |
The columns that must not have NA values |
A tibble where the columns (...
) are not NA
zekrom_vale
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
1 2 3 | y=1:100;
df=tibble(x=y, y=if_else(y>50, NA_integer_, y))
filter_not_na(df, y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.