tsl_count_NA | R Documentation |
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.
tsl_count_NA(tsl = NULL)
tsl |
(required, list) Time series list. Default: NULL |
list
Other tsl_management:
tsl_burst()
,
tsl_colnames_clean()
,
tsl_colnames_get()
,
tsl_colnames_prefix()
,
tsl_colnames_set()
,
tsl_colnames_suffix()
,
tsl_diagnose()
,
tsl_handle_NA()
,
tsl_join()
,
tsl_names_clean()
,
tsl_names_get()
,
tsl_names_set()
,
tsl_names_test()
,
tsl_ncol()
,
tsl_nrow()
,
tsl_repair()
,
tsl_subset()
,
tsl_time()
,
tsl_to_df()
#tsl with no NA cases
tsl <- tsl_simulate()
tsl_count_NA(tsl = tsl)
#tsl with NA cases
tsl <- tsl_simulate(
na_fraction = 0.3
)
tsl_count_NA(tsl = tsl)
#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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.