Re: [R] Filled contour plot showing labeled isolines?

2012-08-09 Thread tremenyi
I know this answer is really late, but I dont think this post was answered properly. It seems like such obvious thing to want to do, you would think it would be easy... Well, it is! Once you know how (of course). Hooray! This took me ages to figure this out too! The answer is writen right

Re: [R] Filled contour plot showing labeled isolines?

2010-11-26 Thread jt306
Thanks Fiona, This is the right idea, but I would like to have the colors smoothed out similar to what filled.contour does. Jon -- View this message in context: http://r.789695.n4.nabble.com/Filled-contour-plot-showing-labeled-isolines-tp3056437p3060915.html Sent from the R help mailing list

Re: [R] Filled contour plot showing labeled isolines?

2010-11-26 Thread jt306
Thanks Steve. Could you please give me an example of what the command for doing that would look like? -- View this message in context: http://r.789695.n4.nabble.com/Filled-contour-plot-showing-labeled-isolines-tp3056437p3060925.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] Filled contour plot showing labeled isolines?

2010-11-25 Thread Fiona Berryman
jt306 wrote: Is it possible to create a contour plot with the isolines labeled. I know you can do this with Matlab. Argh! I tried creating a filled contour plot, then using par(new=T), followed by overlaying the contour plot on top. However, the placement of the filled contour plot

Re: [R] Filled contour plot showing labeled isolines?

2010-11-25 Thread S Ellison
:57:06 Subject: Re: [R] Filled contour plot showing labeled isolines? jt306 wrote: Is it possible to create a contour plot with the isolines labeled. I know you can do this with Matlab. Argh! I tried creating a filled contour plot, then using par(new=T), followed

Re: [R] Filled contour plot showing labeled isolines?

2010-11-24 Thread Jon Tang
Thanks for your reply. My data is a 2D matrix of values: A0.1 A0.2 A0.3 A0.4 A0.5 A0.6 A0.7 A0.8 A0.9 A1.0 P0.1 0.00 0.07 0.07 0.07 0.15 0.11 0.28 0.32 0.62 0.94 P0.2 0.01 0.00 0.04 0.05 0.04 0.04 0.07 0.13 0.32 0.69 P0.3 0.01 0.00 0.00 0.02 0.00 0.04 0.02 0.05 0.08 0.50 P0.4 0.00 0.00 0.00

Re: [R] Filled contour plot showing labeled isolines?

2010-11-24 Thread David Winsemius
On Nov 24, 2010, at 1:48 AM, Jon Tang wrote: Thanks for your reply. My data is a 2D matrix of values: A0.1 A0.2 A0.3 A0.4 A0.5 A0.6 A0.7 A0.8 A0.9 A1.0 P0.1 0.00 0.07 0.07 0.07 0.15 0.11 0.28 0.32 0.62 0.94 P0.2 0.01 0.00 0.04 0.05 0.04 0.04 0.07 0.13 0.32 0.69 P0.3 0.01 0.00 0.00 0.02

Re: [R] Filled contour plot showing labeled isolines?

2010-11-24 Thread jt306
Sorry, I guess I didn't make it clear. I mentioned it in the subject of my post, but not in the body. Is it possible to have a filled contour plot (showing the colors) with the isolines labeled? On Wed, Nov 24, 2010 at 5:35 AM, David Winsemius [via R]

Re: [R] Filled contour plot showing labeled isolines?

2010-11-24 Thread David Winsemius
On Nov 24, 2010, at 10:19 AM, jt306 wrote: Sorry, I guess I didn't make it clear. I mentioned it in the subject of my post, but not in the body. Is it possible to have a filled contour plot (showing the colors) with the isolines labeled? Then levelplot _was_ (perhaps) the right

[R] Filled contour plot showing labeled isolines?

2010-11-23 Thread jt306
Is it possible to create a contour plot with the isolines labeled. I know you can do this with Matlab. Argh! I tried creating a filled contour plot, then using par(new=T), followed by overlaying the contour plot on top. However, the placement of the filled contour plot and the contour plot do

Re: [R] Filled contour plot showing labeled isolines?

2010-11-23 Thread David Winsemius
On Nov 23, 2010, at 6:25 PM, jt306 wrote: Is it possible to create a contour plot with the isolines labeled. I know you can do this with Matlab. Argh! It is fairly straightforward with lattice::levelplot. Provide some sample data. I tried creating a filled contour plot, then