<?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: Blue line of logworth: how to change? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690542#M87639</link>
    <description>&lt;P&gt;Where do I click to change these scripts?&lt;/P&gt;</description>
    <pubDate>Wed, 25 Oct 2023 19:42:27 GMT</pubDate>
    <dc:creator>ivanpicchi</dc:creator>
    <dc:date>2023-10-25T19:42:27Z</dc:date>
    <item>
      <title>Blue line of logworth: how to change?</title>
      <link>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/689991#M87593</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I change the logworth value to alpha 0.07? I would like the logworth effect summary line to be calculated for the alpha value I want.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ivanpicchi_0-1698167941521.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/57925i48F689DDC2B8A446/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ivanpicchi_0-1698167941521.png" alt="ivanpicchi_0-1698167941521.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 17:20:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/689991#M87593</guid>
      <dc:creator>ivanpicchi</dc:creator>
      <dc:date>2023-10-24T17:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: Blue line of logworth: how to change?</title>
      <link>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690234#M87616</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/51266"&gt;@ivanpicchi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;It seems that there is no GUI to change the blue line of logworth.&amp;nbsp;You have to use a script to change the line.&lt;BR /&gt;Here is an example.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;//Calculate logworth from alpha
alpha_level = 0.07;
logworth_values = -Log10( alpha_level );

//Get a reference for the report
rpt = Current Report();
value_matrix = rpt[Outline Box( "Effect Summary" )][Plot Col Box( 1 )] &amp;lt;&amp;lt; get as matrix;
count_n = N Row( value_matrix );
line_value = J( count_n, 1, logworth_values );
//Change the line
rpt[Outline Box( "Effect Summary" )][Plot Col Box( 1 )] &amp;lt;&amp;lt; lower( line_value );
rpt[Outline Box( "Effect Summary" )][Plot Col Box( 1 )] &amp;lt;&amp;lt; upper( line_value );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 05:12:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690234#M87616</guid>
      <dc:creator>yuichi_katsumur</dc:creator>
      <dc:date>2023-10-25T05:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Blue line of logworth: how to change?</title>
      <link>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690423#M87626</link>
      <description>&lt;P&gt;This example demonstrates a more direct way to change the reference line for the LogWorth criterion:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// calculate logworth criterion
alpha = 0.07;
criterion = -Log10( alpha_level );

// add reference line for criterion
rpt = Current Report();
rpt["Effect Summary"][PlotColBox(1)] &amp;lt;&amp;lt; Set Reference Line( criterion );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 25 Oct 2023 14:11:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690423#M87626</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2023-10-25T14:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Blue line of logworth: how to change?</title>
      <link>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690542#M87639</link>
      <description>&lt;P&gt;Where do I click to change these scripts?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 19:42:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690542#M87639</guid>
      <dc:creator>ivanpicchi</dc:creator>
      <dc:date>2023-10-25T19:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Blue line of logworth: how to change?</title>
      <link>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690606#M87653</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/51266"&gt;@ivanpicchi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Choose File &amp;gt; New &amp;gt; Script and paste the script. I think Mark's script is better than mine.&lt;BR /&gt;After you have created a report, go to the Edit menu in the script editor and choose Run Script.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 23:54:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/690606#M87653</guid>
      <dc:creator>yuichi_katsumur</dc:creator>
      <dc:date>2023-10-25T23:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Blue line of logworth: how to change?</title>
      <link>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/692133#M87779</link>
      <description>&lt;P&gt;Works, thx a lot!&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2023 14:23:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Blue-line-of-logworth-how-to-change/m-p/692133#M87779</guid>
      <dc:creator>ivanpicchi</dc:creator>
      <dc:date>2023-10-30T14:23:53Z</dc:date>
    </item>
  </channel>
</rss>

