I am trying to calculate the average number participants scored correct on a memory task. I have a column called RecallType
which tells me if participants were assessed through forward memory recall (called forwards
) or through backwards memory recall (called backwards
). I also have a column called ProbeState
which identifies the type of memory task, of which there are two. In this column I have positions
and digits
. These are all my variables of interest.
The memory task itself is split by two columns. Recall.CRESP
is a column specifying the correct answers on a memory test selected through grid coordinates. Recall.RESP
shows participants response.
These columns look something like this:
|Recall.CRESP | Recall.RESP |
|---------------------------------|---------------------------------|
|grid35grid51grid12grid43grid54 | grid35grid51grid12grid43grid54 |
|grid11gird42gird22grid51grid32 | grid11gird15gird55grid42grid32 |
So for example in row 1 of this table, the participant got 5/5 correct as the grid coordinates of Recall.CRESP
matches with Recall.RESP
. However in row 2, the participant only got 2/5 correct as only the first and the last grid coordinate are identical. The order of the coordinates must match to be correct.
Ideally I would love to learn from any response. If you do reply please kindly put some comments.
Thanks.