Description Usage Arguments Value Examples
Length of an Object (Excluding Missing Values)
1 | length_nona(x, na.rm = TRUE)
|
x |
Array of numeric data. |
na.rm |
logical. Should missing values (including NaN) be removed? |
A number representing the number of non-missing values in an array.
1 2 3 4 | length_nona(nycflights13::flights$air_time)
### Compare this result to the following
length(nycflights13::flights$air_time)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.