<?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: Show only one graph out of a matrix of graphs in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/716642#M89851</link>
    <description>&lt;P&gt;For solving the first problem:&lt;BR /&gt;If you filter your data just keeping e.g. a graph with GroupX=1, GroupY=1 and another graph with GroupX=2,GroupY=2, you will indeed still see a 2x2 matrix of graphs with x=1,2&amp;nbsp; , x=1,2 with just position 1/1 and 2/2 containing a graph and the other 2 positions empty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't care where the individual plots show up, then you could remove the white regions by&lt;/P&gt;&lt;P&gt;- combining the columns used for GroupX and GroupY to a single column (get still the required intersections)&lt;/P&gt;&lt;P&gt;- use this column as Wrap&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the other hand, this example also shows the disadvantage:&lt;BR /&gt;you lose the information about the specific X and Y value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From daily work in Data Visualization, I know:&lt;BR /&gt;There are definitely cases where the benefit of the denser packing overweights the disadvantage of the lost structure :)&lt;/img&gt;&lt;BR /&gt;Especially when the generated Matrix has to fit into a Powerpoint slide ...&lt;BR /&gt;&lt;BR /&gt;related topic:&amp;nbsp;&lt;LI-MESSAGE title="X group: restrict the values on the axis to the respective group" uid="542325" url="https://community.jmp.com/t5/JMP-Wish-List/X-group-restrict-the-values-on-the-axis-to-the-respective-group/m-p/542325#U542325" 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;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1705091525613.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60300i0FBA3AA83EBC26F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1705091525613.png" alt="hogi_0-1705091525613.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1705091546128.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60301iFD8F2C27F8D3B893/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1705091546128.png" alt="hogi_1-1705091546128.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

Graph Builder(
	Variables(
		X( :height ),
		Y( :weight ),
		Group X( :age ),
		Group Y( :sex ),
		Overlay( :sex )
	),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :age, :sex ),
			Where( :age == 12 ),
			Where( :sex == "F" )
		),
		Add Filter(
			columns( :age, :sex ),
			Where( :age == 15 ),
			Where( :sex == "M" )
		),
				Add Filter(
			columns( :age, :sex ),
			Where( :age == 17 ),
			Where( :sex == "F" )
		)
	)
);

New Column( "Concatenate[age,sex]",
	Character,
	Formula( Char( :age ) || "_" || :sex ),
);

Graph Builder(
	Variables(
		X( :height ),
		Y( :weight ),
		Group X( :"Concatenate[age,sex]"n ),
		Overlay( :sex )
	),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :"Concatenate[age,sex]"n ),
			Where( :"Concatenate[age,sex]"n == {"12_F", "15_M", "17_F"} )
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 12 Jan 2024 20:40:16 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2024-01-12T20:40:16Z</dc:date>
    <item>
      <title>Show only one graph out of a matrix of graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/715318#M89826</link>
      <description>&lt;P&gt;When there is a matrix of graphs, say 4x5 of them on the dashboard, how do I pick just one graph of all and show it zoomed in? The selection does happen when a data filter is used when the two columns from the data table used to form the graphs in the horizontal and vertical direction and are narrowed down to a desired pair. It would be useful to have a single zoomed in graph where this selection is made from a drop down lists instead of histogram like control on the data filter form.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 16:38:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/715318#M89826</guid>
      <dc:creator>JMPer1</dc:creator>
      <dc:date>2024-01-11T16:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Show only one graph out of a matrix of graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/715435#M89829</link>
      <description>&lt;P&gt;If you have a single graph builder with x and y groups and filter&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1704992575124.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60269iF53BEE96D448BBD3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1704992575124.png" alt="jthi_0-1704992575124.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;just by filtering down the data you should get single graph&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1704992604161.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60270i13F324113BC52E00/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1704992604161.png" alt="jthi_1-1704992604161.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can change how filter looks from filter's red triangle menu&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1704992639655.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60271i9D7FB102A6D6E397/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1704992639655.png" alt="jthi_2-1704992639655.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2024 17:04:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/715435#M89829</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-11T17:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Show only one graph out of a matrix of graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/716642#M89851</link>
      <description>&lt;P&gt;For solving the first problem:&lt;BR /&gt;If you filter your data just keeping e.g. a graph with GroupX=1, GroupY=1 and another graph with GroupX=2,GroupY=2, you will indeed still see a 2x2 matrix of graphs with x=1,2&amp;nbsp; , x=1,2 with just position 1/1 and 2/2 containing a graph and the other 2 positions empty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't care where the individual plots show up, then you could remove the white regions by&lt;/P&gt;&lt;P&gt;- combining the columns used for GroupX and GroupY to a single column (get still the required intersections)&lt;/P&gt;&lt;P&gt;- use this column as Wrap&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the other hand, this example also shows the disadvantage:&lt;BR /&gt;you lose the information about the specific X and Y value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From daily work in Data Visualization, I know:&lt;BR /&gt;There are definitely cases where the benefit of the denser packing overweights the disadvantage of the lost structure :)&lt;/img&gt;&lt;BR /&gt;Especially when the generated Matrix has to fit into a Powerpoint slide ...&lt;BR /&gt;&lt;BR /&gt;related topic:&amp;nbsp;&lt;LI-MESSAGE title="X group: restrict the values on the axis to the respective group" uid="542325" url="https://community.jmp.com/t5/JMP-Wish-List/X-group-restrict-the-values-on-the-axis-to-the-respective-group/m-p/542325#U542325" 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;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1705091525613.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60300i0FBA3AA83EBC26F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1705091525613.png" alt="hogi_0-1705091525613.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1705091546128.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60301iFD8F2C27F8D3B893/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1705091546128.png" alt="hogi_1-1705091546128.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

Graph Builder(
	Variables(
		X( :height ),
		Y( :weight ),
		Group X( :age ),
		Group Y( :sex ),
		Overlay( :sex )
	),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :age, :sex ),
			Where( :age == 12 ),
			Where( :sex == "F" )
		),
		Add Filter(
			columns( :age, :sex ),
			Where( :age == 15 ),
			Where( :sex == "M" )
		),
				Add Filter(
			columns( :age, :sex ),
			Where( :age == 17 ),
			Where( :sex == "F" )
		)
	)
);

New Column( "Concatenate[age,sex]",
	Character,
	Formula( Char( :age ) || "_" || :sex ),
);

Graph Builder(
	Variables(
		X( :height ),
		Y( :weight ),
		Group X( :"Concatenate[age,sex]"n ),
		Overlay( :sex )
	),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :"Concatenate[age,sex]"n ),
			Where( :"Concatenate[age,sex]"n == {"12_F", "15_M", "17_F"} )
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Jan 2024 20:40:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/716642#M89851</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-01-12T20:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Show only one graph out of a matrix of graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/717341#M89907</link>
      <description>&lt;P&gt;I am missing the "Display Options" item on the menu, not sure where to find it?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMPer1_0-1705419794521.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60331iE14E13CF6F3882C3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JMPer1_0-1705419794521.png" alt="JMPer1_0-1705419794521.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2024 15:43:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Show-only-one-graph-out-of-a-matrix-of-graphs/m-p/717341#M89907</guid>
      <dc:creator>JMPer1</dc:creator>
      <dc:date>2024-01-16T15:43:46Z</dc:date>
    </item>
  </channel>
</rss>

