Page History: Data Report
Compare Page Revisions
Page Revision: 2012/09/21 19:04
All data is exported in Excel Format, allowing for simple data analysis in a standard statistical package. Once the information that will be contained in the report is defined, simply navigating to
Actions-Report to Excel on the main menu allows for the export of the latest experiment results.
Report is a variable which is always present (a fixed parameter), and the Column Headings that will be defined in Excel merely need to be designated. Upon execution of the snippet that holds the report information, the values that are defined will be added to the text file which eventually compiles the report.
Once an appropriate code snippet box is identified, the report headings can be defined simply by the code: Report= "list of all column headings". For example this may include the following:
Report="Participant Name; Total Trials; Correct Trials; RT; Response Button;".
Once the column headings have been defined, the data source for each trial needs to be defined using the actual variable lables as defined in the experiment, and converting true/false expressions into integers as necessary.
<nowiki>Report=SubjectName+";"+TotalTrialCount+";"+TrialCount+";"+RT+";"+ResponseButton;