<?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 JMP &amp;gt; Multiple Response Modeling &amp;gt; Retrieve List of Individual Responses in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-gt-Multiple-Response-Modeling-gt-Retrieve-List-of-Individual/m-p/822663#M100237</link>
    <description>&lt;P&gt;Hi JMP Community,&lt;/P&gt;
&lt;P&gt;JMP 17.2 on Windows 10&lt;/P&gt;
&lt;P&gt;I have a Table listing Pathways and their constituents (Overlap_gene) with a Multiple Response modeling type from a publication.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I assemble a list of all unique entries in the Overlap_gene from this table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of note, the Data Filter tool provides the breakdown of unique entries as desired, but I have not figured out how to retrieve them as a list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;TS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Dec 2024 18:11:54 GMT</pubDate>
    <dc:creator>Thierry_S</dc:creator>
    <dc:date>2024-12-13T18:11:54Z</dc:date>
    <item>
      <title>JMP &gt; Multiple Response Modeling &gt; Retrieve List of Individual Responses</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-gt-Multiple-Response-Modeling-gt-Retrieve-List-of-Individual/m-p/822663#M100237</link>
      <description>&lt;P&gt;Hi JMP Community,&lt;/P&gt;
&lt;P&gt;JMP 17.2 on Windows 10&lt;/P&gt;
&lt;P&gt;I have a Table listing Pathways and their constituents (Overlap_gene) with a Multiple Response modeling type from a publication.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I assemble a list of all unique entries in the Overlap_gene from this table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of note, the Data Filter tool provides the breakdown of unique entries as desired, but I have not figured out how to retrieve them as a list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;TS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2024 18:11:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-gt-Multiple-Response-Modeling-gt-Retrieve-List-of-Individual/m-p/822663#M100237</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2024-12-13T18:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: JMP &gt; Multiple Response Modeling &gt; Retrieve List of Individual Responses</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-gt-Multiple-Response-Modeling-gt-Retrieve-List-of-Individual/m-p/822674#M100239</link>
      <description>&lt;P&gt;One option is to use Distribution and extract the values from the Frequencies table by making a data table&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Current Data Table();
dist = dt &amp;lt;&amp;lt; Distribution(Multiple Response Distribution(Column(:overlap_genes)));
dt_vals = Report(dist)["Frequencies", Table Box(1)] &amp;lt;&amp;lt; Make Into Data Table;
vals = dt_vals[0,1];
close(dt_vals, no save);
dist &amp;lt;&amp;lt; Close Window;

show(vals);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Dec 2024 18:30:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-gt-Multiple-Response-Modeling-gt-Retrieve-List-of-Individual/m-p/822674#M100239</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-12-13T18:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: JMP &gt; Multiple Response Modeling &gt; Retrieve List of Individual Responses</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-gt-Multiple-Response-Modeling-gt-Retrieve-List-of-Individual/m-p/822676#M100240</link>
      <description>&lt;P&gt;ver&amp;lt; elegant!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another option: split the entries into multiple columns, stack them and the calculate a summary:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = current data table();
n1 = ncols(dt);
dt &amp;lt;&amp;lt; Text to Columns( columns( :overlap_genes ), Delimiters( ",", " " ) );
n2 = ncols(dt);

dtstack = dt &amp;lt;&amp;lt; Stack(
	columns(Eval(n1+1 ::  n2)),
	Drop All Other Columns( 1 ),
);

dtstack &amp;lt;&amp;lt; Select Where( :Data == "" ) &amp;lt;&amp;lt; Delete Rows;

dtstack &amp;lt;&amp;lt; Summary(	Group( :Data ));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 13 Dec 2024 19:05:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-gt-Multiple-Response-Modeling-gt-Retrieve-List-of-Individual/m-p/822676#M100240</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-12-13T19:05:50Z</dc:date>
    </item>
  </channel>
</rss>

