Millisecond Forums

Differences between Inquisit 3 and Inquisit 5 data

https://forums.millisecond.com/Topic20066.aspx

By mrg4 - 11/7/2016

Hi,

we recently upgraded our Inquisit 3 license to a Inquisit 5 license. As we are encountering problems while running some third-party analysis tools on our ".dat"-files, we'd like to know how the output-files differ between those versions?

We are using an ".exp"-experiment, that was programmed in Inquisit 3. If we run it with Inquisit 3, we get perfectly working data-file. If we run the same ".exp"-experiment in Inquisit 5, the analysis tool encounters a problem.
In both cases ".dat"-files (not .iqdat) are written.

Thank you very much in advance.

Best regards,
Dominik
By seandr - 11/7/2016

Hi Dominik,

The differences are
1) Inquisit 5 uses UTF-8 format whereas Inquisit 3 is non-unicode
2) Inquisit 5 no longer supports alternative formats besides tab-delimited text

So, if your data contains non-ascii characters, or you specified a different format in Inquisit 3, the data files would be different after the upgrade.

Regards,
Sean
By Dave - 11/8/2016

mrg4 - Tuesday, November 08, 2016
Hi,

we recently upgraded our Inquisit 3 license to a Inquisit 5 license. As we are encountering problems while running some third-party analysis tools on our ".dat"-files, we'd like to know how the output-files differ between those versions?

We are using an ".exp"-experiment, that was programmed in Inquisit 3. If we run it with Inquisit 3, we get perfectly working data-file. If we run the same ".exp"-experiment in Inquisit 5, the analysis tool encounters a problem.
In both cases ".dat"-files (not .iqdat) are written.

Thank you very much in advance.

Best regards,
Dominik

In addition to what Sean said, there's another difference that might trip up the analysis routines. If your *.exp uses the default data recording scheme -- i.e. no <data> element's /columns attribute specified -- *.dat files generated by Inquisit 4 and 5 will have an additional column compared to the ones generated by Inquisit 3.

The reason is the introduction of group ids as an additional option for condition assignment starting with Inquisit 4. Whereas an Inquisit 3-generated *.dat would start with the following columns

date    time    subject    build    blocknum

the Inquisit 5-generated *.dat would look like

date    time    group    subject    build    blocknum

i.e., there's an additional column, and consequently all the following variables are shifted to the right.
By mrg4 - 11/8/2016

Thanks to both of you!
I think Dave's hint might be the solution, if the program just uses the column position.
I'll try to implement a <data> element in the script and check if it works out.

Regards,
Dominik