I'm testing the R project with a bubble graph. For this, I have the following csv file:
I did this:
> mydata<-read.csv("~/Desktop/result.csv", header=TRUE)
> mydata
  month     sale    comm maxcomm savings
  1 23415960  706164  998457  292293
  2 21303842  870591  928084   57493
  3 22128502  644698  897262  252564
  4 23872123  800024 1047968  247944
  5 25880653  900984 1006359  105375
  6 26359929 1186594 1601646  415052
for the command below, I get the red bubble
symbols(mydata$sale, mydata$comm, circles=mydata$savings, bg="red")
and for the command below, I get the blue bubble
symbols(mydata$sale, mydata$comm, circles=mydata$maxcomm, bg="blue")
My goal is to integrate them both together (in one graph) so the red will be on top of the blue. (If there's any possibility to have the blue transparent - even better!)
 

 
     
     
    