-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mdrasche
committed
Jan 21, 2015
1 parent
1e16de0
commit 43819c4
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from pandas import DataFrame | ||
from memtask.proc import ProcShow, RecBox, run_task | ||
from psychopy import visual, core, event | ||
|
||
df = DataFrame.from_csv('example/trials/simple_span.csv') | ||
print df | ||
win = visual.Window([800,600]) | ||
P = ProcShow(win) | ||
R = RecBox(win, pos = [0, 0]) | ||
proc_dict = {'learn': P, | ||
'recall': R | ||
} | ||
run_task([row for ii, row in df.iterrows()], proc_dict) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Pillow==2.7.0 | ||
PsychoPy==1.81.03 | ||
gnureadline==6.3.3 | ||
ipython==2.3.1 | ||
numpy==1.9.1 | ||
pandas==0.15.2 | ||
pyglet==1.2alpha1 | ||
python-dateutil==2.4.0 | ||
pytz==2014.10 | ||
scipy==0.15.0 | ||
six==1.9.0 | ||
wsgiref==0.1.2 |