I have a question related to this question.
I plotted my data in ggplot2, but I'd like to have more space between the points and also between the groups. I'm plotting ESM data over 17 days, and I want to show in a plot how a person's emotion changes during the day when he/she rates his/her emotion.
Thus, I want to plot only the points (no line), I want some space between the points so that one can see which point was entered first, and I want more space between the days (x-variable) so that it's visible which points belong to which day.
example data:
beep <- c(74.50, 77.50, 89.50, 75.25, 58.25, 81.25, 88.75, 89.25, 74.25, 71.00)
days <- c(1, 1, 1, 2, 2, 3, 3, 4, 4, 4)
df <- as.data.frame(cbind(days, beep))
ggplot(df, aes(days, beep)) + geom_point()
In this MWE, ggplot stacks the data points in one vertical line, whereas I'd like to see which datapoint came first on that particular day (I hope I explain this clear).