<?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: save matrix as table variable? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/692128#M87776</link>
    <description>&lt;P&gt;I think Table Variables have specific use and that is why they only support text or values (numeric)&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/use-data-table-variables.shtml" target="_blank" rel="noopener"&gt;Using JMP &amp;gt; Enter and Edit Your Data &amp;gt; Edit Data Tables &amp;gt; Use Data Table Variables&lt;/A&gt;&amp;nbsp;, but most likely it could be worth a revisit to allow using at least lists, matrices and associative arrays. I can make a wish list item, though I think JMP development isn't able to keep up to date with them at all currently (we have almost 600 "new" wish list items).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Created this while writing this post)... Here is the wish list item&amp;nbsp;&lt;LI-MESSAGE title="Let us use more complicated data types for table variables than just text and numbers" uid="692118" url="https://community.jmp.com/t5/JMP-Wish-List/Let-us-use-more-complicated-data-types-for-table-variables-than/m-p/692118#U692118" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Oct 2023 14:18:48 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2023-10-30T14:18:48Z</dc:date>
    <item>
      <title>save matrix as table variable?</title>
      <link>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/691581#M87732</link>
      <description>&lt;P&gt;Hi. &amp;nbsp;I'm wondering if it is possible to save a matrix or list to a table as a variable, as in:&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; New Table Variable("Day_mat", [42 43]);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This did not work of course, but is there another way? &amp;nbsp;One option I'm considering is saving it as a table script instead, as in:&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; New Script("Dat_mat_script", Day_mat = [42 43]);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Just wondering if the community has a better idea? &amp;nbsp;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2023 23:35:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/691581#M87732</guid>
      <dc:creator>nikles</dc:creator>
      <dc:date>2023-10-27T23:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: save matrix as table variable?</title>
      <link>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/691620#M87738</link>
      <description>&lt;P&gt;I think the table variable has to be either text or numeric value -&amp;gt; you can save it if you convert it into a string (use Char() to convert and Parse() when you need to use it)&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; New Table Variable("Day_mat", Char([42 43]));

m = Parse(:Day_mat);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 28 Oct 2023 12:57:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/691620#M87738</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-10-28T12:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: save matrix as table variable?</title>
      <link>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/691659#M87743</link>
      <description>&lt;P&gt;nice workaround :)&lt;/img&gt;&lt;BR /&gt;&lt;BR /&gt;Yes, interesting why there is this restriction for Table variables.&lt;/P&gt;&lt;P&gt;Seems that at the time when Matrices and Lists were introduced in Jmp, development forgot to enable it for table variable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It could also be intentional that this feature was not added - perhaps to facilitate the input:&lt;BR /&gt;&lt;EM&gt;if it's no number, it's a string&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;to allow typing strings without " ..."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If somebody writes a wish list entry, I will support it with a Kudo :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2023 18:10:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/691659#M87743</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-10-28T18:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: save matrix as table variable?</title>
      <link>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/692128#M87776</link>
      <description>&lt;P&gt;I think Table Variables have specific use and that is why they only support text or values (numeric)&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/17.2/#page/jmp/use-data-table-variables.shtml" target="_blank" rel="noopener"&gt;Using JMP &amp;gt; Enter and Edit Your Data &amp;gt; Edit Data Tables &amp;gt; Use Data Table Variables&lt;/A&gt;&amp;nbsp;, but most likely it could be worth a revisit to allow using at least lists, matrices and associative arrays. I can make a wish list item, though I think JMP development isn't able to keep up to date with them at all currently (we have almost 600 "new" wish list items).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Created this while writing this post)... Here is the wish list item&amp;nbsp;&lt;LI-MESSAGE title="Let us use more complicated data types for table variables than just text and numbers" uid="692118" url="https://community.jmp.com/t5/JMP-Wish-List/Let-us-use-more-complicated-data-types-for-table-variables-than/m-p/692118#U692118" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2023 14:18:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/692128#M87776</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-10-30T14:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: save matrix as table variable?</title>
      <link>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/692147#M87781</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;we have almost 600 "new" wish list items&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Yes, seems that since ~ end of 2022 just a small part of the &lt;STRONG&gt;&lt;EM&gt;new&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;wishes got &lt;EM&gt;acknowledged&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess this is due to rfinal phase of Jmp18 development.&lt;/P&gt;&lt;P&gt;Let's hope that after the release of Jmp18 they will start again to &lt;EM&gt;acknowledge&lt;/EM&gt;&amp;nbsp;the new wishes and transfer the good ones to &lt;EM&gt;investigating &lt;/EM&gt;and &lt;EM&gt;delivered ....&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Oct 2023 15:34:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/692147#M87781</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-10-30T15:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: save matrix as table variable?</title>
      <link>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/692614#M87820</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;. I like this idea too.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2023 16:25:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/save-matrix-as-table-variable/m-p/692614#M87820</guid>
      <dc:creator>nikles</dc:creator>
      <dc:date>2023-10-31T16:25:27Z</dc:date>
    </item>
  </channel>
</rss>

