<?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: Coloring dot distributions indvidually by &amp;quot;Value Colors&amp;quot; property (or alternative) in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282520#M54673</link>
    <description>&lt;P&gt;It does seem to do the trick, thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two small questions about this solution:&lt;/P&gt;&lt;P&gt;1. Can you script code the row colors?&lt;/P&gt;&lt;P&gt;2. Is there a way to dynamically link the two tables so when one value in the original column is selected the row of the concatenated is also highlighted?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jul 2020 16:10:17 GMT</pubDate>
    <dc:creator>FN</dc:creator>
    <dc:date>2020-07-28T16:10:17Z</dc:date>
    <item>
      <title>Coloring dot distributions indvidually by "Value Colors" property (or alternative)</title>
      <link>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282050#M54589</link>
      <description>&lt;P&gt;I would like to plot the data distributions but coloring each variable individually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="example_objective.png" style="width: 667px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25726iF057E61E30AF973A/image-size/large?v=v2&amp;amp;px=999" role="button" title="example_objective.png" alt="example_objective.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found the following property which encodes color base on max/min gradient or user specific data.&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="example.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25725i118A81F54D62C142/image-size/large?v=v2&amp;amp;px=999" role="button" title="example.png" alt="example.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, this might not the be the right approach.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code for the example which I manually composed to explain the goal is here:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Start of script;
Names Default To Here( 1 );
Clear Log();

dt = Open( "$SAMPLE_DATA/Bands Data.JMP" );

Graph Builder(
	Size( 534, 456 ),
	Show Control Panel( 0 ),
	Variables(
		Y( :viscosity, Combine( "Parallel Merged" ) ),
		Y( :proof cut, Position( 1 ), Combine( "Parallel Merged" ) ),
		Y( :blade pressure, Position( 1 ), Combine( "Parallel Merged" ) ),
		Color( :viscosity )
	),
	Elements( Points( Y( 1 ), Y( 2 ), Y( 3 ), Legend( 10 ) ) )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:03:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282050#M54589</guid>
      <dc:creator>FN</dc:creator>
      <dc:date>2023-06-11T11:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Coloring dot distributions indvidually by "Value Colors" property (or alternative)</title>
      <link>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282098#M54597</link>
      <description>&lt;P&gt;Is this kind of what you want?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="colors.PNG" style="width: 622px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25732iEC8FD695832113B2/image-size/large?v=v2&amp;amp;px=999" role="button" title="colors.PNG" alt="colors.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;It was created by subsetting each of the 3 columns of Viscosity, Proof Cut and Blade Pressure into 3 separate data tables.&amp;nbsp; Then adding doing a Color and Mark by Column on the one column in each table, and indicating to&amp;nbsp; Save to Column Property.&lt;/P&gt;
&lt;P&gt;Next, I changed the name of the column to "Value", and then added a new column called "Type" and set each of the values in the data table to what type of measurement it was.......Viscosity, Proof Cut or Blade Pressure.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally I concatenated the 3 data tables together, and brought up Graph Builder , placing the Value column as the X variable, and the Y Grouping as the Type.&lt;/P&gt;
&lt;P&gt;The script for the Graph Builder is below&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 531, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :Value ), Group Y( :Type ) ),
	Elements( Points( X, Legend( 5 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"graph title",
			TextEditBox,
			{Set Text( "Viscosity, Proof Cut &amp;amp; Blade Presure" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Jul 2020 00:55:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282098#M54597</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-27T00:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Coloring dot distributions indvidually by "Value Colors" property (or alternative)</title>
      <link>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282520#M54673</link>
      <description>&lt;P&gt;It does seem to do the trick, thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Two small questions about this solution:&lt;/P&gt;&lt;P&gt;1. Can you script code the row colors?&lt;/P&gt;&lt;P&gt;2. Is there a way to dynamically link the two tables so when one value in the original column is selected the row of the concatenated is also highlighted?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2020 16:10:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282520#M54673</guid>
      <dc:creator>FN</dc:creator>
      <dc:date>2020-07-28T16:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Coloring dot distributions indvidually by "Value Colors" property (or alternative)</title>
      <link>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282523#M54674</link>
      <description>&lt;P&gt;Looking at your solution again, if one normalizes each column variable first then you can color them directly within graph builder.&lt;/P&gt;&lt;P&gt;Notice that the example worked because the ranges were similar.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="FN_0-1595954507616.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/25779i43314FE16F704934/image-size/medium?v=v2&amp;amp;px=400" role="button" title="FN_0-1595954507616.png" alt="FN_0-1595954507616.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The concatenated table can have two columns to keep all the information:&lt;BR /&gt;-&amp;nbsp; Value (original)&lt;BR /&gt;- Normalized value (used for color)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The final question to accept the solution:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;How tall can a JMP table be?&lt;/LI&gt;&lt;LI&gt;How to link with original table?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The alternative for the second point will be to:&lt;/P&gt;&lt;P&gt;a) show the original value as information when you are hovering your mouse&lt;/P&gt;&lt;P&gt;b) or create graphlet with a column filter that changes the plot (image above).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As this will be a very long table it should be a solution that does not make JMP struggle.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2020 16:49:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282523#M54674</guid>
      <dc:creator>FN</dc:creator>
      <dc:date>2020-07-28T16:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Coloring dot distributions indvidually by "Value Colors" property (or alternative)</title>
      <link>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282532#M54675</link>
      <description>&lt;P&gt;The size of a JMP table is limited by the amount of RAM memory you have.&amp;nbsp; I have actually seen a demonstration with over a Billion rows.&lt;/P&gt;
&lt;P&gt;Concerning linking, you can do a virtual link between tables, or you can use&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Tables==&amp;gt;Join to put the data together.&amp;nbsp; However, in JMP it is typical to have multiple tables for a giving analysis.&amp;nbsp; The way JMP deals with that is to open a JMP Project, where you can place all of your tables and journals and charts, as well as items from outside the JMP domain.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2020 17:33:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Coloring-dot-distributions-indvidually-by-quot-Value-Colors-quot/m-p/282532#M54675</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-07-28T17:33:46Z</dc:date>
    </item>
  </channel>
</rss>

