<?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 Plotting without showing the window to extract a summary statistic? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Plotting-without-showing-the-window-to-extract-a-summary/m-p/330743#M57985</link>
    <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Given a column, the code below takes the critical value of a normality test of its distribution:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="louiefb_0-1604703358455.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/28168iEC2488B021C06FCC/image-size/large?v=v2&amp;amp;px=999" role="button" title="louiefb_0-1604703358455.png" alt="louiefb_0-1604703358455.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;z = Report(Distribution(
	Continuous Distribution(Column("Column 1")),
		Fit Distribution(Normal(Goodness of Fit(1)))
		);
	);

prob = z[Outline Box("Goodness-of-Fit Test")][Number Col Box(2)] &amp;lt;&amp;lt; Get(1);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I plan to have this implemented across tables with varying amounts of columns. So what I'd like to know is, &lt;STRONG&gt;is there a way I can extract this value without having to spend resources to draw the chart&lt;/STRONG&gt;? I really only want that float value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My last resort would be:&lt;/P&gt;&lt;P&gt;1. To immediately close the chart window after extracting the value (I don't know how to do this either), or&lt;/P&gt;&lt;P&gt;2. To manually perform Shapiro Wilk or KS normality test to get the value I need&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Louie&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 23:42:38 GMT</pubDate>
    <dc:creator>louiefb</dc:creator>
    <dc:date>2023-06-09T23:42:38Z</dc:date>
    <item>
      <title>Plotting without showing the window to extract a summary statistic?</title>
      <link>https://community.jmp.com/t5/Discussions/Plotting-without-showing-the-window-to-extract-a-summary/m-p/330743#M57985</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Given a column, the code below takes the critical value of a normality test of its distribution:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="louiefb_0-1604703358455.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/28168iEC2488B021C06FCC/image-size/large?v=v2&amp;amp;px=999" role="button" title="louiefb_0-1604703358455.png" alt="louiefb_0-1604703358455.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;z = Report(Distribution(
	Continuous Distribution(Column("Column 1")),
		Fit Distribution(Normal(Goodness of Fit(1)))
		);
	);

prob = z[Outline Box("Goodness-of-Fit Test")][Number Col Box(2)] &amp;lt;&amp;lt; Get(1);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I plan to have this implemented across tables with varying amounts of columns. So what I'd like to know is, &lt;STRONG&gt;is there a way I can extract this value without having to spend resources to draw the chart&lt;/STRONG&gt;? I really only want that float value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My last resort would be:&lt;/P&gt;&lt;P&gt;1. To immediately close the chart window after extracting the value (I don't know how to do this either), or&lt;/P&gt;&lt;P&gt;2. To manually perform Shapiro Wilk or KS normality test to get the value I need&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Louie&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:42:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Plotting-without-showing-the-window-to-extract-a-summary/m-p/330743#M57985</guid>
      <dc:creator>louiefb</dc:creator>
      <dc:date>2023-06-09T23:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting without showing the window to extract a summary statistic?</title>
      <link>https://community.jmp.com/t5/Discussions/Plotting-without-showing-the-window-to-extract-a-summary/m-p/330786#M57987</link>
      <description>&lt;P&gt;The simple answer is that JMP will create the entire statistics set, however, if you add an "invisible" element to your Distribution() function, the results will not take the time to display on your PC.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;z = Report(Distribution(invisible,
	Continuous Distribution(Column("Column 1")),
		Fit Distribution(Normal(Goodness of Fit(1)))
		);
	);

prob = z[Outline Box("Goodness-of-Fit Test")][Number Col Box(2)] &amp;lt;&amp;lt; Get(1);

z&amp;lt;&amp;lt; close window;

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 07 Nov 2020 01:59:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Plotting-without-showing-the-window-to-extract-a-summary/m-p/330786#M57987</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-11-07T01:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting without showing the window to extract a summary statistic?</title>
      <link>https://community.jmp.com/t5/Discussions/Plotting-without-showing-the-window-to-extract-a-summary/m-p/330787#M57988</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;! This is exactly what I intended to do.&lt;/P&gt;</description>
      <pubDate>Sat, 07 Nov 2020 06:34:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Plotting-without-showing-the-window-to-extract-a-summary/m-p/330787#M57988</guid>
      <dc:creator>louiefb</dc:creator>
      <dc:date>2020-11-07T06:34:17Z</dc:date>
    </item>
  </channel>
</rss>

