<?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: How to add special tags on top of this mapping? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697281#M88280</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
Column(dt, "name") &amp;lt;&amp;lt; Label(0);
Column(dt, "height") &amp;lt;&amp;lt; Label(1);

dt &amp;lt;&amp;lt; Select Where(Row() == Col Min(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Clear Select;
dt &amp;lt;&amp;lt; Select Where(Row() == Col Max(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Clear Select;

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Variables(X(:weight), Y(:height), Group X(:age), Color(:sex)),
	Elements(
		Bar(X, Y, Legend(6), Response Axis("X")),
		Points(X, Y, Color(0), Legend(7), Summary Statistic("Mean"))
	),
	SendToReport(
		Dispatch({"Points"}, "", OutlineBox, {Close(0)}),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				7,
				Properties(0, {Marker("Pipe"), Marker Size(0), Transparency(0)}, Item ID("Mean", 1))
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 13 Nov 2023 07:38:52 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2023-11-13T07:38:52Z</dc:date>
    <item>
      <title>How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697263#M88277</link>
      <description>&lt;P&gt;For example, we use Big Class.jmp data to make height and weight distribution maps according to different ages.&lt;BR /&gt;Can you show the starting and ending heights of different ages in the table in the order of row numbers?&lt;BR /&gt;Of course, there is no limit to how it can be displayed.Screenshots just make the requirements clear.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
ca = "R";
New Column( ca );
Column( ca ) &amp;lt;&amp;lt; Formula( Row() );
dt &amp;lt;&amp;lt; run formulas;
Column( ca ) &amp;lt;&amp;lt; deleteFormula;
d2 = dt &amp;lt;&amp;lt; Summary( Group( age ), Freq( 0 ), Weight( 0 ), Link to original data table( 0 ) );
d2 &amp;lt;&amp;lt; Update( With( dt ), Match Columns( age = age ), Add Columns from Update table( height ) );
Column( d2, 3 ) &amp;lt;&amp;lt; set name( "end" );
dt &amp;lt;&amp;lt; Sort( By( R ), Order( Descending ), replace table );
d2 &amp;lt;&amp;lt; Update( With( dt ), Match Columns( age = age ), Add Columns from Update table( height ) );
Column( d2, 4 ) &amp;lt;&amp;lt; set name( "beg" );
dt &amp;lt;&amp;lt; Sort( By( R ), Order( Ascending ), replace table );
d2 &amp;lt;&amp;lt; delete columns( 2 );
dt &amp;lt;&amp;lt; Update( With( d2 ), Match Columns( age = age ) );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-11-13_14-48-26.png" style="width: 738px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58611i1A322D5018010676/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-11-13_14-48-26.png" alt="2023-11-13_14-48-26.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 07:08:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697263#M88277</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-11-13T07:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697276#M88278</link>
      <description>&lt;P&gt;I'm confused what you wish to display and where: tags on mapping? starting and ending heights in the table? Red arrow? Green checkmark?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 07:33:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697276#M88278</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-13T07:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697280#M88279</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;p1=dt&amp;lt;&amp;lt;Graph Builder(
	Variables( X( :weight ), Y( :height ), Group X( :age ), Color( :sex ) ),
	Elements( Bar( X, Y, Legend( 8 ), Response Axis( "X" ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-11-13_15-37-47.png" style="width: 172px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58612i724FC63027414E43/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-11-13_15-37-47.png" alt="2023-11-13_15-37-47.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 07:38:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697280#M88279</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-11-13T07:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697281#M88280</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
Column(dt, "name") &amp;lt;&amp;lt; Label(0);
Column(dt, "height") &amp;lt;&amp;lt; Label(1);

dt &amp;lt;&amp;lt; Select Where(Row() == Col Min(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Clear Select;
dt &amp;lt;&amp;lt; Select Where(Row() == Col Max(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Clear Select;

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Variables(X(:weight), Y(:height), Group X(:age), Color(:sex)),
	Elements(
		Bar(X, Y, Legend(6), Response Axis("X")),
		Points(X, Y, Color(0), Legend(7), Summary Statistic("Mean"))
	),
	SendToReport(
		Dispatch({"Points"}, "", OutlineBox, {Close(0)}),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				7,
				Properties(0, {Marker("Pipe"), Marker Size(0), Transparency(0)}, Item ID("Mean", 1))
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Nov 2023 07:38:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697281#M88280</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-13T07:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697287#M88281</link>
      <description>&lt;P&gt;Thanks Experts!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;This marked number can be further added with different colors or other distinctions.&lt;/SPAN&gt;&lt;SPAN class=""&gt;Enable to know which is the beginning and which is the end?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-11-13_15-44-16.png" style="width: 582px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58613iC627E4501A5E0C38/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-11-13_15-44-16.png" alt="2023-11-13_15-44-16.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 07:48:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697287#M88281</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-11-13T07:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697294#M88282</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");
Column(dt, "name") &amp;lt;&amp;lt; Label(0);
Column(dt, "height") &amp;lt;&amp;lt; Label(1);

dt &amp;lt;&amp;lt; Select Where(Row() == Col Min(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Colors("Red") &amp;lt;&amp;lt; Clear Select;
dt &amp;lt;&amp;lt; Select Where(Row() == Col Max(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Colors("Blue") &amp;lt;&amp;lt; Clear Select;

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Variables(X(:weight), Y(:height), Group X(:age), Color(:sex)),
	Elements(
		Bar(X, Y, Legend(6), Response Axis("X")),
		Points(X, Y, Color(0), Legend(7), Summary Statistic("Mean"))
	),
	SendToReport(
		Dispatch({"Points"}, "", OutlineBox, {Close(0)}),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				7,
				Properties(0, {Marker("Pipe"), Marker Size(0), Transparency(0)}, Item ID("Mean", 1))
			)}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Nov 2023 08:40:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697294#M88282</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-13T08:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697309#M88285</link>
      <description>&lt;P&gt;I added the total weight for each age to the graph so that the original marks don't show up again.How to modify the code.&lt;BR /&gt;Still need to consult an expert.Thanks!&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;d2=dt&amp;lt;&amp;lt;Summary(Group(age),sum(height),Freq("无"),Weight("无"),Link to original data table(0));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;dt&amp;lt;&amp;lt;Update(With(d2),Match Columns(age=age));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Column(dt, "name") &amp;lt;&amp;lt; Label(0);Column(dt, "height") &amp;lt;&amp;lt; Label(1);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;dt &amp;lt;&amp;lt; Select Where(Row() == Col Min(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Colors("Red") &amp;lt;&amp;lt; Clear Select;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;dt &amp;lt;&amp;lt; Select Where(Row() == Col Max(Row(), :age)) &amp;lt;&amp;lt; Label(1) &amp;lt;&amp;lt; Colors("Blue") &amp;lt;&amp;lt; Clear Select;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;gb = dt &amp;lt;&amp;lt;&amp;nbsp; Graph Builder(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Variables(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;X( :weight ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Y( :height ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Y( :"Sum(height)"n ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Group X( :age ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Color( :sex )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Elements(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Bar( X, Y, Legend( 5 ), Response Axis( "X" )),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Points(X, Y, Color(0), Legend(7), Summary Statistic("Sum")) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SendToReport(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Dispatch({"Points"}, "", OutlineBox, {Close(0)}),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Dispatch(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"400",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ScaleBox,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;{Legend Model(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;7,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Properties(0, {Marker("Pipe"), Marker Size(0), Transparency(0)}, Item ID("Mean", 1))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Elements(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Position( 1, 2 ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Bar( X, Y, Legend( 6 ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Response Axis( "X" ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Summary Statistic( "Max" ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Label( "Label by Value" )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;) ;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-11-13_18-00-17.png" style="width: 684px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58618i8C71B6BA091FA1AE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-11-13_18-00-17.png" alt="2023-11-13_18-00-17.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 10:19:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697309#M88285</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-11-13T10:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697320#M88287</link>
      <description>&lt;P&gt;Open the graph builders control panel and modify different variables for different plots to figure out what is possibly wrong.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 10:14:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697320#M88287</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-11-13T10:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to add special tags on top of this mapping?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697322#M88288</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-11-13_18-20-10.png" style="width: 704px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/58620i182C1D964B9D2965/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-11-13_18-20-10.png" alt="2023-11-13_18-20-10.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 10:20:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-special-tags-on-top-of-this-mapping/m-p/697322#M88288</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2023-11-13T10:20:42Z</dc:date>
    </item>
  </channel>
</rss>

