Displaying 1 result from an estimated 1 matches for "obscomp".
Did you mean:
objcom
2006 Oct 27
2
qplot of ggplot package how to plot different size according to the values and not to the weights?
...um 6.2 6.2 5.6 6.6 6.6 ...
$ Mon : num 2.2 2.0 1.0 3.2 2.0 ...
$ inc.comp : num 4 5 2 5 5 5 5 5 4 4 ...
all I wanted to do is plotting Mon against obserror, the colors should
be by step45 and the size of the symbol should be according to inc.comp
so I did this:
qplot(obserror,Mon,data=obscomp,col=inc.comp,col=step45)
unfortunately the size of the is something I do not want it to be, the
legend for inc.comp says: 4, 2.25, 1 ,0.25 , 0 I suppose this are weights?
I got closer to what I want specify a different symbol instead of a
different size:
qplot(obserror,Mon,data=obscomp,shape=as....