Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt. Name: nicht verf?gbar URL: https://stat.ethz.ch/pipermail/r-help/attachments/20070420/d7792b17/attachment.pl
There are some examples here: library(zoo) ?aggregate.zoo and also in vignette("zoo") On 4/19/07, Soare Marcian-Alin <soarealin at gmail.com> wrote:> Hello Everybody, > > How can I filter a dataset? > > Im trying to filter the dataset EuStockMarkets monthly and quarter. > > data(EuStockMarkets) > ftse = EuStockMarkets[,4] > > Alin > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at stat.math.ethz.ch 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. >
>>>>> "Soare" == Soare Marcian-Alin <soarealin at gmail.com> >>>>> on Fri, 20 Apr 2007 01:32:30 +0200 writes:Soare> Hello Everybody, Soare> How can I filter a dataset? Have you tried help(filter) ? filter() is a standard function and mentions others. Further note that statisticians often talk of "smoothing" when engineers talks of "filtering" Soare> Im trying to filter the dataset EuStockMarkets monthly and quarter. Soare> data(EuStockMarkets) Soare> ftse = EuStockMarkets[,4] Soare> Alin