<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Increase size of data points in wafer map in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899757#M105973</link>
    <description>&lt;P&gt;Thanks a million Jthi It worked perfectly like I wanted&lt;/P&gt;</description>
    <pubDate>Thu, 11 Sep 2025 07:53:59 GMT</pubDate>
    <dc:creator>anandambujaraja</dc:creator>
    <dc:date>2025-09-11T07:53:59Z</dc:date>
    <item>
      <title>Increase size of data points in wafer map</title>
      <link>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899608#M105951</link>
      <description>&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = New Window("BSS_Wafermap", 
 
	gb = Graph Box(
		framesize(xres, yres),
		X Scale(xmin, xmax),
		Y Scale(ymin, ymax),
		Fill Color("lightgray");
		Pen Color("Blue");
		Circle({0, 0}, 150000, "FILL");
 
		For(i = 1, i &amp;lt;= N Rows(pdt), i++,
			xleft = pdt:left[i];
			xright = pdt:right[i];
			ybottom = pdt:bottom[i];
			ytop = pdt:top[i];
			pcolor = color_list[1];
			If(pdt:defect_images_count[i] &amp;gt; 0,
				Pen Color("red"),
				Pen Color("Black")
			);
			If(pdt:defect_images_count[i] &amp;gt; 0,
				Fill Color("red"),
				Fill Color("Black")
			);
			Rect(xleft, ytop, xright, ybottom, filled_rect);
		);,
		Title(" Lot: " || sdt:lot_id[p] || " Route: " || sdt:route[p])
	), 
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;The above is my JSL code I want increase the size of the points inside the circle and wnat to highlight the point if they have image attach to them in fdiffrent color. Could you please help me with this&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Edit (jthi): added JSL formatting&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 10 Sep 2025 15:24:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899608#M105951</guid>
      <dc:creator>anandambujaraja</dc:creator>
      <dc:date>2025-09-10T15:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Increase size of data points in wafer map</title>
      <link>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899622#M105952</link>
      <description>&lt;P&gt;What issues are you having? Are you getting errors? Sizes of which points? You seem to only have rectangles inside your graph and their size is determined by your data table?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

pdt = New Table("Untitled",
	Add Rows(2),
	Compress File When Saved(1),
	New Column("left", Numeric, "Continuous", Format("Best", 12), Set Values([10000, 50000])),
	New Column("right", Numeric, "Continuous", Format("Best", 12), Set Values([3000, 70000])),
	New Column("bottom", Numeric, "Continuous", Format("Best", 12), Set Values([10000, 40000])),
	New Column("top", Numeric, "Continuous", Format("Best", 12), Set Values([30000, 50000])),
	New Column("defect_images_count", Numeric, "Continuous", Format("Best", 12), Set Values([0, 1]))
);

xres = 1000;
yres = 1000;
xmin = -150000;
xmax = 150000;
ymin = -150000;
ymax = 150000;

nw = New Window("BSS_Wafermap", 
 
	gb = Graph Box(
		framesize(xres, yres),
		X Scale(xmin, xmax),
		Y Scale(ymin, ymax),
		Fill Color("lightgray");
		Pen Color("Blue");
		Circle({0, 0}, 150000, "FILL");
 
		For(i = 1, i &amp;lt;= N Rows(pdt), i++,
			xleft = pdt:left[i];
			xright = pdt:right[i];
			ybottom = pdt:bottom[i];
			ytop = pdt:top[i];
			If(pdt:defect_images_count[i] &amp;gt; 0,
				Pen Color("red"),
				Pen Color("Black")
			);
			If(pdt:defect_images_count[i] &amp;gt; 0,
				Fill Color("red"),
				Fill Color("Black")
			);
			Rect(xleft, ytop, xright, ybottom, 1);
		);,
		Title("title")
	), 
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1757518220973.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/82245iC982BBDADFB6A862/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1757518220973.png" alt="jthi_0-1757518220973.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Sep 2025 15:31:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899622#M105952</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-09-10T15:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Increase size of data points in wafer map</title>
      <link>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899673#M105961</link>
      <description>Thanks a million for the clarification. Yes I have created the rectangle as I am not able to increase the size of the data points inside circle. If you could show me a way to plot the data points inside a circle of wafer map and highlight them based on criteria in different color or legend  would be a great help. Thansk</description>
      <pubDate>Wed, 10 Sep 2025 20:36:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899673#M105961</guid>
      <dc:creator>anandambujaraja</dc:creator>
      <dc:date>2025-09-10T20:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Increase size of data points in wafer map</title>
      <link>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899714#M105967</link>
      <description>&lt;P&gt;If you wish to use Markers something like this is an option&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

pdt = New Table("Untitled",
	Add Rows(2),
	Compress File When Saved(1),
	New Column("x", Numeric, "Continuous", Format("Best", 12), Set Values([10000, 50000])),
	New Column("y", Numeric, "Continuous", Format("Best", 12), Set Values([3000, 70000])),
	New Column("defect_images_count", Numeric, "Continuous", Format("Best", 12), Set Values([0, 1]))
);

xres = 1000;
yres = 1000;
xmin = -150000;
xmax = 150000;
ymin = -150000;
ymax = 150000;

nw = New Window("BSS_Wafermap", 
	gb = Graph Box(
		framesize(xres, yres),
		X Scale(xmin, xmax),
		Y Scale(ymin, ymax),
		Fill Color("lightgray");
		Pen Color("Blue");
		Circle({0, 0}, 150000, "FILL");

		Marker Size(100);
		xx = [];
		yy = [];
		For Each Row(pdt,
			If(:defect_images_count &amp;gt; 0,
				mstate = Color State("Red");
			,
				mstate = Color State("Black");
			);
			xx = Matrix(:x);
			yy = Matrix(:y);
			Marker(mstate, xx, yy);
		);
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But you could also use circles which might give more flexibility&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = New Window("BSS_Wafermap", 
	gb = Graph Box(
		framesize(xres, yres),
		X Scale(xmin, xmax),
		Y Scale(ymin, ymax),
		Fill Color("lightgray");
		Pen Color("Blue");
		Circle({0, 0}, 150000, "FILL");

		Marker Size(100);
		xx = [];
		yy = [];
		For Each Row(pdt,
			If(:defect_images_count &amp;gt; 0,
				Fill Color("Red");
				Pen Color("Blue");
			,
				Fill Color("Black");
				Pen Color("Black");
			);
			Circle(Eval List({:x, :y}), 10000, "FILL")
		);
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And one more option could be to do most of this in graph builder, depending on what you are trying to achieve.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 04:30:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899714#M105967</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-09-11T04:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: Increase size of data points in wafer map</title>
      <link>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899757#M105973</link>
      <description>&lt;P&gt;Thanks a million Jthi It worked perfectly like I wanted&lt;/P&gt;</description>
      <pubDate>Thu, 11 Sep 2025 07:53:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Increase-size-of-data-points-in-wafer-map/m-p/899757#M105973</guid>
      <dc:creator>anandambujaraja</dc:creator>
      <dc:date>2025-09-11T07:53:59Z</dc:date>
    </item>
  </channel>
</rss>

