Hello, I hope this message finds you well. Firstly, thank you for making the tool and sharing it with us.
I have used the code for my thesis project, now I am at data analysis stage. I am not sure whether this is a bug or it is an intentional descision, but I have noticed that during AK trials, every time there is an A, K seems to follow, which if I understand correctly, not supposed to happen since some of the trials should have another letter after A in order to test selective attention. I also have noticed that this seemed to be the rule in code: final_trials = []
for letter in pre_final_trials:
if letter is 'K':
final_trials.append('A')
final_trials.append(letter)
Would you be able to clarify please, is this a special version of the test or maybe I am misunderstanding something?
Thank you!
Hello, I hope this message finds you well. Firstly, thank you for making the tool and sharing it with us.
I have used the code for my thesis project, now I am at data analysis stage. I am not sure whether this is a bug or it is an intentional descision, but I have noticed that during AK trials, every time there is an A, K seems to follow, which if I understand correctly, not supposed to happen since some of the trials should have another letter after A in order to test selective attention. I also have noticed that this seemed to be the rule in code: final_trials = []
for letter in pre_final_trials:
if letter is 'K':
final_trials.append('A')
final_trials.append(letter)
Would you be able to clarify please, is this a special version of the test or maybe I am misunderstanding something?
Thank you!