Thank you Solomon!
There are two issues which keep my mind busy and I’d appreciate your input:
- Isn’t problematic to assign reaction times to the dependent variable in a somewhat random manner?
For example in this case:
Merge.Tasks %>%
filter(Subjs=="A") %>%
group_by(Correct) %>%
summarise(Mean = mean(RT))
A tibble: 2 x 2
Correct Mean
<dbl> <dbl>
1 0 197.
2 1 262.
Incorrect answers are predicted (in average) with faster reaction times even though the reaction times were collected from a different task.
- What should I do in case of different amount of trials in each task, specifically less trials from Task B (reaction times task)
Thanks again!