-
Notifications
You must be signed in to change notification settings - Fork 145
ds105 fmri example with single runs being fit #275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
jonathan-taylor
commented
Jun 10, 2013
- Modified the FIAC example to start trying to analyze https://openfmri.org/dataset/ds000105
- Added a block_design function, and options to output individual terms for an experimental factor.
for j in range(1,13): | ||
yield i, j | ||
|
||
ace_vs_scrambled_t/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this stuff meant to be here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is legacy from the FIAC example. I just changed the getruns() to match
the subjects/runs of this study. So, the answer is, probably not.
On Tue, Jun 11, 2013 at 9:03 AM, Matthew Brett [email protected]:
In examples/ds105/parallel_run.py:
- if _client is None:
_client = parallel.Client()
mydir = os.path.split(os.path.abspath(**file**))[0]
def cd(path):
import os
os.chdir(path)
_client[:].apply_sync(cd, mydir)
- return _client
+def getruns():
- for i in range(1,7):
for j in range(1,13):
yield i, j
+ace_vs_scrambled_t/
Is this stuff meant to be here?
—
Reply to this email directly or view it on GitHubhttps://github.com//pull/275/files#r4637010
.
Jonathan Taylor
Dept. of Statistics
Sequoia Hall, 137
390 Serra Mall
Stanford, CA 94305
Tel: 650.723.9230
Fax: 650.725.8977
Web: http://www-stat.stanford.edu/~jtaylo
Guys - any progress here? It would be good to merge this soon? |
Haven't done much since last commit. Not sure what I can / should do to Jonathan On Mon, Aug 12, 2013 at 11:43 AM, Matthew Brett [email protected]:
Jonathan Taylor |
def getruns(): | ||
for i in range(1,7): | ||
for j in range(1,13): | ||
yield i, j |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
may be just
getruns = itertools.product(range(1, 7), range(1, 13))
?
OK - I guess we should just merge this one and do more edits with more pull requests. Any objections? |
I'm fine with it. |
MRG: ds105 fmri example with single runs being fit * Modified the FIAC example to start trying to analyze https://openfmri.org/dataset/ds000105 * Added a block_design function, and options to output individual terms for an experimental factor.