<?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 Contour Plot arrange by Row in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Contour-Plot-arrange-by-Row/m-p/320064#M57056</link>
    <description>&lt;P&gt;I want to plot contour plot arrange by row group by Wafer ID. By default, the graph will be arrange in columns. Is there a way to display the graph in n rows and n columns that i like?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="contour plot arrange by row.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27330iE3C644BA602908B2/image-size/large?v=v2&amp;amp;px=999" role="button" title="contour plot arrange by row.png" alt="contour plot arrange by row.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2023 11:06:38 GMT</pubDate>
    <dc:creator>OneNorthJMP</dc:creator>
    <dc:date>2023-06-11T11:06:38Z</dc:date>
    <item>
      <title>Contour Plot arrange by Row</title>
      <link>https://community.jmp.com/t5/Discussions/Contour-Plot-arrange-by-Row/m-p/320064#M57056</link>
      <description>&lt;P&gt;I want to plot contour plot arrange by row group by Wafer ID. By default, the graph will be arrange in columns. Is there a way to display the graph in n rows and n columns that i like?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="contour plot arrange by row.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27330iE3C644BA602908B2/image-size/large?v=v2&amp;amp;px=999" role="button" title="contour plot arrange by row.png" alt="contour plot arrange by row.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:06:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Contour-Plot-arrange-by-Row/m-p/320064#M57056</guid>
      <dc:creator>OneNorthJMP</dc:creator>
      <dc:date>2023-06-11T11:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Contour Plot arrange by Row</title>
      <link>https://community.jmp.com/t5/Discussions/Contour-Plot-arrange-by-Row/m-p/320203#M57074</link>
      <description>&lt;P&gt;Here are 2 ways to do it.&amp;nbsp; The first is to place a simple window around the output and specify to use a H List Box() to arrange the different graphs.&lt;/P&gt;
&lt;P&gt;The second is to use Graph Builder, and the built in capabilities of that platform.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hor1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27335i239E93363EE19699/image-size/large?v=v2&amp;amp;px=999" role="button" title="hor1.PNG" alt="hor1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hor2.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/27336iD1635BC38AAD4455/image-size/large?v=v2&amp;amp;px=999" role="button" title="hor2.PNG" alt="hor2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open("$SAMPLE_DATA/semiconductor capability.jmp");

New Window( "horizontal",
	H List Box(
		Contour Plot(
			X( :PNP1, :PNP2 ),
			Y( :NPN1 ),
			Show Data Points( 0 ),
			Fill Areas( 0 ),
			Label Contours( 0 ),
			Transform( "Range Normalized" ),
			Specify Contours(
				Min( 110 ),
				Max( 122 ),
				N( 7 )
			),
			by( :site )
		)
	)
);

// or with Graph Builder
Graph Builder(
	Size( 1009, 492 ),
	Show Control Panel( 0 ),
	Variables( X( :PNP2 ), Y( :PNP1 ), Group X( :SITE ), Overlay( :NPN1 ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Smoother( X, Y, Legend( 4 ) ),
		Contour( X, Y, Legend( 5 ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Oct 2020 22:35:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Contour-Plot-arrange-by-Row/m-p/320203#M57074</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-10-11T22:35:06Z</dc:date>
    </item>
  </channel>
</rss>

