I have two scatter plot :
qplot(Date,Min,data=baseSenior,color=Type,facets=Rating~Amount.Outstanding)
qplot(Date,Max,data=baseSenior,color=Type,facets=Rating~Amount.Outstanding)
baseSenior is my dataframe, i'd like to obtain one Scatter plot with Max and Min on it. Of course, i want to keep the same sort with Type, Rating and Amount.Outstanding who are categorial variables.
I'm really a newbie with ggplot2, thank you for your time.