na.cumsum: Cumulative Sum with NA Removal

View source: R/aided_chatgpt.R

na.cumsumR 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))


quickcode documentation built on April 11, 2025, 5:49 p.m.