<?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 show reference line labels in Normal Quantile Plot (JMP 16)? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529073#M75255</link>
    <description>&lt;P&gt;For some reason you cannot display reference lines on main Y-axis if you are using Normal Probability as axis type.&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");

ow = dt &amp;lt;&amp;lt; Oneway(
	Y(:weight),
	X(:sex),
	All Graphs(0),
	Plot Quantile by Actual(1),
	SendToReport(Dispatch({"Normal Quantile Plot"}, "2", ScaleBox, {Label Row({Show Major Grid(0), Show Major Labels(0)})}))
);

//calculate quantiles

//set reference lines
axisbox = Report(ow)[AxisBox(1)];
axisbox &amp;lt;&amp;lt; Add Ref Line(0.05, "Solid", "Black", "5%", 1, 1, Label Settings({Label Position("Outside"), Opposite Axis(0)}));
axisbox &amp;lt;&amp;lt; Add Ref Line(0.2, "Solid", "Black", "20%", 1, 1, Label Settings({Label Position("Outside"), Opposite Axis(1)}));
axisbox &amp;lt;&amp;lt; Add Ref Line(0.5, "Solid", "Black", "50%", 1, 1, Label Settings({Label Position("Inside Inline"), Opposite Axis(0)}));
axisbox &amp;lt;&amp;lt; Add Ref Line(0.1, "Solid", "Black", "10%", 1, 1, Label Settings({Label Position("Outside"), Opposite Axis(0)}));

wait(2);
axisbox &amp;lt;&amp;lt; Scale("Linear");
axisbox &amp;lt;&amp;lt; Show Major Labels(0);
axisbox &amp;lt;&amp;lt; Show Major Grid(0);
wait(2);
axisbox &amp;lt;&amp;lt; Scale("Normal Probability");
axisbox &amp;lt;&amp;lt; Show Major Labels(0);
axisbox &amp;lt;&amp;lt; Show Major Grid(0);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 01 Aug 2022 20:28:31 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2022-08-01T20:28:31Z</dc:date>
    <item>
      <title>How to show reference line labels in Normal Quantile Plot (JMP 16)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529022#M75251</link>
      <description>&lt;P&gt;This question is about the Normal Quantile Plot in JMP 16.&lt;/P&gt;&lt;P&gt;Is it possible to show reference line labels on the primary Y-axis (Label Position: Outside, Label Axis Side: Same)?&lt;/P&gt;&lt;P&gt;Here is what I have done:&lt;/P&gt;&lt;P&gt;Sample data file: Big Class.jmp&lt;/P&gt;&lt;P&gt;Analyze &amp;gt; Fit Y by X&lt;/P&gt;&lt;P&gt;Y, Response: weight&lt;/P&gt;&lt;P&gt;X, factor: sex&lt;/P&gt;&lt;P&gt;In the resulting Normal Quantile Plot I removed Y-axis Grid Lines and Labels, and attempted to replace them with my own Reference Lines and labels.&lt;/P&gt;&lt;P&gt;For 50% reference line I used:&lt;/P&gt;&lt;P&gt;Label Position: Inside Inline&lt;/P&gt;&lt;P&gt;Label Axis Side: Same&lt;/P&gt;&lt;P&gt;For 50% reference line I used:&lt;/P&gt;&lt;P&gt;Label Position: Inside Inline&lt;/P&gt;&lt;P&gt;Label Axis Side: Same&amp;nbsp;(The label shows up as expected.)&lt;/P&gt;&lt;P&gt;For 20% reference line I used:&lt;/P&gt;&lt;P&gt;Label Position: Outside&lt;/P&gt;&lt;P&gt;Label Axis Side: Opposite&amp;nbsp;(The label shows up as expected.)&lt;/P&gt;&lt;P&gt;For 5% reference line I used:&lt;/P&gt;&lt;P&gt;Label Position: Outside&lt;/P&gt;&lt;P&gt;Label Axis Side: Same (The label does not show up on the plot!)&lt;/P&gt;&lt;P&gt;I would like to eventually implement this in a script, but I couldn’t figure out how to do it in a script either.&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:26:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529022#M75251</guid>
      <dc:creator>Rondin1989</dc:creator>
      <dc:date>2023-06-11T11:26:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to show reference line labels in Normal Quantile Plot (JMP 16)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529073#M75255</link>
      <description>&lt;P&gt;For some reason you cannot display reference lines on main Y-axis if you are using Normal Probability as axis type.&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");

ow = dt &amp;lt;&amp;lt; Oneway(
	Y(:weight),
	X(:sex),
	All Graphs(0),
	Plot Quantile by Actual(1),
	SendToReport(Dispatch({"Normal Quantile Plot"}, "2", ScaleBox, {Label Row({Show Major Grid(0), Show Major Labels(0)})}))
);

//calculate quantiles

//set reference lines
axisbox = Report(ow)[AxisBox(1)];
axisbox &amp;lt;&amp;lt; Add Ref Line(0.05, "Solid", "Black", "5%", 1, 1, Label Settings({Label Position("Outside"), Opposite Axis(0)}));
axisbox &amp;lt;&amp;lt; Add Ref Line(0.2, "Solid", "Black", "20%", 1, 1, Label Settings({Label Position("Outside"), Opposite Axis(1)}));
axisbox &amp;lt;&amp;lt; Add Ref Line(0.5, "Solid", "Black", "50%", 1, 1, Label Settings({Label Position("Inside Inline"), Opposite Axis(0)}));
axisbox &amp;lt;&amp;lt; Add Ref Line(0.1, "Solid", "Black", "10%", 1, 1, Label Settings({Label Position("Outside"), Opposite Axis(0)}));

wait(2);
axisbox &amp;lt;&amp;lt; Scale("Linear");
axisbox &amp;lt;&amp;lt; Show Major Labels(0);
axisbox &amp;lt;&amp;lt; Show Major Grid(0);
wait(2);
axisbox &amp;lt;&amp;lt; Scale("Normal Probability");
axisbox &amp;lt;&amp;lt; Show Major Labels(0);
axisbox &amp;lt;&amp;lt; Show Major Grid(0);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 01 Aug 2022 20:28:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529073#M75255</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-08-01T20:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to show reference line labels in Normal Quantile Plot (JMP 16)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529127#M75260</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thank you for the prompt and thorough response. I ran your script in JMP 13, and it produced the result that I wanted (reference line labels display properly), because JMP 13 does not understand Label Settings (Label Position &amp;amp; Label Axis Side). However, JMP 16 does&amp;nbsp;understand Label Settings, and does let me do what I want. Should this be reported as a bug in JMP 16?&lt;/P&gt;&lt;P&gt;JMP 13 plot:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMP13_Plot.png" style="width: 472px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44471iA980EECB0E109D92/image-size/large?v=v2&amp;amp;px=999" role="button" title="JMP13_Plot.png" alt="JMP13_Plot.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;JMP 16 plot:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMP16_Plot.png" style="width: 448px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44472i4C1A24F4E38FAC7B/image-size/large?v=v2&amp;amp;px=999" role="button" title="JMP16_Plot.png" alt="JMP16_Plot.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 22:14:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529127#M75260</guid>
      <dc:creator>Rondin1989</dc:creator>
      <dc:date>2022-08-01T22:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to show reference line labels in Normal Quantile Plot (JMP 16)?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529242#M75273</link>
      <description>&lt;P&gt;I think it is worth reporting this to JMP Support through email. They will know if it is working as intended or not (to me it seems like it isn't working as intended in JMP16).&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 07:27:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-show-reference-line-labels-in-Normal-Quantile-Plot-JMP-16/m-p/529242#M75273</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-08-02T07:27:16Z</dc:date>
    </item>
  </channel>
</rss>

