-
Hello I have seen that for practice questions the following iat_type can be used for example: In the score calculation this will not be used since the values for the calculation are filtered by the iat_type for example: So the calculation is always dependent on the filter as I understood. Just want to verify this :) Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Without seeing more of the code I don't think I can conclusively verify this, but what you've described seems accurate. If you run If you want to double check this, you could use the |
Beta Was this translation helpful? Give feedback.
Without seeing more of the code I don't think I can conclusively verify this, but what you've described seems accurate.
If you run
jsPsych.data.get().filter({iat_type: 'bad-old'})
then you will get aDataCollection
with only the trials that containdata: {iat_type: 'bad-old'}
.If you want to double check this, you could use the
count()
method on the resultingDataCollection
to check that the correct number of trials are in the collection.