tsadd: Adds two TS objects together

Description Usage Arguments Value Examples

Description

Adds two TS objects together

Usage

1
tsadd(series1, series2)

Arguments

series1

A ts object

series2

A ts object

Value

The new ts object.

Examples

1
2
3
4
temp <- c(1:14)
Series1 <- ts(temp,start=c(2016,1),frequency = 12)
Series2 <- ts(temp,start=c(2016,1),frequency = 12)
SeriesA <- tsadd(series1=Series1,series2=Series2)

thelinkan/tsl documentation built on May 31, 2019, 9:48 a.m.