Displaying 5 results from an estimated 5 matches for "3dbars".
2010 Aug 23
1
3D stariway plot
Please, is there an R function /package that allows for 3D stairway plots like the attached one ?
In addition, how can I overlay a parametric grid plot??
Thank you
Maura
Alice body {margin:0;padding:0;} #footer { height:13px; font-size:11px; font-family:Arial, FreeSans, sans-serif; color:#ADADAD; margin:0; padding:7px 12px; text-align:right; border-top:1px solid #dcdcdc; } #footer a {
2011 Oct 17
1
contouring x y scatter data
Hello,
I'm almost positive R can do the following, I just haven't hit upon the
right package or search terms, however. Here's what I'm after: I've got
concentration output from two different models that I want to qualitatively
compare in a contour plot (or some variant of a contour plot). The problem
as I see it is that the data is not gridded is the usual regular fashion,
2007 Oct 04
4
Matrix bar plot
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
2012 Apr 09
3
how to add 3d-points to bplot {rms} figure?
Hello!
I have created a bplot-figure using this code:
*file <- "2dcali_red.ttt"
ux<-as.matrix(read.table(file, dec = ","))
mode(ux)<-'numeric'
vel<-ux[,1]
ang<-ux[,2]
x<-ux[,3]
y<-ux[,4]
dat<- data.frame(ang=ang, x=x,y=y)
require(rms)
ddist2 <- datadist(dat)
options(datadist="ddist2")
fitn <- lrm(ang ~ rcs(x,4) +
2010 Aug 24
0
mlm for within subject design
...t exactly, that I know of, but maybe you can adapt
>
> library(rgl)
> demo(hist3d)
>
> to do what you want.
The drawback here, of course, is that the resolution of rgl isn't good enough if you want to include the plot in a paper. For that purpose, I've recently used panel.3dbars() from the "latticeExtra" package. I don't have a self-contained example at hand, but the idea is to call the lattice function cloud() and pass panel.3dbars() as an argument:
library("latticeExtra")
cloud( ... data and options ..., panel.3d.cloud = panel.3d...