The time series in the data.frame may be stored either rowwise or columnswise. The identifying column must be called date (for columnwise) or series (for rowwise)
wide_to_ts(data, keep_last_freq_only = FALSE, force_xts = FALSE)
data.frame The data.frame to be transformed
in case there is a frequency change in a time series, should only the part of the series be returned that has the same frequency as the last observation. This is useful when data start out crappy and then stabilize after a while. Defaults to FALSE. Hence only the last part of the series is returned.
boolean force xts format? Defaults to FALSE.