I fitted a model and want to do a plot of observation number in x-axis and fitted in y-axis with observed value of y in y-axis too with ggplot2, something like this. I can't use colours then I need different symbols for observed and predicted.
observed <- c(0.1,0.32,0.42,0.27,0.9,0.8)
fitted <- c(0.19,0.31,0.41,0.26,0.81,0.77)
x <- c(1,2,3,4,5,6)
So basically what I want to do is put to each x the two values in y-axis (observed and fitted) with different symbols.