Hi. I have participant data that I want to analyze. The problem is, that each column contains multiple rows for each participant and since I did three tests at three different time points, there are also three different endings for each time per participant.
Example:
I would like to create the mean of each group (A1, A2, A3, B1, ...). I found the dplyr, rowMeans and summarize function but now I'm stuck. What options do I have?
I think we need to see some sample data.
A handy way to supply some sample data is the dput() function. In the case of a large dataset something like dput(head(mydata, 100)) should supply the data we need. Just do dput(mydata) where mydata is your data. Copy the output and paste it here between
```