<?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: N points Label in Graph Builder with a Local Data Filter in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408793#M65862</link>
    <description>&lt;P&gt;I think this has at least quite many of them &lt;A href="https://www.jmp.com/support/help/en/15.1/index.shtml#page/jmp/work-with-the-hover-label-execution-context.shtml#ww599987" target="_blank" rel="noopener"&gt;Work with the hover label execution context&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Aug 2021 18:35:05 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2021-08-11T18:35:05Z</dc:date>
    <item>
      <title>N points Label in Graph Builder with a Local Data Filter</title>
      <link>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408766#M65859</link>
      <description>&lt;P&gt;I'm wondering if it's an easy task to add an N points label to the following graph? So that it shows the number of people in that age/sex group based off of what's selected in the local data filter.&amp;nbsp; So mousing over the mail line with the current selection at age 12 (robert and tim) should show N = 2.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I explicitly do NOT want to add the points elements and N off of that since I have to mouse to a different place to see it.&amp;nbsp;&amp;nbsp;&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");

dt:name &amp;lt;&amp;lt; Label(1);

// this shows up as a bunch of the same value instead of just the number
dt &amp;lt;&amp;lt; New Column("N_sex_age", Formula(ColSum(1, :sex, :age)));
dt:"N_sex_age"n &amp;lt;&amp;lt; Label(1);

dt &amp;lt;&amp;lt; Graph Builder(
	Size( 534, 450 ),
	Show Control Panel( 0 ),
	Variables( X( :age ), Y( :weight ), Overlay( :sex ) ),
	Elements( Line( X, Y, Legend( 15 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :name ),
			Where(
				:name == {"LILLIE", "MARION", "MARTHA", "MICHAEL", "PHILLIP",
				"ROBERT", "TIM"}
			),
			Display( :name, N Items( 15 ), Find( Set Text( "" ) ) )
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 19:54:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408766#M65859</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2023-06-09T19:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: N points Label in Graph Builder with a Local Data Filter</title>
      <link>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408787#M65860</link>
      <description>&lt;P&gt;Could using Hover labels work?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1628703487119.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34942i4B3436CF3B9CDA3B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1628703487119.png" alt="jthi_1-1628703487119.png" /&gt;&lt;/span&gt;&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="jthi_0-1628703431825.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/34941iEA9D79A2A5947D71/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1628703431825.png" alt="jthi_0-1628703431825.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/15.1/#page/jmp/add-rich-text-to-hover-labels.shtml#ww1191521" target="_blank" rel="noopener"&gt;Add rich text to hover labels&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 17:39:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408787#M65860</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-08-11T17:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: N points Label in Graph Builder with a Local Data Filter</title>
      <link>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408790#M65861</link>
      <description>&lt;P&gt;Yeah that works fine.&amp;nbsp; Is there documentation for all of the local variables?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 18:16:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408790#M65861</guid>
      <dc:creator>vince_faller</dc:creator>
      <dc:date>2021-08-11T18:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: N points Label in Graph Builder with a Local Data Filter</title>
      <link>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408793#M65862</link>
      <description>&lt;P&gt;I think this has at least quite many of them &lt;A href="https://www.jmp.com/support/help/en/15.1/index.shtml#page/jmp/work-with-the-hover-label-execution-context.shtml#ww599987" target="_blank" rel="noopener"&gt;Work with the hover label execution context&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Aug 2021 18:35:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/N-points-Label-in-Graph-Builder-with-a-Local-Data-Filter/m-p/408793#M65862</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-08-11T18:35:05Z</dc:date>
    </item>
  </channel>
</rss>

