An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120611/0efe8d49/attachment.pl>
bubbleplot3: R equivalent of the MATLAB function?
7 messages · arun, John Kane, Timothy Murphy +2 more
Hi, Hope this links will be useful http://flowingdata.com/2010/11/23/how-to-make-bubble-charts/ http://sas-and-r.blogspot.com/2010/03/example-728-bubble-plots.html A.K. ----- Original Message ----- From: Timothy Murphy <timothyjosephmurphy at gmail.com> To: r-help at r-project.org Cc: Sent: Monday, June 11, 2012 11:54 AM Subject: [R] bubbleplot3: R equivalent of the MATLAB function? All, Does there exist an R equivalent of the MATLAB function "bubbleplot3"? Semi-naive Googleing has thus far revealed no such package to me. Your insight is appreciated! Regards, TJM ??? [[alternative HTML version deleted]] ______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
What exacrly does it do? Any pointers to relevant plots? John Kane Kingston ON Canada
-----Original Message----- From: timothyjosephmurphy at gmail.com Sent: Mon, 11 Jun 2012 10:54:28 -0500 To: r-help at r-project.org Subject: [R] bubbleplot3: R equivalent of the MATLAB function? All, Does there exist an R equivalent of the MATLAB function "bubbleplot3"? Semi-naive Googleing has thus far revealed no such package to me. Your insight is appreciated! Regards, TJM [[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
____________________________________________________________ GET FREE SMILEYS FOR YOUR IM & EMAIL - Learn more at http://www.inbox.com/smileys Works with AIM?, MSN? Messenger, Yahoo!? Messenger, ICQ?, Google Talk? and most webmails
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120611/399512de/attachment.pl>
On 12-06-11 1:49 PM, Timothy Murphy wrote:
John, It does 3D bubble plots, allowing you to represent 4 data dimensions: the x, y, and z coordinates in 3D space, and the radius of the bubble (sphere). There also seem to be coloring options.
Sounds like plot3d with type="s" and size specified. plot3d is in the rgl package. Duncan Murdoch
I'd like to use something like this for a project I'm working on; a simulation I've done in R. Of course I can just bring the data over to matlab and do it there, but this seems like something that would be a valuable addition to the R environment. I'm considering attempting to implement it as a package in R if it hasn't already been done. Here's a link to the matlab source code: http://www.mathworks.com/matlabcentral/fileexchange/8231-bubbleplot3/content/bubbleplot3.m Arun, The links you sent seem to do only two-dimensional bubble plots, am I missing something? Thanks, TJ Murphy On Mon, Jun 11, 2012 at 11:51 AM, John Kane<jrkrideau at inbox.com> wrote:
What exacrly does it do? Any pointers to relevant plots? John Kane Kingston ON Canada
-----Original Message-----
From: timothyjosephmurphy at gmail.com
Sent: Mon, 11 Jun 2012 10:54:28 -0500
To: r-help at r-project.org
Subject: [R] bubbleplot3: R equivalent of the MATLAB function?
All,
Does there exist an R equivalent of the MATLAB function "bubbleplot3"?
Semi-naive Googleing has thus far revealed no such package to me. Your
insight is appreciated!
Regards,
TJM
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html<http://www.r-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.
____________________________________________________________ GET FREE SMILEYS FOR YOUR IM& EMAIL - Learn more at http://www.inbox.com/smileys Works with AIM?, MSN? Messenger, Yahoo!? Messenger, ICQ?, Google Talk? and most webmails
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
On 2012-06-11 10:49, Timothy Murphy wrote:
John, It does 3D bubble plots, allowing you to represent 4 data dimensions: the x, y, and z coordinates in 3D space, and the radius of the bubble (sphere). There also seem to be coloring options. I'd like to use something like this for a project I'm working on; a simulation I've done in R. Of course I can just bring the data over to matlab and do it there, but this seems like something that would be a valuable addition to the R environment. I'm considering attempting to implement it as a package in R if it hasn't already been done.
[snip] You might check out the rgl package. It does 3D spheres. Peter Ehlers
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120611/1c5980c8/attachment.pl>