Here is the issue, the following code is changing the color of the data points but not the shape. What is wrong?
g <- ggplot(mydata, aes(var1, var2)
g <- g + geom_point(aes(shape=var3, color=var3), shape=1)
g <- g + facet_grid(.~var4)
g <- g + theme(legend.position="bottom") + guides(colour = guide_legend(ncol = 1))
shapeonce withinaes()and once outside.Remove the one outside... Please also provide a reproducible example for any question here.