Skip to contents

Converts Inf, -Inf, and NaN to NA (via tsl_Inf_to_NA() and tsl_NaN_to_NA()), and counts the total number of NA cases in each time series.

Usage

tsl_count_NA(tsl = NULL)

Arguments

tsl

(required, list) Time series list. Default: NULL

Value

list

Examples

#tsl with no NA cases
tsl <- tsl_simulate()

tsl_count_NA(tsl = tsl)
#> $A
#> [1] 0
#> 
#> $B
#> [1] 0
#> 

#tsl with NA cases
tsl <- tsl_simulate(
  na_fraction = 0.3
)

tsl_count_NA(tsl = tsl)
#> $A
#> [1] 144
#> 
#> $B
#> [1] 120
#> 

#tsl with variety of empty cases
tsl <- tsl_simulate()
tsl[[1]][1, 1] <- Inf
tsl[[1]][2, 1] <- -Inf
tsl[[1]][3, 1] <- NaN
tsl[[1]][4, 1] <- NaN

tsl_count_NA(tsl = tsl)
#> $A
#> [1] 4
#> 
#> $B
#> [1] 0
#>