Google+
Join free weekly webinars
Find us on

Archives

Archives / 2013 / June
  • In the previous versions of EventIDE data collection in trials had to be coded manually. It was not a difficult task, because saving of multiple variables could be done in one code line:

     

    Report=TrialNumber+";"+BlockNumber+";"+ConditionNumber+";"+RT;

     

    The Report variable represents a built-in file storage for data collection in EventIDE. Text data is saved there each time, when assignment of a new string is done to the Report variable. Although being pretty flexible, this approach requires forming verbose string expressions (like one above), in which recorded variables are interleaved with separator characters. While writing an expression, it’s easy to make a typo or miss necessary quotas. In addition, conversion of variable values to string (albeit automatic in C#) is also not very intuitive in the above example. 

    A new element, which allows to automate data collection, is introduced in the latest version of EventIDE. The element is called Reporter, it  provides a visual designer for collecting and recording data blocks (in rows or columns) made of selected global or proxy variables.