search for: triax

Displaying 13 results from an estimated 13 matches for "triax".

Did you mean: trial
2011 Feb 15
1
ternary contour plot
...u a reproducible code to put an arrow in a ternary plot. I use the function locator() to extract coordinates. The code is the following #------------------------------------------------------------------------------------------ # package and related documentaion require(plotrix) help.search("triax") help(triax.plot, html=TRUE) #------------------------------------------------------------------------------------------ # toy data data(soils) str(soils) #------------------------------------------------------------------------------------------ # creating a ternary plot triax.plot(soils...
2013 Jun 16
1
trying to fit a thin plate spline to a triangular plot
Hi Has anyone tried to fit a thin plate spine to a triangular plot before? I'm having trouble working out a piece of code to make it possible with three axes. I have done it before with two axes. I've found a package I prefer that makes triangular plots (plotrix) using the triax.plot() function. An example of some data and the plot follows: graph.data<-data.frame(a=c(9,6.2, 5.9,8.1,8.9,56.9,50,39.5,62.1,49.9,4.2,3,6,4.1), b=c(1.8,1.2,1.2,1.6,1.8,11.4,10,7.9,12.4,10,4.2,3,6,4.1), c=c(1.8,1.2,1.2,1.6,1.8,11.4,10,7.9,12.4,10,4...
2008 Jun 09
3
piper diagram
Hi, Is anyone on the list familiar with an R implementation of Piper Diagrams? Example: http://faculty.uml.edu/nelson_eby/89.315/IMAGES/Figure%209-78.jpg I am thinking that two calls to triax.plot (plotrix) along with some kind of affine-transformed standard plot would do the trick. Not so sure about the final layout, or a nice generalized version for something like lattice. Cheers, Dylan -- Dylan Beaudette Soil Resource Laboratory http://casoilresource.lawr.ucdavis.edu/ Universit...
2009 Jul 29
1
Showing time progression on (triangle) plots
...9;plotrix' (thanks to the Bristol mirror): Fractions <-matrix(c(LF10,AF10,OF10), ncol=3) colnames(Fractions, do.NULL = TRUE, prefix="col") colnames(Fractions) <- c("Landborne fraction", "Airborne fraction", "Oceanborne fraction") library(plotrix) triax.plot(x=Fractions,main="Where do anthropogenic emissions reside?",at=seq(0.1,0.9,by=0.1),axis.labels=NULL, tick.labels=NULL,col.axis="black",cex.axis=1,cex.ticks=1,align.labels=TRUE,show.grid=TRUE,col.grid="gray",lty.grid=par("lty"),cc.axes=FALSE,show.legend...
2008 Feb 21
2
triangle.plot - change the axes orientation
Hello, I need to chenge axes orirentation in triangle plot. (function triangle.plot in ade4 package) I want to plot elasticities of some species in demographic triangle, where axes values commnly increace "clockwise". If some better imangination is needed, see http://www.open.ac.uk/science/biosci/personalpages/j.silvertown/pdfs/Silvertown%20et%20al.%201993.pdf I am sorry if I just
2007 Jun 18
4
triangle contour plots
Suppose I have three numbers p1, p2, p3 with 0 <= p1,p2,p3 <= 1 and p1+p2+p3=1, and a function f=f(p1,p2,p3) = f(p1,p2,1-p1-p2). How to draw a contour plot of f() on the p1+p2+p3=1 plane, that is, an equilateral triangle? Functions triplot(), triangle.plot(), and ternaryplot() give only scatterplots, AFAICS -- Robin Hankin Uncertainty Analyst National Oceanography Centre,
2008 Jul 11
1
Plot multiple datasets on a VCD ternary graph
I need to plot multiple sets of data, on one Ternary plot (from the VCD package). Since they all need to be formatted differently, I can't just coerce them into one matrix, I need three separate calls. Is there a way to do this? Thanks -- View this message in context: http://www.nabble.com/Plot-multiple-datasets-on-a-VCD-ternary-graph-tp18412092p18412092.html Sent from the R help mailing
2008 Sep 04
1
A ternary graph's scales
Hi all, I am drawing a ternary graph. Everything is fine with both ternaryplot (package vcd) and triangle.plot (package ade4), but I want to present scales in neither percents nor from 0 to 1 (this is actually the only option I found in both functions). I want the scales to be in a natural scale (from 0 to k, k being the number of objects). Is it at all possible? (Descriptions of both functions
2008 Sep 19
1
Plot Accessibility
I'm not so sure the original way I stated my issue was clear enough, so I'll attempt to elaborate a little bit. I'd like to make a function that is passed the name of a plot object, and a lines/point specification, and graphs them all on the same plot. I don't want to redraw the plot each time, and I don't want the code to have any concept of a "first entry"
2012 Apr 20
1
Ternaryplot as an inset graph
Hello I am trying to add a ternary plot as a corner inset graph to a larger main ternary plot. I have successfully used add.scatter in the past for different kinds of plots but It doesn't seem to work for this particular function. It overlays the old plot rather than plotting as an inset. Here is a simple version of what I'm trying. Note that if I change the inset plot to be an ordinary
2010 Feb 16
3
Triangular filled contour plot
Hi all, I am working on a filled contour plot which shows a triangular matrix data set (as shown below). Is there a possibilty to draw a triangular filled contour in a equilateral triangle (like a ternary plot)? Thanks in advance Johannes http://n4.nabble.com/file/n1557386/Bild3.png -- View this message in context: http://n4.nabble.com/Triangular-filled-contour-plot-tp1557386p1557386.html
2010 Oct 20
2
histograms resulting from call to soil.texture
Hello, Using the dataset below I produce a soil.texture plot (R code for this included at the end). One will notice I have plotted the points based on whether or not they are in a region called 'upstream' or 'downstream'. I'm curious if there is a way to somehow extract counts of the number of points (red points and blue points) falling within each classification (e.g. silty
2010 May 05
0
R-help Digest, Vol 87, Issue 5
...42. Lazy evaluation in function call (Thorn) 43. Re: Kernel density estimate plot for 3-dimensional data (Duncan Murdoch) 44. strange behavior of RODBC and/or ssconvert (stefan.duke at gmail.com) 45. Re: Idiomatic looping over list name, value pairs in R (Luis N) 46. Re: 3D version of triax.plot (package plotrix) (Gabriele Esposito) 47. Re: Kernel density estimate plot for 3-dimensional data (Pascal Martin) 48. Re: Kernel density estimate plot for 3-dimensional data (Duncan Murdoch) 49. Avoiding for-loop for splitting vector into subvectors based on positions (...