p1<-ggplot(mpg, aes(x =drv, y =cty, color =drv))+geom_boxplot(show.legend =FALSE)+labs(title ="Plot 1")p2<-ggplot(mpg, aes(x =drv, y =hwy, color =drv))+geom_boxplot(show.legend =FALSE)+labs(title ="Plot 2")p3<-ggplot(mpg, aes(x =cty, color =drv, fill =drv))+geom_density(alpha =0.5)+labs(title ="Plot 3")p4<-ggplot(mpg, aes(x =hwy, color =drv, fill =drv))+geom_density(alpha =0.5)+labs(title ="Plot 4")p5<-ggplot(mpg, aes(x =cty, y =hwy, color =drv))+geom_point(show.legend =FALSE)+facet_wrap(~drv)+labs(title ="Plot 5")