I am producing a faceted graph with 4 facets, using two variables each with 2 levels to define facets.
I am using a code like this:
qplot(hp, mpg, data=mtcars,
facets=vs~am, size=I(3), geom=c("point","smooth"),
xlab="Horsepower", ylab="Miles per Gallon")
I am trying to place a unique label onto each facet that says "Slope = the slope of the line"
I have seen a few questions on here that describe how to do this when facets are defiend by one variable, but not 2. How do I go about adding unique labels?
I know I can use geom_text, something like this
geom_text(sig=c("Slope = 1","Slope = 2","Slope = 3","Slope = 4")),aes(x=4.5,y=1,label=sig))