I’m trying to examine some data from psychopy 3.1.2 and I’m running into a problem with saveAsWideText:
In [11]: psydata.saveAsWideText('1001_psydata.txt')
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-11-b5692e6c545e> in <module>
----> 1 psydata.saveAsWideText('1001_psydata.txt')
~/opt/anaconda3/envs/psychopy/lib/python3.6/site-packages/psychopy/data/experiment.py in saveAsWideText(self, fileName, delim, matrixOnly, appendFile, encoding, fileCollisionMethod, sortColumns)
314
315 if appendFile is None:
--> 316 appendFile = self.appendFiles
317
318 # create the file or send to stdout
AttributeError: 'ExperimentHandler' object has no attribute 'appendFiles'
Here’s a link to the data since I can’t upload a psydat file: data file
Relatedly, one of the main things I want to try to find that I’m not seeing in psydata.entries is the image file presented on a specific trial, i.e., within a Builder Image component the image ‘set every repeat’. Is this recorded in the psydat or would this information only be in a .log saved at a specific level?
Thanks