<?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 categorical variable as caption box or similiar in a graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/620154#M81932</link>
    <description>Hi Mark,&lt;BR /&gt;Do I understand you correct that you are refering to the column property "unit"? I already am using the Units column property. Y units are a fixed currency. The additional Information I want to Show is to what units are These Costs specific ( X per L, X per g etc).&lt;BR /&gt;Any other idea how to Show that in a plot like this?</description>
    <pubDate>Wed, 05 Apr 2023 12:07:19 GMT</pubDate>
    <dc:creator>Benjamin_Fuerst</dc:creator>
    <dc:date>2023-04-05T12:07:19Z</dc:date>
    <item>
      <title>How to add categorical variable as caption box or similiar in a graph</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/618601#M81794</link>
      <description>&lt;P&gt;Hello JMP Community,&lt;BR /&gt;I would like to add a unit of measure as an additional information in my graph.&lt;/P&gt;&lt;P&gt;This is what i could create, painted in there is a possible solution I would like to have.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for a hint how this could be done!&lt;/P&gt;&lt;P&gt;Have a great weekend everybody!&lt;/P&gt;&lt;P&gt;Ben&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="Benjamin_Fuerst_1-1680265905780.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/51639iDF4DD782175C0111/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Benjamin_Fuerst_1-1680265905780.png" alt="Benjamin_Fuerst_1-1680265905780.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I also tried:&lt;BR /&gt;Label by value for the right part: here JMP takes the value which the bars are colored by. But this is a different categorisation I need and dont want to change!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:31:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/618601#M81794</guid>
      <dc:creator>Benjamin_Fuerst</dc:creator>
      <dc:date>2023-06-11T11:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to add categorical variable as caption box or similiar in a graph</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/618695#M81806</link>
      <description>&lt;P&gt;You could use a bar graph on the left and a heatmap on the right&amp;nbsp;- then use &lt;STRONG&gt;Label by Value&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;OK for the labels&lt;BR /&gt;... but you need the "color" for something else, right?&lt;BR /&gt;What a pity that custom efined&amp;nbsp;&lt;STRONG&gt;row colors&lt;/STRONG&gt; don't overwrite the color settings of the GraphBuilder plot ....&lt;BR /&gt;&lt;BR /&gt;Some days ago I posed a wish for an &lt;STRONG&gt;overwrite dropzone&lt;BR /&gt;&lt;/STRONG&gt;the idea: use an additional column to change the settings for some rows AFTER applying the GraphBuilder legend settings.&lt;BR /&gt;Kudos are welcome:&amp;nbsp;&lt;LI-MESSAGE title="GraphBuilder: Overwrite Dropzone" uid="614834" url="https://community.jmp.com/t5/JMP-Wish-List/GraphBuilder-Overwrite-Dropzone/m-p/614834#U614834" 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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But perhaps there is no need for an overwrite drop zone - let's see what other users suggest within the possibilities of Jmp 17 ...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1680287410972.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/51662iF8359697F2BCC9C7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1680287410972.png" alt="hogi_0-1680287410972.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 &amp;lt;&amp;lt; Graph Builder(
	Show Control Panel( 0 ),
	Variables(
		X( :height ),
		X( :age ),
		Y( :name, Order By( :height, Ascending, Order Statistic( "Mean" ) ) ),
		Color( :sex )
	),
	Elements( Position( 1, 1 ), Bar( X, Y, Legend( 4 ) ) ),
	Elements(
		Position( 2, 1 ),
		Heatmap( X, Y, Legend( 7 ), Label( "Label by Value" ) )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 14:45:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/618695#M81806</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-27T14:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to add categorical variable as caption box or similiar in a graph</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/618812#M81819</link>
      <description>&lt;P&gt;Did you try the Units column property to see if the labeling is what you want?&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 16:58:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/618812#M81819</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2023-03-31T16:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to add categorical variable as caption box or similiar in a graph</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/619016#M81846</link>
      <description>&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt; you are right I need color for something Else. You got my kudo for your ideal on the wishlist!</description>
      <pubDate>Sat, 01 Apr 2023 18:04:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/619016#M81846</guid>
      <dc:creator>Benjamin_Fuerst</dc:creator>
      <dc:date>2023-04-01T18:04:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to add categorical variable as caption box or similiar in a graph</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/620154#M81932</link>
      <description>Hi Mark,&lt;BR /&gt;Do I understand you correct that you are refering to the column property "unit"? I already am using the Units column property. Y units are a fixed currency. The additional Information I want to Show is to what units are These Costs specific ( X per L, X per g etc).&lt;BR /&gt;Any other idea how to Show that in a plot like this?</description>
      <pubDate>Wed, 05 Apr 2023 12:07:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/620154#M81932</guid>
      <dc:creator>Benjamin_Fuerst</dc:creator>
      <dc:date>2023-04-05T12:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to add categorical variable as caption box or similiar in a graph</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/620165#M81935</link>
      <description>&lt;P&gt;Never mind. I realize you are plotting some continuous quantity on the X axis on the left side. JMP assumes that all the bars have the same measure, but they don't in your case.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 12:32:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/620165#M81935</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2023-04-05T12:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to add categorical variable as caption box or similiar in a graph</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/621750#M82079</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I figured out a workaround.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One can label the Unit of measure in the dataset and then select label by row in the graph builder.&lt;BR /&gt;If one still needs the "sum" attached to the bars, you can add a caption box "per factor" with the sum&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="Benjamin_Fuerst_1-1681218347746.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/51884iA736FD1F3127AE5A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Benjamin_Fuerst_1-1681218347746.png" alt="Benjamin_Fuerst_1-1681218347746.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="Benjamin_Fuerst_2-1681218483359.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/51885i45CD48FF2412A8DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Benjamin_Fuerst_2-1681218483359.png" alt="Benjamin_Fuerst_2-1681218483359.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 13:09:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-add-categorical-variable-as-caption-box-or-similiar-in-a/m-p/621750#M82079</guid>
      <dc:creator>Benjamin_Fuerst</dc:creator>
      <dc:date>2023-04-11T13:09:22Z</dc:date>
    </item>
  </channel>
</rss>

