Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am a beginner in R and I have tried to find information about the following without finding anything.

The green graph in the picture is composed by the red and yellow graphs. But let's say that I only have the data points of something like the green graph. How do I extract the low/high frequencies (i.e. approximately the red/yellow graphs) using a low pass/high pass filter?

low frequency sinus curve with high frequency sinus curve modulated onto

Update: The graph was generated with

number_of_cycles = 2
max_y = 40

x = 1:500
a = number_of_cycles * 2*pi/length(x)

y = max_y * sin(x*a)
noise1 = max_y * 1/10 * sin(x*a*10)

plot(x, y, type="l", col="red", ylim=range(-1.5*max_y,1.5*max_y,5))
points(x, y + noise1, col="green", pch=20)
points(x, noise1, col="yellow", pch=20)

Update 2: Using the Butterworth filter in the signal package suggested I get the following:

Original picture with filtered graphs added

library(signal)

bf <- butter(2, 1/50, type="low")
b <- filter(bf, y+noise1)
points(x, b, col="black", pch=20)

bf <- butter(2, 1/25, type="high")
b <- filter(bf, y+noise1)
points(x, b, col="black", pch=20)

The calculations was a bit work, signal.pdf gave next to no hints about what values W should have, but the original octave documentation at least mentioned radians which got me going. The values in my original graph was not chosen with any specific frequency in mind, so I ended up with the following not so simple frequencies: f_low = 1/500 * 2 = 1/250, f_high = 1/500 * 2*10 = 1/25 and the sampling frequency f_s = 500/500 = 1. Then I chose a f_c somewhere inbetween the low and high frequencies for the low/high pass filters (1/100 and 1/50 respectively).

share|improve this question
If you give us a reproducible example, eg the data / code you used for the graph, people will be able to help you more easily. It would help to show us what you tried until now. – Joris Meys Aug 18 '11 at 10:33
2  
To add : the signal package contains all kind of filters for this : cran.r-project.org/web/packages/signal/signal.pdf – Joris Meys Aug 18 '11 at 10:35
this is in any case a far too broad programming question. You should at least specify which filter you want to use. There is a whole number of options which may or may not make sense on your real data. – Joris Meys Aug 18 '11 at 17:31
@Joris Please make your comment about signals into an answer, and I'll accpet that. It was what I was looking for (though I find that I have to do a massive relearning of what I learned about filters years ago...). – hlovdal Aug 19 '11 at 0:33
thx for the update. I added an answer. – Joris Meys Aug 19 '11 at 8:26

3 Answers

up vote 1 down vote accepted

Per request of OP:

The signal package contains all kinds of filters for signal processing. Most of it is comparable to / compatible with the signal processing functions in Matlab/Octave.

share|improve this answer

Check out this link where there's R code for filtering (medical signals). It's by Matt Shotwell and the site is full of interesting R/stats info with a medical bent:

biostattmat.com

The package fftfilt contains lots of filtering algorithms that should help too.

share|improve this answer
3  
there's a package for that. Copying a manual implementation of a very basic filter from which you don't know whether it would actually perform, is not a good idea. – Joris Meys Aug 18 '11 at 10:38

I am not shure if any filter is the best way for You. More useful instrument for that aim is the fast Fourier transformation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.