<?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: How to Get as Matrix in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-Get-as-Matrix/m-p/213838#M42755</link>
    <description>&lt;P&gt;Here is one way to do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
dt &amp;lt;&amp;lt; delete columns( {name, sex} );
valueMatrix = dt[1, 0];

Show( valueMatrix );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 20 Jun 2019 07:04:38 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2019-06-20T07:04:38Z</dc:date>
    <item>
      <title>How to Get as Matrix</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Get-as-Matrix/m-p/213808#M42754</link>
      <description>&lt;P&gt;I am wondering if anyone knew how to get as matrix with specific row.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I would like to get as matrix with row(1),&lt;/P&gt;&lt;P&gt;mat will be [12 59 95].&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );&lt;BR /&gt;bigclass=Open( "$SAMPLE_DATA/Big Class.jmp" );&lt;BR /&gt;mat = bigclass &amp;lt;&amp;lt; GetAsMatrix({2,3::5});&lt;BR /&gt;Show(mat);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;mat =&lt;BR /&gt;[&amp;nbsp;12 59 95,&lt;BR /&gt;&amp;nbsp;12 61 123,&lt;BR /&gt;&amp;nbsp;12 55 74,&lt;BR /&gt;&amp;nbsp;12 66 145,&lt;BR /&gt;&amp;nbsp;12 52 64,&lt;BR /&gt;&amp;nbsp;12 60 84,&lt;BR /&gt;&amp;nbsp;12 61 128,&lt;BR /&gt;&amp;nbsp;12 51 79,&lt;BR /&gt;&amp;nbsp;13 60 112,&lt;BR /&gt;&amp;nbsp;13 61 107,&lt;BR /&gt;&amp;nbsp;13 56 67,&lt;BR /&gt;&amp;nbsp;13 65 98,&lt;BR /&gt;&amp;nbsp;13 63 105,&lt;BR /&gt;&amp;nbsp;13 58 95,&lt;BR /&gt;&amp;nbsp;13 59 79,&lt;BR /&gt;&amp;nbsp;14 61 81,&lt;BR /&gt;&amp;nbsp;14 62 91,&lt;BR /&gt;&amp;nbsp;14 65 142,&lt;BR /&gt;&amp;nbsp;14 63 84,&lt;BR /&gt;&amp;nbsp;14 62 85,&lt;BR /&gt;&amp;nbsp;14 63 93,&lt;BR /&gt;&amp;nbsp;14 64 99,&lt;BR /&gt;&amp;nbsp;14 65 119,&lt;BR /&gt;&amp;nbsp;14 64 92,&lt;BR /&gt;&amp;nbsp;14 68 112,&lt;BR /&gt;&amp;nbsp;14 64 99,&lt;BR /&gt;&amp;nbsp;14 69 113,&lt;BR /&gt;&amp;nbsp;15 62 92,&lt;BR /&gt;&amp;nbsp;15 64 112,&lt;BR /&gt;&amp;nbsp;15 67 128,&lt;BR /&gt;&amp;nbsp;15 65 111,&lt;BR /&gt;&amp;nbsp;15 66 105,&lt;BR /&gt;&amp;nbsp;15 62 104,&lt;BR /&gt;&amp;nbsp;15 66 106,&lt;BR /&gt;&amp;nbsp;16 65 112,&lt;BR /&gt;&amp;nbsp;16 60 115,&lt;BR /&gt;&amp;nbsp;16 68 128,&lt;BR /&gt;&amp;nbsp;17 62 116,&lt;BR /&gt;&amp;nbsp;17 68 134,&lt;BR /&gt;&amp;nbsp;17 70 172];&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2019 05:48:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Get-as-Matrix/m-p/213808#M42754</guid>
      <dc:creator>Benson</dc:creator>
      <dc:date>2019-06-20T05:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to Get as Matrix</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Get-as-Matrix/m-p/213838#M42755</link>
      <description>&lt;P&gt;Here is one way to do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
dt &amp;lt;&amp;lt; delete columns( {name, sex} );
valueMatrix = dt[1, 0];

Show( valueMatrix );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Jun 2019 07:04:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Get-as-Matrix/m-p/213838#M42755</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-06-20T07:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to Get as Matrix</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Get-as-Matrix/m-p/213843#M42757</link>
      <description>&lt;P&gt;Depending on what else you are doing, you could also use &lt;A href="https://community.jmp.com/t5/Uncharted/Data-table-subscripting/ba-p/21013" target="_self"&gt;data table subscripting&lt;/A&gt;:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;mat2 = bigclass[1, {2, 4, 5}]&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Jun 2019 08:33:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Get-as-Matrix/m-p/213843#M42757</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2019-06-20T08:33:33Z</dc:date>
    </item>
  </channel>
</rss>

