<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body><p><span style="padding: 3px 10px; border-radius: 5px; color: #ffffff; font-weight: bold; display: inline-block; background-color: #ff0000;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;External Email - Use Caution&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></p><p></p>
<div dir="ltr" text-align="left">
<div></div>
<div data-ogsc="" style="">
<div>
<div style="direction: ltr;">2. Re: 1 Samp Cluster (Eric Larson)</div>
<div style="direction: ltr;"></div>
</div>
<div><br>
</div>
<div dir="ltr" style="text-align: left;"><br>
</div>
<div dir="ltr" style="text-align: left;">Even setting a different threshold returns no clusters.&nbsp;</div>
<div dir="ltr" style="text-align: left;"><br>
</div>
<div class="ms-outlook-ios-signature">
<div style="direction: ltr;">Jason Geller, Ph.D. </div>
<div style="direction: ltr;">Postdoctoral Scholar</div>
<div style="direction: ltr;">The University of Iowa </div>
<div><br>
</div>
<div><br>
</div>
</div>
</div>
<div id="id-1c20a4e8-5e80-4508-9504-9db787e6647f" class="ms-outlook-mobile-reference-message">
<hr style="display: inline-block; width: 98%; font-family: -webkit-standard; font-size: 12pt; color: rgb(0, 0, 0);" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif"><b>From:</b> mne_analysis-bounces@nmr.mgh.harvard.edu &lt;mne_analysis-bounces@nmr.mgh.harvard.edu&gt; on behalf of mne_analysis-request@nmr.mgh.harvard.edu &lt;mne_analysis-request@nmr.mgh.harvard.edu&gt;<br>
<b>Sent:</b> Wednesday, October 30, 2019 7:01 PM<br>
<b>To:</b> mne_analysis@nmr.mgh.harvard.edu<br>
<b>Subject:</b> [External] Mne_analysis Digest, Vol 141, Issue 37
<div>&nbsp;</div>
</font></div>
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from text --><style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style><font size="2"><span style="font-size:11pt;">
<div class="PlainText">Send Mne_analysis mailing list submissions to<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mne_analysis@nmr.mgh.harvard.edu<br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis">
https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis</a><br>
or, via email, send a message with subject or body 'help' to<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mne_analysis-request@nmr.mgh.harvard.edu<br>
<br>
You can reach the person managing the list at<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mne_analysis-owner@nmr.mgh.harvard.edu<br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Mne_analysis digest...&quot;<br>
<br>
<br>
Today's Topics:<br>
<br>
&nbsp;&nbsp; 1. Re: Computing Connectivity 1Samp Cluster (Eric Larson)<br>
&nbsp;&nbsp; 2. Re: 1 Samp Cluster (Eric Larson)<br>
&nbsp;&nbsp; 3. DICS beamformer (Ramakrishnan, Nithya)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 30 Oct 2019 12:21:39 -0400<br>
From: Eric Larson &lt;larson.eric.d@gmail.com&gt;<br>
Subject: Re: [Mne_analysis] Computing Connectivity 1Samp Cluster<br>
To: Discussion and support forum for the users of MNE Software<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;mne_analysis@nmr.mgh.harvard.edu&gt;<br>
Message-ID:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CAGu2niW6Hn_o1q_uaRgk9wwd_w4XoePBK05_dA9Byu-BJx40Sw@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; External Email - Use Caution&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
<br>
&gt;<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; inverse_operator = read_inverse_operator(inverse &#43; subject &#43;<br>
&gt; '-inv.fif') # each subject inv file<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; stcs_morph = mne.compute_source_morph(src,subject_to,<br>
&gt;<br>
&gt; subjects_dir=subjects_dir).apply(stcs)<br>
&gt;<br>
<br>
Here the &quot;spacing&quot; parameter controls the destination source space. The<br>
default is &quot;5&quot;, which means &quot;ico-5 source space for fsaverage&quot;, which has<br>
20484 total vertices. If you look at `stcs_morph.vertices`, it should be a<br>
list of two arrays, each array containing np.arange(10242) (fsaverage is<br>
special in that its ico-5 source space consists of the first 10242 vertices<br>
in each hemisphere).<br>
<br>
If you want to use your ico-6 fsaverage source space (which has 8196<br>
vertices) as the destination, you'd want to do something like:<br>
<br>
src_fs = mne.read_source_spaces(path6 &#43;'fsaverage-oct-6-src.fif')<br>
morpher = mne.compute_source_morph(src, subject_to,<br>
spacing=[src_fs[0]['vertno'], src_fs[1]['vertno']])<br>
stcs_morph = morpher.apply(stcs)<br>
<br>
Eric<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20191030/782fa503/attachment-0001.html">
http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20191030/782fa503/attachment-0001.html</a>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Wed, 30 Oct 2019 12:23:52 -0400<br>
From: Eric Larson &lt;larson.eric.d@gmail.com&gt;<br>
Subject: Re: [Mne_analysis] 1 Samp Cluster<br>
To: Discussion and support forum for the users of MNE Software<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;mne_analysis@nmr.mgh.harvard.edu&gt;<br>
Message-ID:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;CAGu2niV-XetnOSOmvhtYjR7mVra9U_Jua14EAiYtZAddFX&#43;sfw@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; External Email - Use Caution&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
<br>
&gt;<br>
&gt; When running 1 Samp Cluster on the difference between two conditions, the<br>
&gt; H1 Stat always comes back as min =&nbsp; 0 and max = 0 with no clusters found.<br>
&gt; Now, it is possible that there is no difference between the conditions, but<br>
&gt; given the fact that min and max are both 0 has me concerned I did something<br>
&gt; wrong. Any insight?<br>
&gt;<br>
<br>
It suggests that no source points survive the initial thresholding due to<br>
`threshold`. if you look at the &quot;t_obs&quot; output, you should see that no<br>
points exceed your threshold. You can decrease it so it actually has some<br>
points to cluster.<br>
<br>
Eric<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20191030/66b7ebdc/attachment-0001.html">
http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20191030/66b7ebdc/attachment-0001.html</a>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Thu, 31 Oct 2019 00:00:42 &#43;0000<br>
From: &quot;Ramakrishnan, Nithya&quot; &lt;nramakri@bcm.edu&gt;<br>
Subject: [Mne_analysis] DICS beamformer<br>
To: &quot;mne_analysis@nmr.mgh.harvard.edu&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;mne_analysis@nmr.mgh.harvard.edu&gt;<br>
Message-ID:<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;DM5PR0601MB3592384CD3DBDF67636C1DE5CD630@DM5PR0601MB3592.namprd06.prod.outlook.com&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; External Email - Use Caution&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>
<br>
Hi,<br>
<br>
I am working on getting some source estimates from my resting state MEG data using the DICS beamformer. In order to do that, I am computing the CSD matrix and the DICS spatial filter. I read in a few papers that computed the DICS beamformer using only the gradiometers
 and I found some information that if we were to mix sensors, we would need to use a covariance matrix. Is this accurate? And if I were to use only the gradiometers, would it be better/faster to select the gradiometer data when computing the CSD matrix?<br>
<br>
Thanks<br>
<br>
Nithya Ramakrishnan<br>
Senior Scientific Programmer<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20191031/fa093548/attachment.html">
http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20191031/fa093548/attachment.html</a>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Mne_analysis mailing list<br>
Mne_analysis@nmr.mgh.harvard.edu<br>
<a href="https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis">https://mail.nmr.mgh.harvard.edu/mailman/listinfo/mne_analysis</a><br>
<br>
End of Mne_analysis Digest, Vol 141, Issue 37<br>
*********************************************<br>
</div>
</span></font></div>
</div>
</body>
</html>