Re: [R] Categorical bubble plot

2011-05-03 Thread Jurgens de Bruin
So I have been playing with bubble plot and I was able to create bubble plot with relatively simple data. I am no having problems when I increase the complexity of my data. Below is a example of my data: phytochemicalMainClassFitValues Name A 0.5

Re: [R] Categorical bubble plot

2011-05-03 Thread Ben Bolker
On 11-05-03 09:23 AM, Jurgens de Bruin wrote: > So I have been playing with bubble plot and I was able to create bubble > plot with relatively simple data. I am no having problems when I > increase the complexity of my data. Below is a example of my data: > > phytochemicalMainClassFitValue

Re: [R] Categorical bubble plot

2011-04-21 Thread Jurgens de Bruin
Thanks for all the help!!! On 16 April 2011 08:32, Tal Galili wrote: > Hi Jurgens, > > In the following post I show how to use balloonplot from qplots to do more > or less what you ask: > > http://www.r-statistics.com/2010/02/nutritional-supplements-efficacy-score-graphing-plots-of-current-studi

Re: [R] Categorical bubble plot

2011-04-16 Thread Tal Galili
Hi Jurgens, In the following post I show how to use balloonplot from qplots to do more or less what you ask: http://www.r-statistics.com/2010/02/nutritional-supplements-efficacy-score-graphing-plots-of-current-studies-results-using-r/ p.s: the code has a slight modification to it, so to handle ov

Re: [R] Categorical bubble plot

2011-04-15 Thread Ben Bolker
On 04/15/2011 01:13 AM, Jurgens de Bruin wrote: > Thanks for the reply... > > with reproducible I am believe you require a dataset? yes -- but you can make one up if you like. e.g. dd <- expand.grid(drugclass=LETTERS[1:5], plant=c("cactus","sequoia","mistletoe")) set.seed(101) dd$fitvalue

Re: [R] Categorical bubble plot

2011-04-15 Thread Jim Lemon
On 04/14/2011 11:48 PM, Jurgens de Bruin wrote: Hi, I do not have much R experience just the basics, so please excuse any obvious questions. I would like to create bubble plot that have Categorical data on the x and y axis and then the diameter if the bubble the value related to x and y. Atta

Re: [R] Categorical bubble plot

2011-04-14 Thread Michael bibo
Jurgens de Bruin gmail.com> writes: > > Hi, > > I do not have much R experience just the basics, so please excuse > any obvious questions. > > I would like to create bubble plot that have Categorical data on the x and y > axis and then the diameter if the bubble the value related to x and y. >

Re: [R] Categorical bubble plot

2011-04-14 Thread Jurgens de Bruin
Thanks for the reply... with reproducible I am believe you require a dataset? The size of the bubbles will be related to the fitvalues. On 14 April 2011 17:57, Ben Bolker wrote: > Jurgens de Bruin gmail.com> writes: > > > > > Hi, > > > > I do not have much R experience just the basics, so p

Re: [R] Categorical bubble plot

2011-04-14 Thread John Kane
I think using base graphics you would need to use numerical vectors to set the bubble positions. However there is not reason that you could not suppress the axis labeling and apply your own. This code does the first part using circles. There are probably better ways to do it but this should wo

Re: [R] Categorical bubble plot

2011-04-14 Thread Ben Bolker
Jurgens de Bruin gmail.com> writes: > > Hi, > > I do not have much R experience just the basics, so please excuse > any obvious questions. > > I would like to create bubble plot that have Categorical data on the x and y > axis and then the diameter if the bubble the value related to x and y. >