https://github.com/cran/dse
Raw File
Tip revision: 255d6b0f2bb198b3fdf1ac04a994762b381b07a7 authored by Paul Gilbert on 26 February 2020, 06:10:02 UTC
version 2020.2-1
Tip revision: 255d6b0
combine.Rd
\name{combine}
\alias{combine}
\alias{combine.default}

\title{Combine two objects.}
\description{This is a generic method to
combine two objects of the same class to make a single object of that class.
}
\usage{
    combine(e1, e2)
    \method{combine}{default}(e1, e2)
    }
\arguments{
    \item{e1, e2}{TSdata objects.}
}
\value{An object of the same class as the argument but containing both e1 and e2.}
\seealso{
tbind, combine.TSdata, combine.forecastCov 
}
\examples{
data("eg1.DSE.data.diff", package="dse")
data("eg1.DSE.data", package="dse") 
new.data.set <- combine(eg1.DSE.data.diff, eg1.DSE.data) 
}
\concept{DSE}
\keyword{ts}

back to top