I am using qplot to summarize a dataset and generate a plot for 2 ACL injured athletes that shows the mean EMG and 95% confidence interval band for different phases of a continuous jumping movement. Each athlete performed 20 jumps so this provides a summary of all 20 jumps for each athlete.
Is there a straightforward method in qplot to generate a figure that shows only the mean value and the confidence band (i.e. that removes the individual data points)? I think this is a cleaner way of showing my data but I'm struggling with a way to do this beyond manipulating the transparency using geom_point.
The code I am using is:
plot + stat_sum_df("mean_cl_normal", geom = "smooth")+
stat_summary(fun.y=mean, fun.ymin=mean, fun.ymax=mean, geom="point", size=3,fill="white",pch=21)