Millisecond Forums

Stroop Task

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

By 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
By 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.
By 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?
By 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.
By 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.
By 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.
By 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.

By 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.
By 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 ?
By Dave - 3/10/2021

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?
By 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/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?

Indeed, I understood the logic of your explanation yesterday for congruence, but I have not yet applied it because the most important, for the study I am currently carrying out, is to show the 4 new data (Errors and Times )
By Dave - 3/10/2021

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/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?

Indeed, I understood the logic of your explanation yesterday for congruence, but I have not yet applied it because the most important, for the study I am currently carrying out, is to show the 4 new data (Errors and Times )

See attached.
By 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/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?

Indeed, I understood the logic of your explanation yesterday for congruence, but I have not yet applied it because the most important, for the study I am currently carrying out, is to show the 4 new data (Errors and Times )

See attached.

Thank you very much
Everything is perfect and I was able to apply the same method to the other two word and inference boards
A big thank you again