Stroop Task


Author
Message
Alicia.Lec
Alicia.Lec
Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)
Group: Forum Members
Posts: 12, Visits: 46
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance
Attachments
strooptaskvictoria_couleurs.iqx (178 views, 23.00 KB)
screen.png (188 views, 4.00 KB)
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 105K
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.
Alicia.Lec
Alicia.Lec
Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)
Group: Forum Members
Posts: 12, Visits: 46
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 105K
Alicia.Lec - 3/9/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?

Okay. Please take a look at the original Stroop script:

<item colors>
/ 1 = "red"
/ 2 = "green"
/ 3 = "blue"
/ 4 = "black"
/ 5 = "yellow"
</item>

<text blue>
/ items = colors
/ color = blue
</text>

A trial is considered congruent if the display color of the stimulus is identical to the written word (the word "blue" displayed in blue color). How does the script determine this? Based on the item number:

<trial blue>
/ ontrialbegin = [values.color = "blue"]
/ stimulustimes = [0=blue]
/ posttrialpause = 250
/ validresponse = ("yellow" "green" "blue" "black" "red")
/ correctresponse = ("blue")
/ ontrialend = [
    if (text.blue.currentitemnumber == 3) {
        values.count_congruent += 1;
        values.congruence = 1

    } else {
        values.count_incongruent += 1;
        values.congruence = 2
    };
    if (text.blue.currentitemnumber == 3 && trial.blue.correct) {
        values.countcorrect_congruent += 1;
        values.sumrt_congruent += trial.blue.latency;
    } else if (text.blue.currentitemnumber != 3 && trial.blue.correct) {
        values.countcorrect_incongruent += 1;
        values.sumrt_incongruent += trial.blue.latency;
    };
]                
</trial>


That you've chosen to replace the color words with circles in your script does not change anything about that logic.
Alicia.Lec
Alicia.Lec
Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)
Group: Forum Members
Posts: 12, Visits: 46
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?

Okay. Please take a look at the original Stroop script:

<item colors>
/ 1 = "red"
/ 2 = "green"
/ 3 = "blue"
/ 4 = "black"
/ 5 = "yellow"
</item>

<text blue>
/ items = colors
/ color = blue
</text>

A trial is considered congruent if the display color of the stimulus is identical to the written word (the word "blue" displayed in blue color). How does the script determine this? Based on the item number:

<trial blue>
/ ontrialbegin = [values.color = "blue"]
/ stimulustimes = [0=blue]
/ posttrialpause = 250
/ validresponse = ("yellow" "green" "blue" "black" "red")
/ correctresponse = ("blue")
/ ontrialend = [
    if (text.blue.currentitemnumber == 3) {
        values.count_congruent += 1;
        values.congruence = 1

    } else {
        values.count_incongruent += 1;
        values.congruence = 2
    };
    if (text.blue.currentitemnumber == 3 && trial.blue.correct) {
        values.countcorrect_congruent += 1;
        values.sumrt_congruent += trial.blue.latency;
    } else if (text.blue.currentitemnumber != 3 && trial.blue.correct) {
        values.countcorrect_incongruent += 1;
        values.sumrt_incongruent += trial.blue.latency;
    };
]                
</trial>


That you've chosen to replace the color words with circles in your script does not change anything about that logic.

Okay thank you so much.

And could you tell me how to calculate the error number for training and the error number for the task.
as well as to calculate the time of completion of the task and that of the training.

So I would like to have these additional data. I suspect that I should add them at the level of the trials but I cannot find how.

I'm sorry for all of my questions, I'm just starting out on Inquisit and I still have a lot to learn.
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 105K
Alicia.Lec - 3/10/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?

Okay. Please take a look at the original Stroop script:

<item colors>
/ 1 = "red"
/ 2 = "green"
/ 3 = "blue"
/ 4 = "black"
/ 5 = "yellow"
</item>

<text blue>
/ items = colors
/ color = blue
</text>

A trial is considered congruent if the display color of the stimulus is identical to the written word (the word "blue" displayed in blue color). How does the script determine this? Based on the item number:

<trial blue>
/ ontrialbegin = [values.color = "blue"]
/ stimulustimes = [0=blue]
/ posttrialpause = 250
/ validresponse = ("yellow" "green" "blue" "black" "red")
/ correctresponse = ("blue")
/ ontrialend = [
    if (text.blue.currentitemnumber == 3) {
        values.count_congruent += 1;
        values.congruence = 1

    } else {
        values.count_incongruent += 1;
        values.congruence = 2
    };
    if (text.blue.currentitemnumber == 3 && trial.blue.correct) {
        values.countcorrect_congruent += 1;
        values.sumrt_congruent += trial.blue.latency;
    } else if (text.blue.currentitemnumber != 3 && trial.blue.correct) {
        values.countcorrect_incongruent += 1;
        values.sumrt_incongruent += trial.blue.latency;
    };
]                
</trial>


That you've chosen to replace the color words with circles in your script does not change anything about that logic.

Okay thank you so much.

And could you tell me how to calculate the error number for training and the error number for the task.
as well as to calculate the time of completion of the task and that of the training.

So I would like to have these additional data. I suspect that I should add them at the level of the trials but I cannot find how.

I'm sorry for all of my questions, I'm just starting out on Inquisit and I still have a lot to learn.

Provide your current script, please.
Alicia.Lec
Alicia.Lec
Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)
Group: Forum Members
Posts: 12, Visits: 46
Dave - 3/10/2021
Alicia.Lec - 3/10/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?

Okay. Please take a look at the original Stroop script:

<item colors>
/ 1 = "red"
/ 2 = "green"
/ 3 = "blue"
/ 4 = "black"
/ 5 = "yellow"
</item>

<text blue>
/ items = colors
/ color = blue
</text>

A trial is considered congruent if the display color of the stimulus is identical to the written word (the word "blue" displayed in blue color). How does the script determine this? Based on the item number:

<trial blue>
/ ontrialbegin = [values.color = "blue"]
/ stimulustimes = [0=blue]
/ posttrialpause = 250
/ validresponse = ("yellow" "green" "blue" "black" "red")
/ correctresponse = ("blue")
/ ontrialend = [
    if (text.blue.currentitemnumber == 3) {
        values.count_congruent += 1;
        values.congruence = 1

    } else {
        values.count_incongruent += 1;
        values.congruence = 2
    };
    if (text.blue.currentitemnumber == 3 && trial.blue.correct) {
        values.countcorrect_congruent += 1;
        values.sumrt_congruent += trial.blue.latency;
    } else if (text.blue.currentitemnumber != 3 && trial.blue.correct) {
        values.countcorrect_incongruent += 1;
        values.sumrt_incongruent += trial.blue.latency;
    };
]                
</trial>


That you've chosen to replace the color words with circles in your script does not change anything about that logic.

Okay thank you so much.

And could you tell me how to calculate the error number for training and the error number for the task.
as well as to calculate the time of completion of the task and that of the training.

So I would like to have these additional data. I suspect that I should add them at the level of the trials but I cannot find how.

I'm sorry for all of my questions, I'm just starting out on Inquisit and I still have a lot to learn.

Provide your current script, please.


Attachments
screen.png (198 views, 4.00 KB)
strooptaskvictoria_couleurs.iqx (173 views, 23.00 KB)
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 105K
Alicia.Lec - 3/10/2021
Dave - 3/10/2021
Alicia.Lec - 3/10/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?

Okay. Please take a look at the original Stroop script:

<item colors>
/ 1 = "red"
/ 2 = "green"
/ 3 = "blue"
/ 4 = "black"
/ 5 = "yellow"
</item>

<text blue>
/ items = colors
/ color = blue
</text>

A trial is considered congruent if the display color of the stimulus is identical to the written word (the word "blue" displayed in blue color). How does the script determine this? Based on the item number:

<trial blue>
/ ontrialbegin = [values.color = "blue"]
/ stimulustimes = [0=blue]
/ posttrialpause = 250
/ validresponse = ("yellow" "green" "blue" "black" "red")
/ correctresponse = ("blue")
/ ontrialend = [
    if (text.blue.currentitemnumber == 3) {
        values.count_congruent += 1;
        values.congruence = 1

    } else {
        values.count_incongruent += 1;
        values.congruence = 2
    };
    if (text.blue.currentitemnumber == 3 && trial.blue.correct) {
        values.countcorrect_congruent += 1;
        values.sumrt_congruent += trial.blue.latency;
    } else if (text.blue.currentitemnumber != 3 && trial.blue.correct) {
        values.countcorrect_incongruent += 1;
        values.sumrt_incongruent += trial.blue.latency;
    };
]                
</trial>


That you've chosen to replace the color words with circles in your script does not change anything about that logic.

Okay thank you so much.

And could you tell me how to calculate the error number for training and the error number for the task.
as well as to calculate the time of completion of the task and that of the training.

So I would like to have these additional data. I suspect that I should add them at the level of the trials but I cannot find how.

I'm sorry for all of my questions, I'm just starting out on Inquisit and I still have a lot to learn.

Provide your current script, please.


It's missing the sound file. Provide that, please.
Alicia.Lec
Alicia.Lec
Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)Associate Member (175 reputation)
Group: Forum Members
Posts: 12, Visits: 46
Dave - 3/10/2021
Alicia.Lec - 3/10/2021
Dave - 3/10/2021
Alicia.Lec - 3/10/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?

Okay. Please take a look at the original Stroop script:

<item colors>
/ 1 = "red"
/ 2 = "green"
/ 3 = "blue"
/ 4 = "black"
/ 5 = "yellow"
</item>

<text blue>
/ items = colors
/ color = blue
</text>

A trial is considered congruent if the display color of the stimulus is identical to the written word (the word "blue" displayed in blue color). How does the script determine this? Based on the item number:

<trial blue>
/ ontrialbegin = [values.color = "blue"]
/ stimulustimes = [0=blue]
/ posttrialpause = 250
/ validresponse = ("yellow" "green" "blue" "black" "red")
/ correctresponse = ("blue")
/ ontrialend = [
    if (text.blue.currentitemnumber == 3) {
        values.count_congruent += 1;
        values.congruence = 1

    } else {
        values.count_incongruent += 1;
        values.congruence = 2
    };
    if (text.blue.currentitemnumber == 3 && trial.blue.correct) {
        values.countcorrect_congruent += 1;
        values.sumrt_congruent += trial.blue.latency;
    } else if (text.blue.currentitemnumber != 3 && trial.blue.correct) {
        values.countcorrect_incongruent += 1;
        values.sumrt_incongruent += trial.blue.latency;
    };
]                
</trial>


That you've chosen to replace the color words with circles in your script does not change anything about that logic.

Okay thank you so much.

And could you tell me how to calculate the error number for training and the error number for the task.
as well as to calculate the time of completion of the task and that of the training.

So I would like to have these additional data. I suspect that I should add them at the level of the trials but I cannot find how.

I'm sorry for all of my questions, I'm just starting out on Inquisit and I still have a lot to learn.

Provide your current script, please.


It's missing the sound file. Provide that, please.

The forum does not allow me to send a sound file. How can I do ?
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 105K
Alicia.Lec - 3/10/2021
Dave - 3/10/2021
Alicia.Lec - 3/10/2021
Dave - 3/10/2021
Alicia.Lec - 3/10/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Dave - 3/9/2021
Alicia.Lec - 3/9/2021
Hello,

I would like to start over from this Stroop task but remove all congruent parameters. At the task level, there are no congruent trials, yet when calculating errors there is a calculated score for congruent errors, which I don't understand.

In addition, I would like to recover different elements: Training time, Task time, Sum of training errors, Sum of task errors.

I have tried a lot of solutions over the past few weeks but I can't seem to figure out how to remove the congruent parameters from the script and the task is still running. If you had any leads it would help me a lot,

thank you in advance

What do you mean by "removing the congruent parameters"? Please be more specific.

In fact I do not understand the parameters congruent in the task because I do not see how a circle can be congruent with a color. So in my opinion there are only incongruent trials in this task.
I would therefore like to remove :
- values.congruence
-values.count_congruent
- meanrt_C_Color
- errorrate_C_Color
- errorrate_C_word
- meanrt_C_word
...

And I would just like in the data a calculation of the number of errors (how many times the person did not say the correct color) by separating the training and the task.
As well as the duration of the training and the task.

Am I clearer?

Okay. Please take a look at the original Stroop script:

<item colors>
/ 1 = "red"
/ 2 = "green"
/ 3 = "blue"
/ 4 = "black"
/ 5 = "yellow"
</item>

<text blue>
/ items = colors
/ color = blue
</text>

A trial is considered congruent if the display color of the stimulus is identical to the written word (the word "blue" displayed in blue color). How does the script determine this? Based on the item number:

<trial blue>
/ ontrialbegin = [values.color = "blue"]
/ stimulustimes = [0=blue]
/ posttrialpause = 250
/ validresponse = ("yellow" "green" "blue" "black" "red")
/ correctresponse = ("blue")
/ ontrialend = [
    if (text.blue.currentitemnumber == 3) {
        values.count_congruent += 1;
        values.congruence = 1

    } else {
        values.count_incongruent += 1;
        values.congruence = 2
    };
    if (text.blue.currentitemnumber == 3 && trial.blue.correct) {
        values.countcorrect_congruent += 1;
        values.sumrt_congruent += trial.blue.latency;
    } else if (text.blue.currentitemnumber != 3 && trial.blue.correct) {
        values.countcorrect_incongruent += 1;
        values.sumrt_incongruent += trial.blue.latency;
    };
]                
</trial>


That you've chosen to replace the color words with circles in your script does not change anything about that logic.

Okay thank you so much.

And could you tell me how to calculate the error number for training and the error number for the task.
as well as to calculate the time of completion of the task and that of the training.

So I would like to have these additional data. I suspect that I should add them at the level of the trials but I cannot find how.

I'm sorry for all of my questions, I'm just starting out on Inquisit and I still have a lot to learn.

Provide your current script, please.


It's missing the sound file. Provide that, please.

The forum does not allow me to send a sound file. How can I do ?

Put everything in a ZIP archive, attach the ZIP archive.

Also, I'm confused. You do not appear to have fixed the item number / congruence issue in the script you attached. Why is that? Did you attach the wrong script?
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search