Hi Nils,
This has come up before. It will be fixed by the new file format in
version 1.74 (not out yet). You can convert your existing data, using
the psydat files with something like the following. If you get an error
about psydat files not loading (you may well if you updated psychopy
lately) then I'll need to send an additional tweak.
Jon
from psychopy import gui, misc, core, misc
import os
files = gui.fileOpenDlg('.')
if len(files)==0:
core.quit()
for filename in files:
#load data
dat = misc.fromFile(filename)
#get file name from complete path
baseFilename = os.path.split(filename)[1]
baseFilename = os.path.splitext(baseFilename)[0]
#save as 'long wide' format
dat.saveAsWideText('longWide/'+baseFilename+'.csv', delim=',')
> these blocks � 30 trials formed a meta-block).
>
>
> I would apreciate it very much if someone could give me a hand with
> this... or even provide a more comprehensive demo-script.
>
>
> With best regards,
>
> Nils Kl�ckner
> Berlin Institut of Technology
>
--
Jonathan Peirce
Nottingham Visual Neuroscience
http://www.peirce.org.uk
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.
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.