Hi, this is the output of dput(head(my_df))
structure(list(Block = list(c(1, 2, 3, 4, 5, 6, 7), c(1, 2, 3,
4, 5, 6, 7), c(1, 2, 3, 4, 5, 6, 7), c(1, 2, 3, 4, 5, 6, 7),
c(1, 2, 3, 4, 5, 6, 7), c(1, 2, 3, 4, 5, 6, 7)), X.Correct = list(
c(NA_real_, NA_real_, NA_real_, NA_real_, NA_real_, NA_real_,
NA_real_), c(0.875, 0.975, 1, 0.975, 0.975, 0.975, 0.975),
c(0.975, 1, 1, 0.925, 0.975, 1, 1), c(0.925, 0.975, 1, 1,
1, 0.975, 0.975), c(0.875, 0.925, 0.975, 1, 1, 0.925, 1),
c(1, 1, 1, 1, 1, 1, 1)), meanRT = list(c(NA_real_, NA_real_,
NA_real_, NA_real_, NA_real_, NA_real_, NA_real_), c(1166.94285714286,
801.948717948718, 806.1, 758.461538461538, 654.128205128205,
601.205128205128, 592.897435897436), c(877.641025641026, 866.575,
717.2, 699.945945945946, 751.435897435897, 580.175, 603.975),
c(1189.13513513514, 966.923076923077, 849.15, 797.875, 744.975,
742.769230769231, 801.512820512821), c(1122.8, 967.216216216216,
885.769230769231, 836.15, 739.825, 842.648648648649, 746.6
), c(918.725, 873.075, 885.5, 766.025, 740.825, 713.5, 788.525
))), row.names = c(NA, 6L), class = "data.frame")
Thanks for taking the time to respond. I am not sure which format would be best for this dataset. I definitely want the two columns: "X.Correct" and "meanRT". This is the data I want to analyze and look at. I am not sure what to do with the "Block" column. Essentially, there are 6 blocks done for each participant. In this dataset, each row represents a participant, whereby there are 6 blocks of data (Blocks 1:6, X.Correct values 1:6, meanRT values 1:6). In the end, I want each of the 6 blocks to match the 6 data values from "X.Correct" where "X.Correct" is represented on the y axis and blocks are represented on the x axis. This set-up would be the same for "meanRT" and blocks 1:6. I guess this brings me to the question of - does this dataset need to be changed further or is there a way to tell R to read the data so it can plot this information? Most of the dataset examples I have seen only have one element of data per column and row. Is this why I am having so much difficulty with my dataset? Because of the fact I have multiple elements of data per row and column when there should only be one data point?