<?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 PROC DMDB procedure in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-DMDB-procedure/m-p/842463#M41908</link>
    <description>&lt;P&gt;I built a training data set in a &lt;STRONG&gt;proc iml&lt;/STRONG&gt; procedure, which I want to forward into a &lt;STRONG&gt;proc neural&lt;/STRONG&gt; procedure.&amp;nbsp; However, it has come to my attention, by means of a colleague, that I should run the following to&amp;nbsp;create a data mining SAS DMDB data set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Does "TRAIN" need to be specified in a library (created in proc iml step)?&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;What is the purpose of "&amp;amp;i" after "TRAIN"?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Is SAS Enterprise guide preferable over SAS9.4 when running projects like this?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;	proc dmdb batch data=TRAIN&amp;amp;i 	
	          out = dmh_NN_inTRAIN&amp;amp;i  	
	          dmdbcat=cat_TRAIN&amp;amp;i; 	

	   var Ttm s_x c_x;  	
	   target c_x;
	run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 04 Nov 2022 09:23:46 GMT</pubDate>
    <dc:creator>Erik_Lab</dc:creator>
    <dc:date>2022-11-04T09:23:46Z</dc:date>
    <item>
      <title>PROC DMDB procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-DMDB-procedure/m-p/842463#M41908</link>
      <description>&lt;P&gt;I built a training data set in a &lt;STRONG&gt;proc iml&lt;/STRONG&gt; procedure, which I want to forward into a &lt;STRONG&gt;proc neural&lt;/STRONG&gt; procedure.&amp;nbsp; However, it has come to my attention, by means of a colleague, that I should run the following to&amp;nbsp;create a data mining SAS DMDB data set.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Does "TRAIN" need to be specified in a library (created in proc iml step)?&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;What is the purpose of "&amp;amp;i" after "TRAIN"?&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Is SAS Enterprise guide preferable over SAS9.4 when running projects like this?&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;	proc dmdb batch data=TRAIN&amp;amp;i 	
	          out = dmh_NN_inTRAIN&amp;amp;i  	
	          dmdbcat=cat_TRAIN&amp;amp;i; 	

	   var Ttm s_x c_x;  	
	   target c_x;
	run;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 09:23:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-DMDB-procedure/m-p/842463#M41908</guid>
      <dc:creator>Erik_Lab</dc:creator>
      <dc:date>2022-11-04T09:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: PROC DMDB procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-DMDB-procedure/m-p/847316#M41951</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A SAS Enterprise Miner license is required to run the NEURAL procedure.&lt;/P&gt;
&lt;P&gt;See this post:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Data-Science/PROC-NEURAL/td-p/256255" target="_blank"&gt;Solved: PROC NEURAL - SAS Support Communities&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;But you can directly call&amp;nbsp;&lt;SPAN&gt;High-Performance Data Mining procedures such as HPNEURAL.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, in Proc IML you typically manipulate matrices in memory but when you are done,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;you can save this matrix to a good old SAS data set. After you can use this SAS data set in Procedures, like HPNEURAL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Proc IML,&amp;nbsp;y&lt;SPAN&gt;ou can use the&amp;nbsp;&lt;/SPAN&gt;&lt;A title="Documentation of the CREATE Statement" href="http://support.sas.com/documentation/cdl/en/imlug/63541/HTML/default/viewer.htm#imlug_langref_sect054.htm" target="_blank"&gt;CREATE&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;A title="Documentation of the APPEND Statement" href="http://support.sas.com/documentation/cdl/en/imlug/63541/HTML/default/viewer.htm#imlug_langref_sect028.htm" target="_blank"&gt;APPEND statements&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;to write to SAS data set from a matrix that is in memory.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;See this post:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2011/04/18/writing-data-from-a-matrix-to-a-sas-data-set.html" target="_blank"&gt;Writing data from a matrix to a SAS data set - The DO Loop&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this helps!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sylvain&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Dec 2022 19:05:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-DMDB-procedure/m-p/847316#M41951</guid>
      <dc:creator>SylvainTremblay</dc:creator>
      <dc:date>2022-12-01T19:05:56Z</dc:date>
    </item>
  </channel>
</rss>

