I am new to ggplot2. I have 2 different datasets whose values has to be plotted together in a graph. Looking at example of this question i tried using scale_shape_manual()
and scale_color_manual()
. But it doesn't change the shape and color of my points.
A small part of my code is as follows:
qplot(x=TempC7, y=PresshPa7) +
geom_point(aes(x=Temp, y=Pres), data=obsTemp1, na.rm=TRUE) +
scale_shape_manual(values=c(19,19)) +
scale_color_manual(values=c("blue", "red"))