<?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 How to add N Missing in caption box on graph builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-add-N-Missing-in-caption-box-on-graph-builder/m-p/914557#M107459</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm using Graph builder and I would like to add the number of missing values in the caption box on my graph builder, but is is not a statistic available. I am missing something or is there another way to add it ? Ideally in click-button.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm in JMP 19&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(
	Size( 659, 446 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Caption Box(
			X,
			Y,
			Legend( 4 ),
			Summary Statistic( "Mean" ),
			Summary Statistic 2( "5 Number Summary" ),
			Location( "Axis Table" )
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 20 Nov 2025 17:37:06 GMT</pubDate>
    <dc:creator>SophieCuvillier</dc:creator>
    <dc:date>2025-11-20T17:37:06Z</dc:date>
    <item>
      <title>How to add N Missing in caption box on graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-N-Missing-in-caption-box-on-graph-builder/m-p/914557#M107459</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm using Graph builder and I would like to add the number of missing values in the caption box on my graph builder, but is is not a statistic available. I am missing something or is there another way to add it ? Ideally in click-button.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm in JMP 19&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(
	Size( 659, 446 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :height ) ),
	Elements(
		Points( X, Y, Legend( 3 ) ),
		Caption Box(
			X,
			Y,
			Legend( 4 ),
			Summary Statistic( "Mean" ),
			Summary Statistic 2( "5 Number Summary" ),
			Location( "Axis Table" )
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Nov 2025 17:37:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-N-Missing-in-caption-box-on-graph-builder/m-p/914557#M107459</guid>
      <dc:creator>SophieCuvillier</dc:creator>
      <dc:date>2025-11-20T17:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to add N Missing in caption box on graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-N-Missing-in-caption-box-on-graph-builder/m-p/914596#M107467</link>
      <description>&lt;P&gt;nasty workaround:&lt;BR /&gt;You can add a second caption - and use a special transform column to mark the missing rows.&lt;/P&gt;
&lt;P&gt;A disadvantage:&lt;BR /&gt;it shows the number of missing entries as "N" (as we use this summary statistics) instead of N missing.&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-1763674624283.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87435iF4B775B26F2D2723/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1763674624283.png" alt="hogi_0-1763674624283.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" );
dt[[5,8,13], "height"]=[.,.,.];
Graph Builder(
	Transform Column( "missing", Formula( If( Is Missing( :height ), 1, . ) ) ),
	Size( 397, 341 ),
	Show Legend( 0 ),
	Graph Spacing( 4 ),
	Variables( X( :sex ), Y( :height ), Y( :missing, Position( 1 ) ) ),
	Elements(
		Points( X, Y( 1 ) ),
		Caption Box( X, Y( 1 ),  Summary Statistic( "Mean" ),
		Summary Statistic 2( "N" ),
		 Location( "Axis Table" ) ),
		Caption Box( X, Y( 2 ),  Summary Statistic( "N" ), Location( "Axis Table" ) )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 21:42:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-N-Missing-in-caption-box-on-graph-builder/m-p/914596#M107467</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-20T21:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to add N Missing in caption box on graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-N-Missing-in-caption-box-on-graph-builder/m-p/914597#M107468</link>
      <description>&lt;P&gt;Shouldn't all platforms provide the same set of aggregations?&lt;BR /&gt;When a program gives you a feature in one spot but hides it in another, you end up feeling weirdly jealous of yourself.&lt;/P&gt;
&lt;P&gt;If this makes sense to you, please vote:&amp;nbsp;&lt;LI-MESSAGE title="Please synchronize Summary Statistics (Tables/Summary - Tabulate - Graph Builder Summary Statistics - Distribution - Header Statistics)" uid="883581" url="https://community.jmp.com/t5/JMP-Wish-List/Please-synchronize-Summary-Statistics-Tables-Summary-Tabulate/m-p/883581#U883581" 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;</description>
      <pubDate>Thu, 20 Nov 2025 21:42:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-N-Missing-in-caption-box-on-graph-builder/m-p/914597#M107468</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-20T21:42:39Z</dc:date>
    </item>
  </channel>
</rss>

