Re: [R] wafer map drawing

2007-01-15 Thread Walker, Sam
Jim and Carlos, Thanks for the leads. Best Regards, Sam From: jim holtman [mailto:[EMAIL PROTECTED] Sent: Friday, January 12, 2007 7:02 PM To: Walker, Sam Cc: r-help Subject: Re: [R] wafer map drawing There is some information in Programming

[R] wafer map drawing

2007-01-12 Thread Walker, Sam
Hello R-Users! Does anyone know of a package to draw/analyze silicon wafer maps? Here are some examples http://www.java2s.com/Code/Java/Chart/JFreeChartWaferMapChartDemo.htm http://dp.pdf.com/site/products/wafermap/binmap.html I've google'd and searched CRAN with no luck. It

[R] lattice panel.linejoin type question

2007-01-02 Thread Walker, Sam
Hello R Users! I'm trying to use the panel.linejoin function to draw points and lines (type=o) but it wouldn't do it. Modifying the panel.linejoin function as such (adding type argument to the panel.lines call). *original* panel.lines(vals[xx], yy, col = col.line, lty = lty,

Re: [R] ggplot facet label font size

2006-08-09 Thread Walker, Sam
, 2006 1:18 AM To: Walker, Sam Cc: r-help@stat.math.ethz.ch; Gabor Grothendieck Subject: Re: [R] ggplot facet label font size On 8/3/06, Walker, Sam [EMAIL PROTECTED] wrote: This works OK, but there is some extra spacing between the panels, the top axis and the strip on the top, and the left labels

Re: [R] ggplot facet label font size

2006-08-03 Thread Walker, Sam
of conditioning variables, in this case 2 (sex+smoker). Thanks in advance... -Sam -Original Message- From: Gabor Grothendieck [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 02, 2006 6:04 PM To: Walker, Sam Cc: r-help@stat.math.ethz.ch Subject: Re: [R] ggplot facet label font size

[R] ggplot facet label font size

2006-08-02 Thread Walker, Sam
How do I change the font size in the facet labels along the edges of the plot? For example (from the ggplot help file): p-ggplot(tips, sex ~ smoker, aesthetics=list(x=tip/total_bill)) gghistogram(p) In this plot, the facet labels are smoker: No, smoker: Yes, sex: Female, sex: Male.

Re: [R] engineering notation format

2006-07-07 Thread Walker, Sam
Clever... Good observation on the last example, mistake on my part. Thanks for all the suggestions. Sam -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hans-Joerg Bibiko Sent: Friday, July 07, 2006 4:27 AM To: r-help@stat.math.ethz.ch Subject: Re: [R]

[R] engineering notation format

2006-07-06 Thread Walker, Sam
Hi, How can I format numbers to engineering notation? That is, like scientific but where the exponent is always a multiple of three. Some examples: 1635 000 000 = 1.635E9 163 500 000 = 163.5E6 0.000 000 000 135 = 135E-9 I've tried format and formatC but I couldn't get them to work