<?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: Graph builder subset plots with the same axis labels in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779951#M96155</link>
    <description>&lt;P&gt;Thank you everyone for the suggestion. I used a different approach and solved the issue. I used python and added the missing values to the table. It created a much larger table. Not efficient but works for now. If you have other jmp recommendation, please let me know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jane&lt;/P&gt;</description>
    <pubDate>Wed, 07 Aug 2024 17:34:25 GMT</pubDate>
    <dc:creator>Pandasgroupby</dc:creator>
    <dc:date>2024-08-07T17:34:25Z</dc:date>
    <item>
      <title>Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779671#M96090</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a big data table and&amp;nbsp; a script to plot the subset by product. You can see the "where" in the script below.&lt;/P&gt;&lt;P&gt;I would like to keep the x-axis to be the same from product to product. The x-axis has two variables "PROC" and "CoreVoltage".&amp;nbsp; &amp;nbsp; As you can see from the jpg file, at one "PROC", only some of the "CoreVoltage" showed up. How to show all the "PROC" and "CoreVoltage" combinations so from product to product the plots keep the same x-axis ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Current Data Table();
Summarize( dt, prodval = By( :"prod" ), );
n = N Items( prodval );
	
For(i = 1,i&amp;lt;=n,i ++,	
	Graph Builder(
		Size( 1790, 1234 ),
		Variables(
			X( :PROC ),
			X( :CoreVoltage, Position( 1 ) ),
			Y( :"Freq1"n )
		),
		Elements(
			Position( 1, 1 ),
			Heatmap( X( 1 ), X( 2 ), Y, Legend( 2 ), Label( "Label by Value" ) )
		),
		Where( :"prod" == prodval[i]),
		SendToReport(
			Dispatch(
				{},
				"PROC",
				ScaleBox,
				{Add Ref Line( 2, "Solid", "Green", "", 2 ),
				Add Ref Line( 6, "Solid", "Green", "", 2 ),
				Label Row( 1, {Inside Ticks( 1 ), Show Major Grid( 1 )} )}
				/*Label Row( 
					{Tick Mark( Label( "FF" ), Label( "0.57" ) ),
                    Tick Mark( Label( "FF" ), Label( "0.62" ) ),
                    Tick Mark( Label( "FF" ), Label( "0.97" ) )}
				 )}*/
			),
			Dispatch(
				{},
				"Freq1",
				ScaleBox,
				{Min( 1440), Max( 2440 ), Inc(20 ), Minor Ticks( 1 ),
				Label Row( {Show Major Grid( 1 ), Show Minor Grid( 1 )} )}
			),
			Dispatch(
			{},
			"graph title",
			TextEditBox,
			{Set Text( prodval[i] || " Freq vs. PROC &amp;amp; CoreVoltage" )}
			),
		)
	);
)

&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 06 Aug 2024 19:58:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779671#M96090</guid>
      <dc:creator>Pandasgroupby</dc:creator>
      <dc:date>2024-08-06T19:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779709#M96091</link>
      <description>&lt;P&gt;Have you tried using :Prod as a Page value rather than as part of a Where() clause?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Aug 2024 20:53:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779709#M96091</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-08-06T20:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779798#M96112</link>
      <description>&lt;P&gt;do you need the plots in separate windows?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 08:15:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779798#M96112</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-08-07T08:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779873#M96134</link>
      <description>&lt;P&gt;There are many products. With the current setup, each of them will pop up to a separate window. Using page, the window will be super long.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 13:53:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779873#M96134</guid>
      <dc:creator>Pandasgroupby</dc:creator>
      <dc:date>2024-08-07T13:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779874#M96135</link>
      <description>&lt;P&gt;Yes. Do you also recommend using Page for Prod ? To use Page, I have to split data into smaller size chunks. For each smaller chunks, the pages will show the same x-axis. From chunk to chunk, they are different.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 14:05:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779874#M96135</guid>
      <dc:creator>Pandasgroupby</dc:creator>
      <dc:date>2024-08-07T14:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779887#M96137</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/59097"&gt;@Pandasgroupby&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Using page, the window will be super long.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;yes, a huge issue of "page"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- but it got fixed with JMP18:&lt;/P&gt;&lt;P&gt;&lt;LI-MESSAGE title="Graph Builder - align 'pages' next to each other or as grid" uid="561841" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-align-pages-next-to-each-other-or-as-grid/m-p/561841#U561841" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, for up to 30 or 100 products, it should be now OK via page - and much easier to handle than 30- 100 individual plots.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 14:29:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779887#M96137</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-08-07T14:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779891#M96140</link>
      <description>&lt;P&gt;Thank you for pointing me to the page grid solution. The grid plot with page option might not work for me. I didn't include in the jsl the y-axis handling. Each y axis range, grid and reference line is different. I don't know how to handle y-axis by scripting on each page.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 14:51:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779891#M96140</guid>
      <dc:creator>Pandasgroupby</dc:creator>
      <dc:date>2024-08-07T14:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779948#M96152</link>
      <description>&lt;P&gt;You might also want to consider using Local Data Filter, also remember to link axes&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1723050542215.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66929i12A3FFA1A3090E1D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1723050542215.png" alt="jthi_0-1723050542215.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="jthi_1-1723050562705.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/66930iE4DC628F8981D9F5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1723050562705.png" alt="jthi_1-1723050562705.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 17:09:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779948#M96152</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-08-07T17:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779950#M96154</link>
      <description>&lt;P&gt;Hi, jthi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Somehow my local filter couldn't filter the data. But the filter script works. I'm not sure the difference between the filter and "where". To me the "where" is simpler.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Jane&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 17:30:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779950#M96154</guid>
      <dc:creator>Pandasgroupby</dc:creator>
      <dc:date>2024-08-07T17:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779951#M96155</link>
      <description>&lt;P&gt;Thank you everyone for the suggestion. I used a different approach and solved the issue. I used python and added the missing values to the table. It created a much larger table. Not efficient but works for now. If you have other jmp recommendation, please let me know.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jane&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 17:34:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779951#M96155</guid>
      <dc:creator>Pandasgroupby</dc:creator>
      <dc:date>2024-08-07T17:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder subset plots with the same axis labels</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779977#M96158</link>
      <description>&lt;P&gt;- no need to use python to add the missing values ; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- no need to add the missing values if you closely follow the tipps of &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt; and&amp;nbsp;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp; : )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;besides that, you could vote here:&lt;LI-MESSAGE title="🙏 Column Property: Inclusive Values" uid="730865" url="https://community.jmp.com/t5/JMP-Wish-List/Column-Property-Inclusive-Values/m-p/730865#U730865" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;... with this feature there is no need anymore to add any missing values.&lt;/P&gt;&lt;P&gt;- but actually, no need to vote anymore : )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 18:45:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-subset-plots-with-the-same-axis-labels/m-p/779977#M96158</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-08-07T18:45:55Z</dc:date>
    </item>
  </channel>
</rss>

