<?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: Is there a way to set the plot ranges for all plots in a platform the same? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524915#M74936</link>
    <description>&lt;P&gt;I think the answer probably depends on which platform that you refer to.&amp;nbsp; For the distribution there is a uniform scaling option, shown here in the associated JSL, but can be turned on from the red triangle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Distribution(
	Uniform Scaling( 1 ),
	Continuous Distribution( Column( :NPN1 ), Process Capability( 0 ) ),
	Histograms Only,
	Where( :lot_id == "lot01" )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 21 Jul 2022 19:55:04 GMT</pubDate>
    <dc:creator>David_Burnham</dc:creator>
    <dc:date>2022-07-21T19:55:04Z</dc:date>
    <item>
      <title>Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524890#M74934</link>
      <description>&lt;P&gt;I think the subject is self-explanatory:&lt;/P&gt;&lt;P&gt;I run a platform and have many generated plots. Now in many cases it makes a lot of sense to have all the plot axes ranges to be the same. It is very tedious to do this by hand.&lt;/P&gt;&lt;P&gt;I tried holding the Ctrl key when changing the axes on one plot, but that does not propagate to the other plots.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:26:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524890#M74934</guid>
      <dc:creator>TheDude</dc:creator>
      <dc:date>2023-06-11T11:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524903#M74935</link>
      <description>&lt;P&gt;Not sure if it can be done interactively, but it can be scripted. Here is fairly simple example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

dist = dt &amp;lt;&amp;lt; Distribution(
	Continuous Distribution(Column(:NPN1), Process Capability(0)),
	Histograms Only,
	By(:lot_id)
);

wait(1);
(dist &amp;lt;&amp;lt; XPath("//AxisBox")) &amp;lt;&amp;lt; Min(0);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Jul 2022 19:26:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524903#M74935</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-07-21T19:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524915#M74936</link>
      <description>&lt;P&gt;I think the answer probably depends on which platform that you refer to.&amp;nbsp; For the distribution there is a uniform scaling option, shown here in the associated JSL, but can be turned on from the red triangle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Distribution(
	Uniform Scaling( 1 ),
	Continuous Distribution( Column( :NPN1 ), Process Capability( 0 ) ),
	Histograms Only,
	Where( :lot_id == "lot01" )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Jul 2022 19:55:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524915#M74936</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2022-07-21T19:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524926#M74938</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I propagated the settings for the ranges successfully but perhaps slightly differently. &amp;nbsp;My method:&lt;/P&gt;&lt;P&gt;1. Set the ranges in in one graph&lt;/P&gt;&lt;P&gt;2. Right -Click on the axis and "Edit &amp;gt; Copy Axis Settings"&lt;/P&gt;&lt;P&gt;3. Ctrl-Right-Click "Edit&amp;gt;Paste Axis Settings"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The simple ctrl - Axis settings doesn't do it as you have already found out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 20:26:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524926#M74938</guid>
      <dc:creator>Hegedus1</dc:creator>
      <dc:date>2022-07-21T20:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524941#M74940</link>
      <description>&lt;P&gt;Hi David, specifically, I am using the Measurement Systems Analysis (Gauge R&amp;amp;R) platform.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 20:52:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524941#M74940</guid>
      <dc:creator>TheDude</dc:creator>
      <dc:date>2022-07-21T20:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524942#M74941</link>
      <description>&lt;P&gt;Andy, this is almost as tedious as changing the axes limits by hand one by one.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 20:53:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524942#M74941</guid>
      <dc:creator>TheDude</dc:creator>
      <dc:date>2022-07-21T20:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524975#M74944</link>
      <description>&lt;P&gt;The 'ctrl' in step 3 will apply the settings to all plots in the window.&amp;nbsp; It's pretty quick and likely the fastest way to do it without scripting.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 21:27:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524975#M74944</guid>
      <dc:creator>mikedriscoll</dc:creator>
      <dc:date>2022-07-21T21:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524978#M74946</link>
      <description>&lt;P&gt;As has been pointed out, the interactive method is to use the control key whilst selecting the option to paste axis settings (having previously copied the settings).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With scripting you can do something like this:&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);

open("$SAMPLE_DATA/Variability Data/3 Factors Nested &amp;amp; Crossed.jmp");

vc = Variability Chart( Y( :Y ), X( :Instrument, :Part ), By( :Operator ) );

// get a list of outlines that contain variability charts
lstOutlines = vc &amp;lt;&amp;lt; xpath("//OutlineBox[starts-with(., 'Variability Chart')]");

// each outline contains 2 charts (Y and StdDev)
// and each chart contains 2 axes (1st = y-axis, 2nd = x-axis)

// build a list of y-axes for the Y chart and also determine
// the minimum min and maximum max
lstAxes = {};
minmin = 1e6;
maxmax = -1e6;
for each({outline},lstOutlines,
	yAxis = outline[1][AxisBox(1)];
	minmin = min(minmin,yAxis&amp;lt;&amp;lt;getmin);
	maxmax = max(maxmax,yAxis&amp;lt;&amp;lt;getmax);
);

// apply common scaling to the y-axis of the Y plots
for each({outline},lstOutlines,
	yAxis = outline[1][AxisBox(1)];
	yAxis &amp;lt;&amp;lt; max(maxmax);
	yAxis &amp;lt;&amp;lt; min(minmin);
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2022 22:04:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/524978#M74946</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2022-07-21T22:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/525432#M74989</link>
      <description>&lt;P&gt;I see.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is a completely non-intuitive method (typical JMP).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 20:27:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/525432#M74989</guid>
      <dc:creator>TheDude</dc:creator>
      <dc:date>2022-07-22T20:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/525447#M74990</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/34571"&gt;@TheDude&lt;/a&gt;, If you have a methodology that you think would be better, I suggest that you place that in the JMP Wish List.&amp;nbsp; The JMP folks will then take a look and hopefully come up with an improved methodology.&amp;nbsp; &amp;nbsp;I have done this in the past, and have had the JMP Folks come back and show me why my suggestion was short sighted.......and I have also had to opposite happen, where they came back to me and worked through my suggested methodology, and it was implemented into the next release of JMP.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2022 21:10:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/525447#M74990</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-07-22T21:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the plot ranges for all plots in a platform the same?</title>
      <link>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/525468#M74992</link>
      <description>&lt;P&gt;Well, here is another approach.&lt;/P&gt;
&lt;P&gt;Select all of your columns that are to have the same axis.&lt;/P&gt;
&lt;P&gt;Go to the columns menu and choose Standardize Attributes.&lt;/P&gt;
&lt;P&gt;Under Standardize Properties choose Axis from the list of Column Properties.&lt;/P&gt;
&lt;P&gt;It may not be necessary, but I would recommend that you change the "Save to column" to "All Axis Properties"&lt;/P&gt;
&lt;P&gt;Click the Set Default Axis Settings button and specify how you want the axis to look.&lt;/P&gt;
&lt;P&gt;Click the OK boxes to get out of the dialog.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now every plot you create with those columns will have the same axis properties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jul 2022 00:51:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Is-there-a-way-to-set-the-plot-ranges-for-all-plots-in-a/m-p/525468#M74992</guid>
      <dc:creator>Dan_Obermiller</dc:creator>
      <dc:date>2022-07-23T00:51:58Z</dc:date>
    </item>
  </channel>
</rss>

