Message-ID: <971536df0803081136k2bf66b43le816d386bf2b13ae@mail.gmail.com>
Date: 2008-03-08T19:36:22Z
From: Gabor Grothendieck
Subject: Change the index argument of a series
In-Reply-To: <200803081838.04830.albmont@centroin.com.br>
See ?rollapply and ?rollmean in the zoo package
and ?filter and ?embed in the core of R.
On Sat, Mar 8, 2008 at 1:38 PM, Alberto Vieira Ferreira Monteiro
<albmont at centroin.com.br> wrote:
> This is probably very trivial - so I can't find an answer in the help files.
>
> When I have a series x (x[1], x[2], ... x[n]) and I want to construct a
> new series y (y[1], y[2], ... y[m]) such that y's are either interpolations
> of the x's (when m > n) or a weighted mean (when m < n), is there
> any direct function to do it?
>
> For example, passing from 3 to 4 would be the same as multiplying
> the series by the matrix:
>
> rbind(c(3/3, 0, 0),
> c(1/3, 2/3, 0),
> c(0, 2/3, 1/3),
> c(0, 0, 3/3))
>
> In the same way, passing from 4 to 3 would be the same as multiplying
> the series by the matrix
>
> rbind(c(3/4, 1/4, 0, 0),
> c(0, 2/4, 2/4, 0),
> c(0, 0, 1/4, 3/4))
>
> How can I do it in a simple way?
>
> Alberto Monteiro
>
> ______________________________________________
> R-help at r-project.org mailing list
> 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.
>