<?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: Remove and Store Column Values as LIst in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Remove-and-Store-Column-Values-as-LIst/m-p/250097#M49099</link>
    <description>&lt;P&gt;The "." values are indication of a missing value.&amp;nbsp; They are like having a blank in your data.&amp;nbsp; When you use the JMP Platforms, they will deal with the missing values appropriately.&amp;nbsp; If you want to delete the entire row where the missing values are present, you can do that by right clicking on one of the cells that has a missing value, and then clicking on "Select Matching Values".&amp;nbsp; JMP will then select all rows where this column has missing values.&amp;nbsp; You can then move to the column with the row numbers, hover over one of the selected rows, right click and select "delete rows".&lt;/P&gt;
&lt;P&gt;To get rid of the "Mean(…)" I would create a new column, and then use the following formula in the new column&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;word(2,:Column 1,"()");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can find the documentation on the Word() function in the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help=&amp;gt;Scripting Index&lt;/P&gt;
&lt;P&gt;Click on "Character", because the Word() function is a function that works on character strings, and then in the right column, click on Word&lt;/P&gt;</description>
    <pubDate>Mon, 02 Mar 2020 15:59:53 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-03-02T15:59:53Z</dc:date>
    <item>
      <title>Remove and Store Column Values as LIst</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-and-Store-Column-Values-as-LIst/m-p/250063#M49092</link>
      <description>&lt;P&gt;How do i remove the highlighted and get all the names in column 1 but without the mean(".....") part?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot_5.png" style="width: 399px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/22051iEFC7BCE38DB47957/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot_5.png" alt="Screenshot_5.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 13:42:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-and-Store-Column-Values-as-LIst/m-p/250063#M49092</guid>
      <dc:creator>viskovicz00012</dc:creator>
      <dc:date>2020-03-02T13:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Remove and Store Column Values as LIst</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-and-Store-Column-Values-as-LIst/m-p/250097#M49099</link>
      <description>&lt;P&gt;The "." values are indication of a missing value.&amp;nbsp; They are like having a blank in your data.&amp;nbsp; When you use the JMP Platforms, they will deal with the missing values appropriately.&amp;nbsp; If you want to delete the entire row where the missing values are present, you can do that by right clicking on one of the cells that has a missing value, and then clicking on "Select Matching Values".&amp;nbsp; JMP will then select all rows where this column has missing values.&amp;nbsp; You can then move to the column with the row numbers, hover over one of the selected rows, right click and select "delete rows".&lt;/P&gt;
&lt;P&gt;To get rid of the "Mean(…)" I would create a new column, and then use the following formula in the new column&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;word(2,:Column 1,"()");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can find the documentation on the Word() function in the Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; Help=&amp;gt;Scripting Index&lt;/P&gt;
&lt;P&gt;Click on "Character", because the Word() function is a function that works on character strings, and then in the right column, click on Word&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 15:59:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-and-Store-Column-Values-as-LIst/m-p/250097#M49099</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-02T15:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Remove and Store Column Values as LIst</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-and-Store-Column-Values-as-LIst/m-p/251395#M49353</link>
      <description>&lt;P&gt;I use something like this&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;dt3s &amp;lt;&amp;lt; &lt;/SPAN&gt;clear select&lt;SPAN&gt;;  //defensive step to make sure only my selection gets deleted&lt;/SPAN&gt;&lt;CODE class=" language-jsl"&gt;&lt;BR /&gt;dt3s &amp;lt;&amp;lt; Select Where( Is Missing( :Name( "Date" ) ) );
dt3s &amp;lt;&amp;lt; deleterows;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to get rid of rows in a column that have missing values. &amp;nbsp;note, it deletes the whole row.&lt;/P&gt;
&lt;P&gt;Use the Row Filter (under Row menu) to make the selection rule, and then just save the query to the clipboard so you can paste it into your script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2020 18:05:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-and-Store-Column-Values-as-LIst/m-p/251395#M49353</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2020-03-09T18:05:29Z</dc:date>
    </item>
  </channel>
</rss>

