When creating a bubble plot in ggplot, I'm having an issue adjusting two separate aesthetic choices and I'm sure it has something to do with the way I'm coding my plot. In the below plot, if I assign the color of the bubbles based on a variable like so:
V1<-rnorm(50)
V2<-rnorm(50)
V3<-c(rep("A",10),rep("B",10),rep("C",10),rep("D",10),rep("E",10))
V4<-V2+.1
V5<-c(rep("BF1",9),rep("BF2",11),rep("BF3",8),rep("BF4",12),rep("BF5",10))
DF<-data.frame(V1,V2,V3,V4,V5)
ggplot(DF,aes(x=V1,y=V2,size=V4,label=DF$V3,fill=V5),legend=FALSE)+
scale_y_continuous( limits = c(-3, 3))+
scale_x_continuous( limits = c(-3, 3))+
geom_point(color="black",shape=21,alpha=0.5)+
geom_text(size=2)+
theme_bw()+
scale_size(range = c(5, 20))+
scale_colour_brewer(palette="Blues")

The two issues I have with this plot are
1- I wanted to change the default pallet of colors to something less pastel. I thought using the scale_color_brewer argument would change the colors to "Blues", but obviously this is not the case.
2- Secondly, the legend for V4 now has empty circles, whereas without the aes(fill=) argument the circles were filled. I know this is because I have many colors for my circles now, but I'd prefer to have a solid (black) circle be my legend as opposed to the open circles. Is there a way to override the legend and make the circles filled?
alpha=0.5will dilute any fill colour you use by half ... although as @joran points out usingscale_fill_brewerinstead ofscale_colour_brewerwill help. - Ben Bolker