Hi, there: Suppose I have a couple of data.frames and each one has five columns (one for x-axis, two for y-axis and two for std of y's.) There is another dimensions (besides x and y) which is continuous. My question is, how to plot such series of data frames in one plot (thus, 3-dimensional plot) AND multiple 2-D plots. I am not familar with R's plotting utilities. Thanks. -- Weiwei Shi, Ph.D Research Scientist GeneGO, Inc. "Did you always know?" "No, I did not. But I believed..." ---Matrix III
You might want to check out this link to the type of graphs that R can produce and find one you like; the code will be with it. http://addictedtor.free.fr/graphiques/allgraph.php On 6/25/07, Weiwei Shi <helprhelp@gmail.com> wrote:> > Hi, there: > > Suppose I have a couple of data.frames and each one has five columns > (one for x-axis, two for y-axis and two for std of y's.) There is > another dimensions (besides x and y) which is continuous. My question > is, how to plot such series of data frames in one plot (thus, > 3-dimensional plot) AND multiple 2-D plots. I am not familar with R's > plotting utilities. > > Thanks. > > -- > Weiwei Shi, Ph.D > Research Scientist > GeneGO, Inc. > > "Did you always know?" > "No, I did not. But I believed..." > ---Matrix III > > ______________________________________________ > R-help@stat.math.ethz.ch 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? [[alternative HTML version deleted]]
You might want to check out this link to the type of graphs that R can produce and find one you like; the code will be with it. http://addictedtor.free.fr/graphiques/allgraph.php On 6/25/07, Weiwei Shi <helprhelp@gmail.com> wrote:> > Hi, there: > > Suppose I have a couple of data.frames and each one has five columns > (one for x-axis, two for y-axis and two for std of y's.) There is > another dimensions (besides x and y) which is continuous. My question > is, how to plot such series of data frames in one plot (thus, > 3-dimensional plot) AND multiple 2-D plots. I am not familar with R's > plotting utilities. > > Thanks. > > -- > Weiwei Shi, Ph.D > Research Scientist > GeneGO, Inc. > > "Did you always know?" > "No, I did not. But I believed..." > ---Matrix III > > ______________________________________________ > R-help@stat.math.ethz.ch 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? [[alternative HTML version deleted]]
On 6/25/07, jim holtman <jholtman at gmail.com> wrote:> You might want to check out this link to the type of graphs that R can > produce and find one you like; the code will be with it. > > http://addictedtor.free.fr/graphiques/allgraph.phpOr for examples using the ggplot2 package: http://had.co.nz/ggplot2 Hadley
Weiwei Shi wrote:> Hi, there: > > Suppose I have a couple of data.frames and each one has five columns > (one for x-axis, two for y-axis and two for std of y's.) There is > another dimensions (besides x and y) which is continuous. My question > is, how to plot such series of data frames in one plot (thus, > 3-dimensional plot) AND multiple 2-D plots. I am not familar with R's > plotting utilities. >Hi Weiwei, Maybe color2D.matplot for the 2D plots, setting par(mfrow...) appropriately. I have just uploaded a new version of plotrix in which color2D.matplot will handle NAs appropriately, doing such things as upper or lower triangles of matrices. Look for version 2.2-2 when it pops up on CRAN. Jim