<?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: overlaying data from multiple parameters (each with a unique scale) onto a map in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64055#M34196</link>
    <description>&lt;P&gt;BTW (to other interested individuals), it appears that there are even other ways:&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/td-p/50307" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/td-p/50307&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jul 2018 00:34:14 GMT</pubDate>
    <dc:creator>abmayfield</dc:creator>
    <dc:date>2018-07-27T00:34:14Z</dc:date>
    <item>
      <title>overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64046#M34189</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;I have routinely used JMP to overlay data on maps, a feature that I love. Normally, I standardize my data to where they are all on the same scale, stack the columns I want to plot, and overlay the stacked data in Graph Builder (as contour plots; see attached image for an example). However, I now want to overlay data from multiple parameters WITHOUT first standardizing them (so that they maintain their original scales). I realize I could make individual plots, copy them, and paste them into Adobe Illustrator, but I would prefer to use Graph Builder&amp;nbsp;and wrap by parameter name ("label") if at all possible. Is there a way I can stack columns that are NOT on the same scale and then build a map-based graph in which they feature different y axes? I have posted a datasheet in which I would like to plot temperature, salinity, and ALCC onto a map. Thanks!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2018-07-26 at 16.23.03.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11703i54C51CBA0A53ABC9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2018-07-26 at 16.23.03.png" alt="Screen Shot 2018-07-26 at 16.23.03.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 20:38:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64046#M34189</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-07-26T20:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64050#M34191</link>
      <description>&lt;P&gt;Is this the kind of thing you are looking for?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fourups.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11704i2616B7505C439276/image-size/large?v=v2&amp;amp;px=999" role="button" title="fourups.PNG" alt="fourups.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );

gb1 = Graph Builder(
	invisible,
	Size( 534, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :PNP1 ), Y( :NPN1 ), Color( :NPN2 ) ),
	Elements( Contour( X, Y, Legend( 5 ) ) )
);
gb2 = Graph Builder(
	invisible,
	Size( 534, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :NPN2 ), Y( :PNP3 ), Color( :PNP4 ) ),
	Elements( Contour( X, Y, Legend( 5 ) ) )
);
gb3 = Graph Builder(
	invisible,
	Size( 534, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :PNP4 ), Y( :NPN4 ), Color( :INM2 ) ),
	Elements( Contour( X, Y, Legend( 5 ) ) )
);
gb4 = Graph Builder(
	invisible,
	Size( 534, 454 ),
	Show Control Panel( 0 ),
	Variables( X( :PBA1 ), Y( :WPR1 ), Color( :PLY10 ) ),
	Elements( Contour( X, Y, Legend( 5 ) ) )
);

nw = New Window( "xxx", V List Box( hlb1 = H List Box(), hlb2 = H List Box() ) );

hlb1 &amp;lt;&amp;lt; append( Report( gb1 )[List Box( 2 )] );
hlb1 &amp;lt;&amp;lt; append( Report( gb2 )[List Box( 2 )] );
hlb2 &amp;lt;&amp;lt; append( Report( gb3 )[List Box( 2 )] );
hlb2 &amp;lt;&amp;lt; append( Report( gb4 )[List Box( 2 )] );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 26 Jul 2018 21:32:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64050#M34191</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-26T21:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64052#M34193</link>
      <description>&lt;P&gt;Jim, I completely forgot that combining windows was an option and did not realize how easy it is to copy JSL scripts to a common script window, so I think this will work. Basically, I am trying to make publication quality figures without the need to use Illustrator to merge different graphs, plots, etc. I like your script because it just shows the figures, not with all the confusing boxes and containers found in Dashboard! Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 22:29:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64052#M34193</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-07-26T22:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64053#M34194</link>
      <description>&lt;P&gt;This is just a simple add-on/alternative to Jim's detailed script: you might want to try using a LineUpBox.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = New Window( "xxx", V List Box(  lub = LineUpBox(ncol(2)) ) );

lub &amp;lt;&amp;lt; append( Report( gb1 )[List Box( 2 )] );
lub &amp;lt;&amp;lt; append( Report( gb2 )[List Box( 2 )] );
lub &amp;lt;&amp;lt; append( Report( gb3 )[List Box( 2 )] );
lub &amp;lt;&amp;lt; append( Report( gb4 )[List Box( 2 )] );
_fb = lub &amp;lt;&amp;lt; xpath("//FrameBox"); //get all frameboxes
_fb &amp;lt;&amp;lt; FrameSize(175,175);         //change the framebox size
lub &amp;lt;&amp;lt; Spacing(20,10);             //set horizontal and vertical spacing between &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 27 Jul 2018 00:18:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64053#M34194</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-07-27T00:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64054#M34195</link>
      <description>&lt;P&gt;Thank you for your response. Is the major difference in your script that the&amp;nbsp;frame size and spacing can be modified? What is a lineupbox?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 00:32:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64054#M34195</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-07-27T00:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64055#M34196</link>
      <description>&lt;P&gt;BTW (to other interested individuals), it appears that there are even other ways:&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/td-p/50307" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Graph-Builder-Wrap-With-different-Y-Axis-Scales/td-p/50307&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 00:34:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64055#M34196</guid>
      <dc:creator>abmayfield</dc:creator>
      <dc:date>2018-07-27T00:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64056#M34197</link>
      <description>&lt;P&gt;Best way to find that out is to look up LineUp Box() in the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Help==&amp;gt;Scripting Index&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 00:34:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64056#M34197</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-07-27T00:34:52Z</dc:date>
    </item>
    <item>
      <title>Re: overlaying data from multiple parameters (each with a unique scale) onto a map</title>
      <link>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64658#M34233</link>
      <description>&lt;P&gt;Framesize and spacing can be changed with Jim's solution as well.&amp;nbsp; I like using LineUpBox because after the window is drawn I can send the message to change ncol() or to change the spacing:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;lub &amp;lt;&amp;lt; ncol( 3 );
lub&amp;lt;&amp;lt; spacing( 20,6);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Jul 2018 06:10:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/overlaying-data-from-multiple-parameters-each-with-a-unique/m-p/64658#M34233</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-07-28T06:10:09Z</dc:date>
    </item>
  </channel>
</rss>

