na.cumsum {quickcode} | R Documentation |
Cumulative Sum with NA Removal
Description
This function calculates the cumulative sum of a numeric vector, removing any 'NA' values before computation.
Usage
na.cumsum(x)
Arguments
x |
A numeric vector for which the cumulative sum is to be calculated. |
Value
A numeric vector representing the cumulative sum with 'NA' values removed. Returns an empty vector if the input is empty or contains only 'NA' values.
Examples
# Example with numeric vector
numeric_vector <- c(1, 2, NA, 4, 5)
na.cumsum(numeric_vector)
# Example with all NAs
na.cumsum(c(NA, NA))
[Package quickcode version 1.0.8 Index]