I would like to create one separate plot per group in a data frame and include the group in the title.
With the iris dataset I can in base R and ggplot do this
Use .$Species to pull the species data into ggtitle:
.$Species
ggtitle
iris %>% group_by(Species) %>% do(plots=ggplot(data=.) + aes(x=Petal.Width, y=Petal.Length) + geom_point() + ggtitle(unique(.$Species)))