<div dir="ltr"><div>Thank you for responding!</div><div><br></div>Comparing my old settings to new correctly filtered ones there do not seem to be notable differences, so I will not panic for the time being.<div><br></div><div>I look  forward to the upcoming version of pop_firws. Will that be coming with eeglab 14?<div><div><br></div><div>After reading your article, it seems like larger transition bandwidths and lower filter orders provide  less-distorting roll off of the data. </div><div><br></div><div>The options I mentioned previously a .02Hz bandwidth for the highpass and 22Hz for the lowpass. In your example you listed 10Hz for the lowpass. I am wondering if I should use the shorter 10Hz, although again my own comparisons do not show large differences between the two. I do not want to filter too sharply.</div><div><br></div><div><br></div><div>Thank you, </div><div><br style="font-size:12.8px"></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">2017-02-28 5:01 GMT-05:00 Andreas Widmann <span dir="ltr"><<a href="mailto:widmann@uni-leipzig.de" target="_blank">widmann@uni-leipzig.de</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Isaiah,<br>
<span class=""><br>
> I have been closely following the recent pop_eegfiltnew filtering discussion with great interest; I would like to verify that I am filtering my datasets correctly. My goal is to bandpass filter 0.1 - 100Hz<br>
><br>
> Previously I had been using these options:<br>
> EEG = pop_eegfiltnew(EEG, 0.1, 100, 33000, 0, [], 0);<br>
> I believe I understand now that this is wrong because 1) I should not use the highpass filter order for the entire bandpass, but do them separately and 2) the input is passband edge, NOT cutoff frequency. In reality here I was filtering from 0.05 - 112.5Hz correct?<br>
</span>No, cutoff frequencies are 0.05 and 100.05. Transition bandwidth is 0.1 here. The cutoff frequency is passband edge +/- half the transition bandwidth.<br>
<br>
Compute transition band width df as ( dF / order ) * fs. dF is a constant defined by the window type. pop_eegfiltnew uses Hamming window with dF = 3.3. Thus,<br>
df = ( 3.3 / 33000 ) * 1000 = 0.1<br>
<span class=""><br>
> How worried should I be about my mistake?<br>
</span>Depends. Usually not too much, but if you have stronger low frequency noise or drifts or sharp artifacts or signal discontinuities these setting could also be problematic. I would recommend following your approach below.<br>
<span class=""><br>
> To correctly filter 0.1-100Hz (at 1kHz srate) I should:<br>
> EEG = pop_eegfiltnew(EEG, 0.2, [], 16500, 0, [], 0);<br>
> EEG = pop_eegfiltnew(EEG, [], 89, 150, 0, [], 0);<br>
> Is this accurate?<br>
</span>Yes.<br>
<br>
> I have looked at using pop_firws, but am hesitant because it does not display in the command window the cutoff freq, passband edge, etc…<br>
This is already added in the upcoming version. Will take some days/weeks still.<br>
<span class=""><br>
> and I am not certain how to define the transition bandwidth correctly here.<br>
</span>Transition bandwidth is defined by filter order. You can use the inverted equation from above or much easier press the „Estimate“ button, enter your requested transition bandwidth and get back the required filter order already filled in. For example, if want a lowpass cutoff of 100 Hz with a passband edge at 95 Hz you need a transition band width of 10 Hz (see above). Enter: cutoff 100 Hz, lowpass, Hamming window, click Estimate, enter transition bandwidth 10 Hz, click Ok, required filter order 330 (m = dF / ( df / fs ) = 3.3 / ( 10 / 1000 ) = 330) is already filled, click Plot filter responses to check whether the filter is designed as expected and apply with ok.<br>
<br>
I recommend reading<br>
<a href="http://home.uni-leipzig.de/~biocog/eprints/widmann_a2015jneuroscimeth250_34.pdf" rel="noreferrer" target="_blank">http://home.uni-leipzig.de/~<wbr>biocog/eprints/widmann_<wbr>a2015jneuroscimeth250_34.pdf</a><br>
for a hopefully accessible introduction into the basic concepts. No math or magic required :)<br>
<br>
Best,<br>
Andreas<br>
<div><div class="h5"><br>
><br>
>  I would like to thank Andreas, Jumana, Makoto, and any others for having this discussion; it has been helpful.<br>
><br>
><br>
> Thank you,<br>
> ---------- Mensaje reenviado ----------<br>
> From: Makoto Miyakoshi <<a href="mailto:mmiyakoshi@ucsd.edu">mmiyakoshi@ucsd.edu</a>><br>
> To: Andreas Widmann <<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a>><br>
> Cc: EEGLAB List <<a href="mailto:eeglablist@sccn.ucsd.edu">eeglablist@sccn.ucsd.edu</a>><br>
> Date: Tue, 7 Feb 2017 19:05:31 -0800<br>
> Subject: Re: [Eeglablist] high frequency oscillation- eeg advice<br>
> Dear Andreas and Jumana,<br>
><br>
> > (0.2 - 0.2 / 2 and 35 + 10 / 2, respectively).<br>
><br>
> This is much more understandable for I could not remember how eegfiltnew() determines the transient band width for the low-pass end.<br>
><br>
> So for the higher frequencies (above 10Hz), log scale (octaves) is not used to determine the transient band width. I guess this is related to conventional practice in EEG research.<br>
><br>
> Makoto<br>
><br>
><br>
> On Fri, Feb 3, 2017 at 5:26 PM, Andreas Widmann <<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a>> wrote:<br>
> I hope it is ok to keep the discussion on-list. It might be interesting also for others.<br>
><br>
> > Thanks again. I wanted to follow Steve Luck's ERP advice and filter between 0.1 as a half amplitude cutoff - 30/40Hz. I went for 40. What does this mean in terms of EEGlab's passband edge?<br>
> You only have to shift the passband edge by half the transition band width. In your case I would double the transition band width for the high-pass part to reduce the order.<br>
><br>
>       if EEG.srate == 256;<br>
>           EEG = pop_eegfiltnew(EEG, 0.2,[], 4224, 0, [], 1);<br>
>           EEG = pop_eegfiltnew(EEG, [], 35, 86, 0, [], 0);<br>
>       elseif EEG.srate == 1000;<br>
>           EEG = pop_eegfiltnew(EEG, 0.2,[], 16500, 0, [], 0);<br>
>           EEG = pop_eegfiltnew(EEG, [], 35, 330, 0, [], 0);<br>
>       end<br>
><br>
> will give you 0.1 Hz high-pass and 40 Hz low-pass cutoff frequencies (0.2 - 0.2 / 2 and 35 + 10 / 2, respectively). In general it is easier to directly use the windowed sinc filter function to specify the cutoff (but will give the identical result here if used with Hamming window).<br>
><br>
> > I also wanted to follow Makoto's advice of using 1 Hz filter for running ICA (I apply the weights to 0.1). Was I therefore incorrect to use 1-40Hz as a passband edge?<br>
> I assume this also referred to cutoff frequency rather than passband edge (similar as in the Winkler et al., 2015, publication). However, I think the impact is limited here.<br>
><br>
> Best,<br>
> Andreas<br>
><br>
> > Best wishes,<br>
> > Jumana<br>
> ><br>
> > -----Original Message-----<br>
> > From: Andreas Widmann [mailto:<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a><wbr>]<br>
> > Sent: 03 February 2017 15:03<br>
> > To: Ahmad, Jumana <<a href="mailto:jumana.ahmad@kcl.ac.uk">jumana.ahmad@kcl.ac.uk</a>><br>
> > Cc: <a href="mailto:mmiyakoshi@ucsd.edu">mmiyakoshi@ucsd.edu</a>; <a href="mailto:eeglablist@sccn.ucsd.edu">eeglablist@sccn.ucsd.edu</a><br>
> > Subject: Re: [Eeglablist] high frequency oscillation- eeg advice<br>
> ><br>
> > Filters need transition bands separating passband and stopband. For FIR filters the cutoff frequency is in the center of the transition band. In pop_eegfiltnew you specify passband edges but reported are most commonly the cutoff frequencies. You compute cutoff frequency as passband edge  +/- transition band width / 2, here 0.1 - 0.1 / 2 and 40 + 10 / 2. Transition band width is reported in the console output of pop_eegfiltnew and can also be computed manually from order. See<br>
> > <a href="https://emea01.safelinks.protection.outlook.com/?url=http:%2F%2Fhome.uni-leipzig.de%2F~biocog%2Feprints%2Fwidmann_a2015jneuroscimeth250_34.pdf&data=01%7C01%7Cjumana.ahmad%40kcl.ac.uk%7Cf50ed9fcf01b42b49aee08d44c45bef8%7C8370cf1416f34c16b83c724071654356%7C0&sdata=GxppGkTzfuGeht3gOpalHbv2dG5%2FhJwmOJFD5%2BCaj8M%3D&reserved=0" rel="noreferrer" target="_blank">https://emea01.safelinks.<wbr>protection.outlook.com/?url=<wbr>http:%2F%2Fhome.uni-leipzig.<wbr>de%2F~biocog%2Feprints%<wbr>2Fwidmann_<wbr>a2015jneuroscimeth250_34.pdf&<wbr>data=01%7C01%7Cjumana.ahmad%<wbr>40kcl.ac.uk%<wbr>7Cf50ed9fcf01b42b49aee08d44c45<wbr>bef8%<wbr>7C8370cf1416f34c16b83c72407165<wbr>4356%7C0&sdata=<wbr>GxppGkTzfuGeht3gOpalHbv2dG5%<wbr>2FhJwmOJFD5%2BCaj8M%3D&<wbr>reserved=0</a><br>
> > for an introduction into the basic concepts (and also the equations to compute transition band width and order).<br>
> ><br>
> > Hope this helps,<br>
> > Andreas<br>
> ><br>
> >> Am 03.02.2017 um 15:49 schrieb Ahmad, Jumana <<a href="mailto:jumana.ahmad@kcl.ac.uk">jumana.ahmad@kcl.ac.uk</a>>:<br>
> >><br>
> >> Would it be 40Hz low pass? I am unsure why 0.1 has been halved but 40 hasn't?<br>
> >> Thank you,<br>
> >> Jumana<br>
> >><br>
> >><br>
> >> -----Original Message-----<br>
> >> From: Andreas Widmann [mailto:<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a><wbr>]<br>
> >> Sent: 03 February 2017 14:45<br>
> >> To: Ahmad, Jumana <<a href="mailto:jumana.ahmad@kcl.ac.uk">jumana.ahmad@kcl.ac.uk</a>><br>
> >> Cc: <a href="mailto:mmiyakoshi@ucsd.edu">mmiyakoshi@ucsd.edu</a>; <a href="mailto:eeglablist@sccn.ucsd.edu">eeglablist@sccn.ucsd.edu</a><br>
> >> Subject: Re: [Eeglablist] high frequency oscillation- eeg advice<br>
> >><br>
> >> Yes, that looks ok. Be aware that passband edge and not cutoff frequency is specified in pop_eegfiltnew (for backward compatibility). Report these filters as 0.05 Hz high-pass and 45 Hz low-pass (incl. specs: zero-phase Hamming windowed sinc FIR, order, and optimally transition band width).<br>
> >><br>
> >> Best,<br>
> >> Andreas<br>
> >><br>
> >>> Am 02.02.2017 um 13:00 schrieb Ahmad, Jumana <<a href="mailto:jumana.ahmad@kcl.ac.uk">jumana.ahmad@kcl.ac.uk</a>>:<br>
> >>><br>
> >>> Thank you both for your explanation.<br>
> >>><br>
> >>> Does this therefore look reasonable:<br>
> >>><br>
> >>>       if EEG.srate == 256;<br>
> >>><br>
> >>>           EEG = pop_eegfiltnew(EEG, 0.1,[], 8448, 0, [], 1);<br>
> >>>           EEG = pop_eegfiltnew(EEG, [], 40, 86, 0, [], 0);<br>
> >>><br>
> >>>       elseif EEG.srate == 1000;<br>
> >>>           EEG = pop_eegfiltnew(EEG, 0.1,[], 33000, 0, [], 0);<br>
> >>>           EEG = pop_eegfiltnew(EEG, [], 40, 330, 0, [], 0);<br>
> >>>       end<br>
> >>><br>
> >>> I have different sample rates. I work with a very large dataset recorded with different systems.<br>
> >>> Best wishes,<br>
> >>> Jumana<br>
> >>><br>
> >>> From: <a href="mailto:eeglablist-bounces@sccn.ucsd.edu">eeglablist-bounces@sccn.ucsd.<wbr>edu</a><br>
> >>> [mailto:<a href="mailto:eeglablist-bounces@sccn.ucsd.edu">eeglablist-bounces@<wbr>sccn.ucsd.edu</a>] On Behalf Of Makoto<br>
> >>> Miyakoshi<br>
> >>> Sent: 31 January 2017 03:29<br>
> >>> To: Andreas Widmann <<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a>><br>
> >>> Cc: <a href="mailto:eeglablist@sccn.ucsd.edu">eeglablist@sccn.ucsd.edu</a><br>
> >>> Subject: Re: [Eeglablist] high frequency oscillation- eeg advice<br>
> >>><br>
> >>> Dear Andreas,<br>
> >>><br>
> >>> Thank you for your explanations.<br>
> >>><br>
> >>>> This was just a wild guess based on experience.<br>
> >>><br>
> >>> Oh ok I see.<br>
> >>><br>
> >>>> But note that the EEGLAB iirfilt-plugin does implement an Elliptic and not a Butterworth IIR filter.<br>
> >>><br>
> >>> That's true. If I remember correctly, Elliptic filter can make theoretically the sharpest filter.<br>
> >>><br>
> >>>> In MATLAB you compute the impulse response with impz (see the code example in my previous post).<br>
> >>><br>
> >>> Yes, this is a new thing I learned this time! This function is very convenient.<br>
> >>><br>
> >>> Thanks Andreas as always.<br>
> >>><br>
> >>> Makoto<br>
> >>><br>
> >>><br>
> >>><br>
> >>> On Sat, Jan 28, 2017 at 1:26 AM, Andreas Widmann <<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a>> wrote:<br>
> >>> Dear Makoto<br>
> >>><br>
> >>>>>> A roughly equivalent Butterworth filter will have an estimated effective (numerically relevant) impulse response duration of 20592 samples (~82s!):<br>
> >>>><br>
> >>>> I tried to replicate it with EEGLAB iirfilt() but the filter order was only 6. How did you calculate this number?<br>
> >>> Not sure whether I understand the question.<br>
> >>><br>
> >>> Do you mean how I estimated the order (4) of the Butterworth filter in my example to be "roughly equivalent“ to the FIR variant? This was just a wild guess based on experience. In case necessary I could check how rough "roughly equivalent" really is. But note that the EEGLAB iirfilt-plugin does implement an Elliptic and not a Butterworth IIR filter.<br>
> >>><br>
> >>> Or do you mean the comparison of your iirfilt order (6) to the impulse response duration (20592) of my example? One cannot directly compare the order of IIR and FIR filters. This is a (unfortunately common) misconception. For FIR filters (implemented by convolution) the order equals the duration of the impulse response (minus one sample). This does not hold for IIR filters implemented *recursively*. However, even if the impulse response of IIR filters is infinite by definition in digital implementations it is practically limited by numerical precision. That is, you can compute the impulse response of a digital IIR filter which is now also finite and can be applied by convolution exactly like a FIR filter finally giving the same result (within limits of numerical precision).<br>
> >>><br>
> >>> In MATLAB you compute the impulse response with impz (see the code example in my previous post). If I remember correctly you may specify required numerical precision as an input argument to impz. I trusted the default here. You have to get the filter coefficients (b, a) of your EEGLAB iirfilt filter and feed them to impz. The length of the resulting impulse response times two is the duration to be compared to the order (or IR duration) of a FIR filter. Times two because you have to apply the non-linear phase IIR derived filter in forward and reverse direction (to get zero-phase).<br>
> >>><br>
> >>> Does this help? Best,<br>
> >>> Andreas<br>
> >>><br>
> >>>><br>
> >>>> Makoto<br>
> >>>><br>
> >>>><br>
> >>>><br>
> >>>> On Fri, Jan 27, 2017 at 2:35 PM, Andreas Widmann <<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a>> wrote:<br>
> >>>> Dear Makoto,<br>
> >>>><br>
> >>>> to my understanding these are two different and mostly unrelated issues:<br>
> >>>><br>
> >>>> (1) Recommendations for very low high-pass cutoff frequencies:<br>
> >>>> The filter implementation (IIR vs. FIR) doesn’t really matter here. It is correct that you need very long epochs to resolve these very low frequencies. However, it is not valid to reverse this conclusion. Also, for short epochs apparently small differences in cutoff frequency may matter. You do filter the continuous data, that is, epoch length does not directly influence the filter effects. High-pass filter distortions (mainly due to larger late and slow components biasing smaller early and fast components) were shown empirically several times, e.g. most convincingly by Acunzo et al.<br>
> >>>><br>
> >>>> But I agree that this issue is a matter of debate (mainly affecting ERP research). Personally, I recommend to individually adjust filter cutoffs to the properties of signal and noise. It is in principle possible to apply higher high-pass cutoff frequencies if noise level really requires this and it is properly demonstrated that filter distortions do not bias the conclusions. But people always ask for general recommendations and you have to be on the save side...<br>
> >>>><br>
> >>>> (2) IIR vs. FIR<br>
> >>>> In the first part you argue against long impulse response durations. For IIR filters these are usually even (considerably) longer. Besides other issues (as the non-linear phase property of IIR filters and its side-effects) this is the main reason why I do not recommend IIR filters for offline processing in electrophysiology/ERPs. Following your example with a slightly higher cutoff of 0.1 Hz and a Hamming windowed sinc FIR filter you will have a impulse response duration of 4127 samples (~16s). A roughly equivalent Butterworth filter will have an estimated effective (numerically relevant) impulse response duration of 20592 samples (~82s!):<br>
> >>>><br>
> >>>> [b, a]=butter(4, 0.1/125, 'high');<br>
> >>>> h = impz(b, a);<br>
> >>>> length(h)*2 % Times 2 as you have to apply the non-linear phase<br>
> >>>> filter in forward and reverse direction to achieve zero-phase<br>
> >>>> doubling the impulse response duration<br>
> >>>><br>
> >>>> Thus, if you define filter efficiency as achieved roll-off per impulse response duration (as I do) IIR filters can be considerably less efficient. Impulse response duration defines the extent the signal is convoluted and artifacts and distortions are potentially smeared.<br>
> >>>><br>
> >>>>> 0.1Hz IIR high-pass filter can be found in EEG amplifiers, so in that sense it is not strange at all.<br>
> >>>><br>
> >>>> IIR filters have their merits if high throughput and/or low delays are required. FIR filters have large delays and are computationally less efficient (there are however highly optimized implementations). Delay and throughput do not matter for offline processing but both are highly relevant in amplifiers and BCI applications. Thus, IIR filters are frequently preferred for online processing (despite non-linear phase).<br>
> >>>><br>
> >>>>> I thought it seemed a bit odd to report it like this in a paper.<br>
> >>>><br>
> >>>> I do not see a problem as long as you reason your approach.<br>
> >>>><br>
> >>>> Best,<br>
> >>>> Andreas<br>
> >>>><br>
> >>>>> Am 27.01.2017 um 21:34 schrieb Makoto Miyakoshi <<a href="mailto:mmiyakoshi@ucsd.edu">mmiyakoshi@ucsd.edu</a>>:<br>
> >>>>><br>
> >>>>> Dear Andreas,<br>
> >>>>><br>
> >>>>>>> And I still don't like 0.1Hz high-pass if you use FIR<br>
> >>>>>> Why? What is the problem?<br>
> >>>>><br>
> >>>>> Assuming people just enter '0.1' to EEGLAB default FIR filter GUI, it'll apply 0.05Hz cut-off high-pass filter with Hamming window. When the sampling rate is 250Hz, the model order it calculates is 8251, which is 33 sec long. Meanwhile, people are usually only interested in the first few hundreds milliseconds of the averaged signal. And they subtract pre-stimulus baseline mean value from the entire epoch anyway. I don't see much reason to apply 0.1-Hz high-pass filter in these cases. Of course, I saw papers discussing this issue and I have no objection, but intuitively it is still weird to me. I think the point is that people want to claim that ERP is a broadband phenomenon, but the way they demonstrate it is not satisfactory to me.<br>
> >>>>><br>
> >>>>> By the way, people often complain about our recommended -1 to 2 sec epoch to be too long, and our recommended 1-Hz high-pass filter too aggressive. But doesn't it makes more sense to apply 1-Hz high-pass filter to 3-sec epoch data, compared with applying 0.1-Hz high-pass for 0.8 sec epoch data? This kind of unbalancedness makes me feel weird.<br>
> >>>>><br>
> >>>>>> What would be your suggested alternative?<br>
> >>>>><br>
> >>>>> I thought IIR would be more reasonable for such a low cutoff frequency, but I have never tried it myself (as far as I know, clean_rawdata plugin comes with its IIR filter, which could be a part of BCILAB for online processing). It depends on your relative time scale. If I analyze hour-long resting state data to target minute-long slow changes, I would use FIR with no problem.<br>
> >>>>><br>
> >>>>> I did not know much about stability issue, but this time you made me learn it a little bit. Thank you Andreas for always pushing my back in this way.<br>
> >>>>><br>
> >>>>> Makoto<br>
> >>>>><br>
> >>>>><br>
> >>>>><br>
> >>>>> On Fri, Jan 27, 2017 at 3:28 AM, Andreas Widmann <<a href="mailto:widmann@uni-leipzig.de">widmann@uni-leipzig.de</a>> wrote:<br>
> >>>>> Dear Makoto,<br>
> >>>>><br>
> >>>>>> And I still don't like 0.1Hz high-pass if you use FIR<br>
> >>>>> Why? What is the problem? What would be your suggested alternative?<br>
> >>>>><br>
> >>>>>> (and I do not know how bad it is to use IIR... I've heard it can<br>
> >>>>>> become 'unstable' but I've never seen it myself)<br>
> >>>>> Here you go:<br>
> >>>>> [b,a]=butter(4,0.1/500,'high')<wbr>;<br>
> >>>>> isstable(b,a)<br>
> >>>>> freqz(b,a)<br>
> >>>>><br>
> >>>>> But note that possible instability is not the main problem with IIR application in electrophysiology. There are workarounds (e.g. for this example using zpk: [z,p,k]=butter(4,0.1/500,'<wbr>high'); sos=zp2sos(z,p,k); isstable(sos)).<br>
> >>>>><br>
> >>>>> Best,<br>
> >>>>> Andreas<br>
> >>>>><br>
> >>>>><br>
> >>>>>><br>
> >>>>>>> I won't be using granger causality but I will be estimating phase during ITC.<br>
> >>>>>><br>
> >>>>>> Should be ok.<br>
> >>>>>><br>
> >>>>>> Makoto<br>
> >>>>>><br>
> >>>>>> On Thu, Jan 26, 2017 at 2:12 PM, Ahmad, Jumana <<a href="mailto:jumana.ahmad@kcl.ac.uk">jumana.ahmad@kcl.ac.uk</a>> wrote:<br>
> >>>>>> Dear Makoto,<br>
> >>>>>> I actually switched to the pop eeg filt eeglab function and it now Really attenuated anything >40Hz, and my ERPs are cleaner. However I filtering between 0.1-40Hz at the same time in the GUI (I interned the high pass and low pass simultaneously). Is this OK to do? The frequency response looks OK.<br>
> >>>>>><br>
> >>>>>> The filter order was automatically set very high by the GUI, but it's continuous data and I have room without events at the beginning and end of the data so any edge effects can be disgusted. What do you think?<br>
> >>>>>><br>
> >>>>>> Also, this is for my ERP analysis- I trained ICA on a 1Hz high pass filtered set.<br>
> >>>>>> I won't be using granger causality but I will be estimating phase during ITC.<br>
> >>>>>> Best wishes, and thanks,<br>
> >>>>>> Jumana<br>
> >>>>>><br>
> >>>>>> ------------------------------<wbr>------------<br>
> >>>>>> Jumana Ahmad<br>
> >>>>>> Post-Doctoral Research Worker in Cognitive Neuroscience EU-AIMS<br>
> >>>>>> Longitudinal European Autism Project (LEAP) & SynaG Study Room<br>
> >>>>>> M1.26.Department of Forensic and Neurodevelopmental Sciences (PO<br>
> >>>>>> 23) | Institute of Psychiatry, Psychology & Neuroscience | King’s<br>
> >>>>>> College London | 16 De Crespigny Park | London SE5 8AF<br>
> >>>>>><br>
> >>>>>> Phone: 0207 848 5359| Email: <a href="mailto:jumana.ahmad@kcl.ac.uk">jumana.ahmad@kcl.ac.uk</a> | Website:<br>
> >>>>>> <a href="https://emea01.safelinks.protection.outlook.com/?url=www.eu-aims" rel="noreferrer" target="_blank">https://emea01.safelinks.<wbr>protection.outlook.com/?url=<wbr>www.eu-aims</a><br>
> >>>>>> .eu&data=01%7C01%7Cjumana.<wbr>ahmad%<a href="http://40kcl.ac.uk" rel="noreferrer" target="_blank">40kcl.ac.uk</a>%<wbr>7C15add3a4fe3049459e<br>
> >>>>>> 8a08d44c434afd%<wbr>7C8370cf1416f34c16b83c72407165<wbr>4356%7C0&sdata=9bFL<br>
> >>>>>> Fj%2FkVl61CL%<wbr>2BK749qenX14JOTzEBSNn9t9%<wbr>2BBCJUk%3D&reserved=0 |<br>
> >>>>>> Facebook:<br>
> >>>>>> <a href="https://emea01.safelinks.protection.outlook.com/?url=www.faceboo" rel="noreferrer" target="_blank">https://emea01.safelinks.<wbr>protection.outlook.com/?url=<wbr>www.faceboo</a><br>
> >>>>>> <a href="http://k.com" rel="noreferrer" target="_blank">k.com</a>%2Feuaims&data=01%7C01%<wbr>7Cjumana.ahmad%<a href="http://40kcl.ac.uk" rel="noreferrer" target="_blank">40kcl.ac.uk</a>%<wbr>7C15add3a<br>
> >>>>>> 4fe3049459e8a08d44c434afd%<wbr>7C8370cf1416f34c16b83c72407165<wbr>4356%7C0<br>
> >>>>>> &sdata=d3Z6OAcHSkY4ww7a%<wbr>2Bda2ir1pLENlcVPz%2FsDgLl%<wbr>2F51fo%3D&rese<br>
> >>>>>> rved=0<br>
> >>>>>><br>
> >>>>>> From: Makoto Miyakoshi <<a href="mailto:mmiyakoshi@ucsd.edu">mmiyakoshi@ucsd.edu</a>><br>
> >>>>>> Sent: 26 January 2017 23:49:50<br>
> >>>>>> To: Ahmad, Jumana<br>
> >>>>>> Cc: <a href="mailto:eeglablist@sccn.ucsd.edu">eeglablist@sccn.ucsd.edu</a><br>
> >>>>>> Subject: Re: [Eeglablist] high frequency oscillation- eeg advice<br>
> >>>>>><br>
> >>>>>> Dear Jumana,<br>
> >>>>>><br>
> >>>>>> It's a bad idea to perform ICA with 0.1Hz high-pass filtered data. The cutoff frequency is too low. See this page and the referenced paper.<br>
> >>>>>><br>
> >>>>>> <a href="https://emea01.safelinks.protection.outlook.com/?url=https%3A%2F" rel="noreferrer" target="_blank">https://emea01.safelinks.<wbr>protection.outlook.com/?url=<wbr>https%3A%2F</a><br>
> >>>>>> %<a href="http://2Fsccn.ucsd.edu" rel="noreferrer" target="_blank">2Fsccn.ucsd.edu</a>%2Fwiki%<wbr>2FMakoto%2527s_preprocessing_<wbr>pipeline%23<br>
> >>>>>> High-pass_filter_the_data_at_<wbr>1-Hz_.28for_ICA.2C_ASR.2C_and_<wbr>Clean<br>
> >>>>>> Line.29&data=01%7C01%7Cjumana.<wbr>ahmad%<a href="http://40kcl.ac.uk" rel="noreferrer" target="_blank">40kcl.ac.uk</a>%<wbr>7C15add3a4fe3049<br>
> >>>>>> 459e8a08d44c434afd%<wbr>7C8370cf1416f34c16b83c72407165<wbr>4356%7C0&sdata=<br>
> >>>>>> N0z4Ru6QsY24Bg4PD7FFPrfC999R8%<wbr>2F7hLVk5ZvonLDU%3D&reserved=0<br>
> >>>>>><br>
> >>>>>>> A 30Hz low pass does not help to get rid of the oscillation, which is really significant in the data.<br>
> >>>>>><br>
> >>>>>> Check the channel frequency spectra and tell me if you see peaks<br>
> >>>>>> in it. If necessary, you can cut it off using a designed low-pass<br>
> >>>>>> filter (not like Butterworth...)<br>
> >>>>>><br>
> >>>>>>> I use a butterworth filter, which is good for ERP analysis with low phase distortion.<br>
> >>>>>><br>
> >>>>>> Do not make qualitative judgement just because something is NOT a classic Butterworth. Of course, if the attenuation is small, the phase 'distortion' is small. But if such small attenuation is not useful, it does not help at all! Also, be careful with the word 'phase'. Particularly people who do not know basics of signal processing believe phase as some magical thing. If you are not performing Granger Causality Analysis or something, you don't need to be so worried about phase issue in practice.<br>
> >>>>>><br>
> >>>>>>> I also already run ICA, but in some datasets there is a very significant high frequency oscillation.<br>
> >>>>>><br>
> >>>>>><br>
> >>>>>> Remember, to eliminate this is more important than being afraid of qualitative phase issue.<br>
> >>>>>><br>
> >>>>>>> However, I can see the high frequency oscillations in my ERP, which is not ideal and now I need to try and get rid of it further.<br>
> >>>>>><br>
> >>>>>> Can I filter again on top of the data which already has already undergone ICA- I only use ICA to remove blinks?<br>
> >>>>>><br>
> >>>>>><br>
> >>>>>> You'd better to filter the data on continuous state. If you need to filter the epoched data, the half of filter length from both ends becomes unreliable.<br>
> >>>>>><br>
> >>>>>>> Should I do cleanline, although it would have to be after ICA now- I read this is not advisable.<br>
> >>>>>><br>
> >>>>>>> Should I use a notch filter?<br>
> >>>>>><br>
> >>>>>><br>
> >>>>>> If you see > 20dB line noise, Cleanline may not help. In this case, I would simply apply a designed low-pass filter, either Hamming (-50dB) or Blackman (-70dB) using firfilt(). See 'Tools' -> 'Filter the data' -> 'Windowed sinc FIR filter'.<br>
> >>>>>><br>
> >>>>>> There are different guys saying different things about data preprocessing. It is confusing, I know! The only good solution for this is to become an engineer yourself...<br>
> >>>>>><br>
> >>>>>> Makoto<br>
> >>>>>><br>
> >>>>>><br>
> >>>>>><br>
> >>>>>> On Tue, Jan 24, 2017 at 7:00 AM, Ahmad, Jumana <<a href="mailto:jumana.ahmad@kcl.ac.uk">jumana.ahmad@kcl.ac.uk</a>> wrote:<br>
> >>>>>> Hi  Everyone,<br>
> >>>>>><br>
> >>>>>> I am running a large scale ERP analysis. I filtered 1-40Hz (ICA AMICA), or 0.1-40Hz for the ERP dataset. A 30Hz low pass does not help to get rid of the oscillation, which is really significant in the data. I use a butterworth filter, which is good for ERP analysis with low phase distortion.<br>
> >>>>>><br>
> >>>>>> I also already run ICA, but in some datasets there is a very significant high frequency oscillation.<br>
> >>>>>><br>
> >>>>>> I do not use cleanline, which is not typical in the literature I have been basing my pipeline on.<br>
> >>>>>><br>
> >>>>>><br>
> >>>>>><br>
> >>>>>> However, I can see the high frequency oscillations in my ERP, which is not ideal and now I need to try and get rid of it further.<br>
> >>>>>><br>
> >>>>>> Can I filter again on top of the data which already has already undergone ICA- I only use ICA to remove blinks?<br>
> >>>>>><br>
> >>>>>> Should I do cleanline, although it would have to be after ICA now- I read this is not advisable.<br>
> >>>>>><br>
> >>>>>> Should I use a notch filter?<br>
> >>>>>><br>
> >>>>>><br>
> >>>>>><br>
> >>>>>> Any help would be appreciated.<br>
> >>>>>><br>
> >>>>>> Best wishes,<br>
> >>>>>><br>
> >>>>>> Jumana<br>
> >>>>>><br>
> >>>>>><br>
> >>>>>><br>
><br>
> --<br>
> Isaiah Innis<br>
> Indiana University '13<br>
> EEG Technician, IUB IRF<br>
><br>
</div></div>> ______________________________<wbr>_________________<br>
> Eeglablist page: <a href="http://sccn.ucsd.edu/eeglab/eeglabmail.html" rel="noreferrer" target="_blank">http://sccn.ucsd.edu/eeglab/<wbr>eeglabmail.html</a><br>
> To unsubscribe, send an empty email to <a href="mailto:eeglablist-unsubscribe@sccn.ucsd.edu">eeglablist-unsubscribe@sccn.<wbr>ucsd.edu</a><br>
> For digest mode, send an email with the subject "set digest mime" to <a href="mailto:eeglablist-request@sccn.ucsd.edu">eeglablist-request@sccn.ucsd.<wbr>edu</a><br>
<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">Isaiah Innis<br>Indiana University '13<br>EEG Technician, IUB IRF<br><br></div></div>
</div>