[R] require help
Berend Hasselman
bhh at xs4all.nl
Sat Sep 16 08:55:33 CEST 2017
> 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 ...
> $ wlth: num 60.3 60.5 60.2 60.1 60.7 ...
> --
Second try to do what you would like (I hope and think)
Using Eric's sample data
<code>
zdf <- data.frame(year=2001:2010, cnsm=sample(170:180,10,replace=TRUE),
incm=rnorm(10,53,1), wlth=rnorm(10,60,1))
zdf
# R ts
zts <- ts(zdf[,-1], start=zdf[1,"year"])
zts
# turn data into a zoo timeseries and an xts timeseries
library(zoo)
z.zoo <- as.zoo(zts)
z.zoo
library(xts)
z.xts <- as.xts(zts)
z.xts
</code>
Berend Hasselman
> 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.
More information about the R-help
mailing list