View source: R/list2dataframe.R
list2Dataframe | R Documentation |
Convert a list of different time series to a dataframe. Usually the list is the output of
extractPeriod
NOTE: Since it's dataframe, so the dataframes in the input datalist should have the same
date, if not, please use extractPeriod
to process.
list2Dataframe(datalist)
datalist |
A list containing different time series, each sub list has to have the same length. |
The converted dataframe
# open file attached in the package.
file <- system.file("extdata", "testdl.txt", package = "hyfo")
datalist <- dget(file) # read list file.
datalist_new <- extractPeriod(datalist, commonPeriod = TRUE)
dataframe <- list2Dataframe(datalist_new)
# More examples can be found in the user manual on https://yuanchao-xu.github.io/hyfo/
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.