Anyway, in Matlab, it's pretty easy to just import the whole lot as text format. I think I still have some matlab code, if you need it:
names=0;
Filenames{1}='Collision 1i-201-1.gazedata';
nSubjects = size(Filenames,2);
for cSubject = 1: nSubjects
disp(['Subject ' num2str(cSubject) ' of ' num2str(nSubjects) ' reading data']);
[EyeData.Subject,EyeData.Session, EyeData.ID, EyeData.TETTime, EyeData.RTTime, EyeData.CursorX, EyeData.CursorY, EyeData.TimestampSec, EyeData.TimestampMicrosec, EyeData.XGazePosLeftEye, EyeData.YGazePosLeftEye, EyeData.XCameraPosLeftEye, EyeData.YCameraPosLeftEye, EyeData.DiameterPupilLeftEye, EyeData.DistanceLeftEye, EyeData.ValidityLeftEye, EyeData.XGazePosRightEye, EyeData.YGazePosRightEye, EyeData.XCameraPosRightEye, EyeData.YCameraPosRightEye, EyeData.DiameterPupilRightEye, EyeData.DistanceRightEye, EyeData.ValidityRightEye, EyeData.Subject, EyeData.TrialNum, EyeData.WhichTask, EyeData.Proc, EyeData.StartPosModCue, EyeData.StartPosModTarget, EyeData.DistractorHidden, EyeData.TargetHitsCue, EyeData.DistractorHitsCue, EyeData.Phase, EyeData.TaskTime, EyeData.ACC, EyeData.RT, EyeData.TargetX, EyeData.TargetY, EyeData.CueX, EyeData.CueY, EyeData.DistractorX, EyeData.DistractorY]=textread(Filenames{cSubject}, '%f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %s %s %f %f %f %f %f %s %f %f %f %f %f %f %f %f %f', 'delimiter', '\t','headerlines',1);
End
%Notice that Filenames here only contains one. Furthermore, these gazedata files are Tobii text files, pretty much the same as exported .edat files. \t is tab-based delimiter, and the whole lot is imported in various variable names in MatLab.
Hope that helps, sorry for the difficult-to-read code (matlab does that, I find).
Cheers,
Mich
Michiel Spapé
Research Fellow
Perception & Action group
University of Nottingham
School of Psychology
From or to matlab?
Tried anything like that?
Best,
AW
--
You received this message because you are subscribed to the Google Groups "E-Prime" group.
To post to this group, send email to e-p...@googlegroups.com.
To unsubscribe from this group, send email to e-prime+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/e-prime?hl=en.
This message has been checked for viruses but the contents of an attachment
may still contain software viruses which could damage your computer system:
you are advised to perform your own checks. Email communications with the
University of Nottingham may be monitored as permitted by UK legislation.
-- David McFarlane, Professional Faultfinder
Even selecting a few columns and Edit->Copy can crash it.
Anyone have any advice? This is happening on 3 different machines, all of which with 4+ gb of RAM.
I do like the Analyze features, but since data manipulations before I get there cause crashes which produce unusable data files about half the time, I'm getting a bit frustrated.
Best,
Andrew
Which version of Windows are you using, and which version of E-Prime?
I haven't had crashing problems myself and deal with files >40k lines
all the time. I'm using E-Prime 2.0.8.22 (mostly), on Windows XP.
One note, if you have any special characters in your columns (e.g. text
from other languages), this will cause E-Data-Aid to crash as soon as
you try to filter (or possibly select) columns.
Anyway this seems like a perfect situation to use E-Prime's online
support facility:
http://support.pstnet.com/e%2Dprime/support/login.asp
They are very helpful in troubleshooting problems like this - although
they seem to be deluged with requests (expect ~7-10 days waiting time).
good luck,
David V
--
David Vinson, Ph.D.
Senior Postdoctoral Researcher
Cognitive, Perceptual and Brain Sciences Research Department
University College London
26 Bedford Way, London WC1H 0AP
Tel +44 (0)20 7679 5311 (UCL internal ext. 25311)
Michiel Spapé
Research Fellow
Perception & Action group
University of Nottingham
School of Psychology
Hi Andrew,
good luck,
David V
--
You received this message because you are subscribed to the Google Groups "E-Prime" group.
To post to this group, send email to e-p...@googlegroups.com.
To unsubscribe from this group, send email to e-prime+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/e-prime?hl=en.
This message and any attachment are intended solely for the addressee and may contain confidential information. If you have received this message in error, please send it back to me, and immediately delete it. Please do not use, copy or disclose the information contained in this message or in any attachment. Any views or opinions expressed by the author of this email do not necessarily reflect the views of the University of Nottingham.
In posting this reminder I also changed the the thead topic back to
"Data extraction from edat file".
-- David McFarlane, Professional Faultfinder
No special characters in my files, though the problem may be that I'm working with around 215K rows.
This is on WinXP, and the latest E-prime 2 installers.
It also started getting really bad after I had done a bunch of changing data - e.g. I have a column called "Group" that was all filled in with "1" and I selected different subjects (using filters) to name them more appropriate things.. I was able to select subsets of my 40 subjects with the filtering, and cut-paste to change "1" to a text word, but about the time I finished that the files became unusably unstable.
I'll probably try working with subsets of my data and then pasting it back together when doing the stats..
Others have suggested that I should use Excel's pivot tables instead of E-DataAid'd Analyze feature - will read up on that (I'm doing a GLM with mixed repeated measures - some measures across time and some not, so it's a bit complicated).
Best,
Andrew