tsl_to_df {distantia} | R Documentation |
Transform Time Series List to Data Frame
Description
Transform Time Series List to Data Frame
Usage
tsl_to_df(tsl = NULL)
Arguments
tsl |
(required, list) Time series list. Default: NULL |
Value
data frame
See Also
Other tsl_management:
tsl_burst()
,
tsl_colnames_clean()
,
tsl_colnames_get()
,
tsl_colnames_prefix()
,
tsl_colnames_set()
,
tsl_colnames_suffix()
,
tsl_count_NA()
,
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()
Examples
tsl <- tsl_simulate(
n = 3,
rows = 10,
time_range = c(
"2010-01-01",
"2020-01-01"
),
irregular = FALSE
)
df <- tsl_to_df(
tsl = tsl
)
names(df)
nrow(df)
head(df)
[Package distantia version 2.0.2 Index]