This project will use publicly available behavioral data from Kalbe & Schwabe (2022). The original study looked at the memory performance of the study participants, operationalised as corrected recognition. The unprocessed data can be found here, the preprocessed data which you will use, can be found in the folder project-data.
In the study participants were presented with a series of initially neutral stimuli. The presented stimuli were images of animals and tools, images from one of the two categories were paired with an aversive event (electric shock). The item category paired with the aversive event is characterized as CS*+ (conditioned category, CSm) and the item category not associated with the aversive event as *CS− (CSm).
The purpose of this pairing was to see if the association with the shock would affect the participants’ memory for the images. This kind of experimental design helps to understand hoe emotional experiences can influence memory.
The preprocessed data are saved as .csv files. You can find a .csv file for each experiment separately in the above mentioned folder.
Variables:
study_id
participant_id
condition -
Describes the item category
CSm - CS- category is the category which is not associated with the aversive event
CSp - CS+ category is the conditioned category, item category associated with aversive event
phase - experimental phase items were first presented
hit - Hit rate
fa - False alarm rate
Read the data into your local R environment
Compute corrected recognition scores and save them as a new variable (e.g. “cr”)
Corrected recognition is computed by subtraction false alarms from hits
The new variable should be part of the data frame, this makes plotting easier
If you decide to plot all four experiments, pool the data
Here you can find the published paper. Have a look at Figure 3. Try to recreate the figure using the provided data. You can choose which of the four experiments you want to plot.