I want to track the seven observations' performances on seven assessments using sparklines, so I thought that I could just melt
my data frame then do a facet wrap by observation in ggplot. Now, I really need to label the maxima and minima for each facet. Is this possible in my current set up or do I need to graph each facet separately and add on indictors via geom_annotate
? I'm sorry if this is a very rookie question. I am very new to R.
ggplot(test,aes(x=variable,y=value,group=1))+
facet_wrap("student",nrow=7)+
geom_point()+
geom_line()+
mytheme