I have a dataframe that stores marks for questions against multiple ids.
ID, Q1, Q2, Q3, Q4, Q5
R1, 4, 3, 3, 2, 1
R2, 3, 2, 3, 2, 4
R3, 5, 1, 3, 4, 3
R4, 1, 3, 3, 5, 3
...
...
I want to plot the average marks of the 5 questions in a single plot.
How do I go about doing this in R using the ggplot2 package? What would be my 'x' and 'y' aesthetics?