Nothing
#' Transform Time Series List to Data Frame
#'
#' @param tsl (required, list) Time series list. Default: NULL
#'
#' @return data frame
#' @export
#' @autoglobal
#' @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)
#' @family tsl_management
tsl_to_df <- function(
tsl = NULL
){
utils_check_args_tsl(
tsl = tsl,
min_length = 1
)
df_list <- lapply(
X = tsl,
FUN = function(x){
data.frame(
name = attributes(x)$name,
time = zoo::index(x),
as.data.frame(x)
)
}
)
df <- do.call(
what = "rbind",
args = df_list
)
rownames(df) <- NULL
df
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.