Hello, Does R have any facility to create a plot that looks similar to this: http://www.augustcouncil.com/~tgibson/barmatrix.jpg Thank you, -TAG Todd A. Gibson
Why would you want a plot that looks like that? Half the bars are hidden behind other bars! Hadley On 10/4/07, Todd A. Gibson <tgibson at augustcouncil.com> wrote:> Hello, > Does R have any facility to create a plot that looks similar to this: > http://www.augustcouncil.com/~tgibson/barmatrix.jpg > Thank you, > -TAG > Todd A. Gibson > > ______________________________________________ > 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. >-- http://had.co.nz/
On Thu, Oct 04, 2007 at 06:15:34PM -0500, hadley wickham wrote:> Why would you want a plot that looks like that? Half the bars are > hidden behind other bars!I would rotate it such that all bars are visible. -TAG
On 10/4/07, Todd A. Gibson <tgibson at augustcouncil.com> wrote:> On Thu, Oct 04, 2007 at 06:15:34PM -0500, hadley wickham wrote: > > Why would you want a plot that looks like that? Half the bars are > > hidden behind other bars! > > I would rotate it such that all bars are visible.If you are really, really, sure that you want to do this, take a look at ?panel.3dbars in the latticeExtra package. This will be fairly slow for large tables (and I have no plans to improve it). Another option is the rgl package, but you might need to do some work to get it to do what you want. -Deepayan
check out the 'rgl' package On 10/4/07, Todd A. Gibson <tgibson at augustcouncil.com> wrote:> Hello, > Does R have any facility to create a plot that looks similar to this: > http://www.augustcouncil.com/~tgibson/barmatrix.jpg > Thank you, > -TAG > Todd A. Gibson > > ______________________________________________ > 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. >-- Jim Holtman Cincinnati, OH +1 513 646 9390 What is the problem you are trying to solve?