Learn R Programming

hyfo (version 1.4.6)

list2Dataframe: Convert a list to a dataframe.

Description

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.

Usage

list2Dataframe(datalist)

Value

The converted dataframe

Arguments

datalist

A list containing different time series, each sub list has to have the same length.

Examples

Run this code
# 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/

Run the code above in your browser using DataLab