I am having a very simple logical problem in ggplot.
Please see the attached graph.
I want multiple lines in each facet, I am getting only one line. Each set of values need to be connected individually across the Attribute. The code I have used is :
library(ggplot2)
h <- ggplot(data = df, mapping = aes(Attribute, Values, colour = Classe))
h + geom_point(size = 0.7) + geom_line() + facet_wrap( ~ Classe, scales = "free_x")