<?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: JMP16: Life Distribution Make Combined Data Table in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609110#M81036</link>
    <description>&lt;P&gt;Mark:&lt;/P&gt;&lt;P&gt;Thank you for the reply. As it is in the attached jsl file, if I am interpreting this correctly, it looks like the V List Box encompasses the group of two Life Distributions? I believe I defined the V List Box as LDobj. I tried referring to that as the report but it isn't working. Should I just define each individual Life Distribution LD1 &amp;amp; LD2 in this case? But then how do I refer to both of them to produce the Combined Data Table?&lt;/P&gt;</description>
    <pubDate>Tue, 07 Mar 2023 17:18:56 GMT</pubDate>
    <dc:creator>WoHNY</dc:creator>
    <dc:date>2023-03-07T17:18:56Z</dc:date>
    <item>
      <title>JMP16: Life Distribution Make Combined Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/608998#M81026</link>
      <description>&lt;P&gt;Goal is to output a Combined Data Table for each Parametric Estimate - Weibull data in the Life Distribution List Box. In the attached example there are two groups. The continuous variable is VALUEABS, grouping by categorical variable GRP and a second categorical variable, PARMSHORT is the comparison variable. There are six total data values in the Parametric Estimate - Weibull table, I only want the Weibull alpha and Weibull Beta data. Do I need to define a Report then call that Report to generate the Combined Data table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A second issue is where do I find what List Box number refers to what object? I tried Show Properties but I can't find any definitions.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jun 2023 16:30:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/608998#M81026</guid>
      <dc:creator>WoHNY</dc:creator>
      <dc:date>2023-06-08T16:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: JMP16: Life Distribution Make Combined Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609037#M81030</link>
      <description>&lt;P&gt;You can save a reference to the display box when you create the window. For example,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;life dist 1 = Life Distribution( ... );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can then send the message something like this way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;parms = Report( life dist )["Parameter Estimates"][TableBox(1)] &amp;lt;&amp;lt; Make Combined Data Table;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 Mar 2023 15:37:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609037#M81030</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2023-03-07T15:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: JMP16: Life Distribution Make Combined Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609110#M81036</link>
      <description>&lt;P&gt;Mark:&lt;/P&gt;&lt;P&gt;Thank you for the reply. As it is in the attached jsl file, if I am interpreting this correctly, it looks like the V List Box encompasses the group of two Life Distributions? I believe I defined the V List Box as LDobj. I tried referring to that as the report but it isn't working. Should I just define each individual Life Distribution LD1 &amp;amp; LD2 in this case? But then how do I refer to both of them to produce the Combined Data Table?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 17:18:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609110#M81036</guid>
      <dc:creator>WoHNY</dc:creator>
      <dc:date>2023-03-07T17:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: JMP16: Life Distribution Make Combined Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609125#M81038</link>
      <description>&lt;P&gt;You should study the JMP Scripting Language guide from Help &amp;gt; JMP Documentation. Pay particular attention to the material about JMP windows, display trees, and display boxes. A script based on the Big Class sample data table illustrates how to find and refer to Table Box objects with your desired results. I produced a raw data table with the items you want. You can now remove any unwanted columns. You could instead get the number column box contents and take another approach.&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" );

obj = dt &amp;lt;&amp;lt; Life Distribution(
	Perspective( Compare Groups ),
	Y( :weight ),
	Grouping( :age ),
	Confidence Interval Method( Wald ),
	Select Distribution( Distribution, Weibull ),
	Select Scale( Weibull ),
	Tabbed Report( 0 ),
	By( :sex )
);

rpt = obj &amp;lt;&amp;lt; Report;

parm = rpt &amp;lt;&amp;lt; XPath( "//OutlineBox[contains(text(), 'Parameter Estimate')]" );
parms = parm[1][1][TableBox(1)] &amp;lt;&amp;lt; Make Combined Data Table;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 07 Mar 2023 17:59:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609125#M81038</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2023-03-07T17:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: JMP16: Life Distribution Make Combined Data Table</title>
      <link>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609127#M81039</link>
      <description>&lt;P&gt;Mark:&lt;/P&gt;&lt;P&gt;Thank you for the additional response. I will experiment with the code you supplied and I will definitely look into the areas you highlighted in the scripting guide. Thanks again.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 18:21:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP16-Life-Distribution-Make-Combined-Data-Table/m-p/609127#M81039</guid>
      <dc:creator>WoHNY</dc:creator>
      <dc:date>2023-03-07T18:21:47Z</dc:date>
    </item>
  </channel>
</rss>

