<?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: Getting a dot &amp;quot; . &amp;quot; as a result when computing Column Mean and Qunatile. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Getting-a-dot-quot-quot-as-a-result-when-computing-Column-Mean/m-p/701604#M88620</link>
    <description>&lt;P&gt;wow, &lt;FONT face="courier new,courier"&gt;Eval(colname)&lt;/FONT&gt; works here as well!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively, you could send the table the message &lt;FONT face="courier new,courier"&gt;get column references()&lt;/FONT&gt;&amp;nbsp;to get column references which can be directly used in the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only disadvantage: there is no option &lt;FONT face="courier new,courier"&gt;continuous&lt;/FONT&gt; to selectively pick the continuous ones.&lt;/P&gt;&lt;P&gt;The workaround:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;get column references()&lt;/FONT&gt; accepts a list of column names (or strings):&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" );
	
AllcolNames = dt &amp;lt;&amp;lt; get column references();
colNames = dt &amp;lt;&amp;lt; get column references(dt &amp;lt;&amp;lt; get column names(continuous));

Col Quantile(colNames[2], 0.95);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Nov 2023 20:21:23 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-11-21T20:21:23Z</dc:date>
    <item>
      <title>Getting a dot " . " as a result when computing Column Mean and Qunatile.</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-a-dot-quot-quot-as-a-result-when-computing-Column-Mean/m-p/701587#M88617</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to get the column names from a table, save it, and then extract its properties. When I try to get the column mean or Quantile but the return is just a dot. No number is returned.&amp;nbsp;The columns are returned as a list as shown below. The results are shown below too. Your&lt;/P&gt;&lt;P&gt;Your help is appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RA899_0-1700595619230.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/59002iD87FCBF5EB010047/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RA899_0-1700595619230.png" alt="RA899_0-1700595619230.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RA899_1-1700595648336.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/59003iC13D2C8642D9D851/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RA899_1-1700595648336.png" alt="RA899_1-1700595648336.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RA899_2-1700595700239.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/59004i74D2A96158BD2B92/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RA899_2-1700595700239.png" alt="RA899_2-1700595700239.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 19:43:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-a-dot-quot-quot-as-a-result-when-computing-Column-Mean/m-p/701587#M88617</guid>
      <dc:creator>RA899</dc:creator>
      <dc:date>2023-11-21T19:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Getting a dot " . " as a result when computing Column Mean and Qunatile.</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-a-dot-quot-quot-as-a-result-when-computing-Column-Mean/m-p/701596#M88618</link>
      <description>&lt;P&gt;You need to properly reference the column&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;q_M=col mean( column(char(colnames[21])));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;q_M=col mean( eval(colnames[21]));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Nov 2023 19:55:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-a-dot-quot-quot-as-a-result-when-computing-Column-Mean/m-p/701596#M88618</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-11-21T19:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Getting a dot " . " as a result when computing Column Mean and Qunatile.</title>
      <link>https://community.jmp.com/t5/Discussions/Getting-a-dot-quot-quot-as-a-result-when-computing-Column-Mean/m-p/701604#M88620</link>
      <description>&lt;P&gt;wow, &lt;FONT face="courier new,courier"&gt;Eval(colname)&lt;/FONT&gt; works here as well!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternatively, you could send the table the message &lt;FONT face="courier new,courier"&gt;get column references()&lt;/FONT&gt;&amp;nbsp;to get column references which can be directly used in the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only disadvantage: there is no option &lt;FONT face="courier new,courier"&gt;continuous&lt;/FONT&gt; to selectively pick the continuous ones.&lt;/P&gt;&lt;P&gt;The workaround:&amp;nbsp;&lt;FONT face="courier new,courier"&gt;get column references()&lt;/FONT&gt; accepts a list of column names (or strings):&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" );
	
AllcolNames = dt &amp;lt;&amp;lt; get column references();
colNames = dt &amp;lt;&amp;lt; get column references(dt &amp;lt;&amp;lt; get column names(continuous));

Col Quantile(colNames[2], 0.95);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 20:21:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Getting-a-dot-quot-quot-as-a-result-when-computing-Column-Mean/m-p/701604#M88620</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-11-21T20:21:23Z</dc:date>
    </item>
  </channel>
</rss>

