#' M3-Competition quarterly data
#'
#' The quarterly time series from the M3 forecasting competition.
#'
#' @format M3 is a list of 2 data.frames of 756 quarterly time series from M3-Competition.
#'
#' First list element is the data.frame with the following structure:
#' \describe{
#' \item{series}{Name of the series}
#' \item{category}{The category of series. Possible values for M3 are "DEMOGRAPHIC", "FINANCE", "INDUSTRY",
#' "MACRO", "MICRO", "OTHER".}
#' \item{value}{A time series (the historical data(training data) + the future data (test data))}
#' \item{timesatmp}{The timestamp of series (qarterly period)}
#' }
#'
#' Second list element is the data.frame with the following structure:
#' \describe{
#' \item{serie}{Name of the series}
#' \item{category}{The category of series. Possible values for M3 are "DEMOGRAPHIC", "FINANCE", "INDUSTRY",
#' "MACRO", "MICRO", "OTHER".}
#' \item{actual}{The future data (test data) or actual values of each time series from M3-Competition quarterly data}
#' \item{method}{The forecasting methods for each time series from M3-Competition uarterlydata}
#' \item{forecast}{The forecast values of future from difference forecasting methods for each time series from M3-Competition quarterly data}
#' \item{horizon}{The forecast horizons for each time series from M3-Competition quarterly data}
#' \item{timesatmp}{The timestamp of series (quarterly period)}
#' }
#' @author Andrey Davydenko, Maxim and Sai Van Cuong from Volgograd State Technical University
#' @seealso \code{\link{plot.ts}}
#' @source
#' \url{https://github.com/svcuonghvktqs/M3FORA}.
#'
#' @keywords datasets
#' @examples
#'
#' M3Quart[[1]][1:5,]
#' M3Quart[[2]][1:5,]
#' subset(M3Quart[[1]], series == "Q1")
#' subset(M3Quart[[2]], method == "HOLT")
#' plot.ts(M3Quart, series_id = "Q1")
"M3Quart"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.