Message-ID: <0249DE6B-4A43-463D-BD74-485239771CCC@xs4all.nl>
Date: 2017-09-15T14:35:02Z
From: Berend Hasselman
Subject: require help
In-Reply-To: <CACdLcRy9Jqe0UMRCzHW5wcDk2zGoc-7SQ0SFO6M-jmAgXrHyRg@mail.gmail.com>
> On 15 Sep 2017, at 11:38, yadav neog <yadavneog at gmail.com> wrote:
>
> hello to all. I am working on macroeconomic data series of India, which in
> a yearly basis. I am unable to convert my data frame into time series.
> kindly help me.
> also using zoo and xts packages. but they take only monthly observations.
>
> 'data.frame': 30 obs. of 4 variables:
> $ year: int 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 ...
> $ cnsm: num 174 175 175 172 173 ...
> $ incm: num 53.4 53.7 53.5 53.2 53.3 ...
It shouldn't be difficult.
Example:
tsdata <- data.frame(year=c(2000,2002,2003), x=c(1,2,3),y=c(10,11,12))
xy.ts <- as.ts(tsdata)
library(zoo)
as.zoo(xy.ts)
Berend Hasselman
> $ wlth: num 60.3 60.5 60.2 60.1 60.7 ...
> --
> Yadawananda Neog
> Research Scholar
> Department of Economics
> Banaras Hindu University
> Mob. 9838545073
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.