<?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: Assign value in proc iml variable from another dataset in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Assign-value-in-proc-iml-variable-from-another-dataset/m-p/703626#M26051</link>
    <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;How will I be able to assign the value of Mean to a specific value from the other dataset?&lt;/P&gt;</description>
    <pubDate>Fri, 04 Dec 2020 13:45:47 GMT</pubDate>
    <dc:creator>shubhodasgupta</dc:creator>
    <dc:date>2020-12-04T13:45:47Z</dc:date>
    <item>
      <title>Assign value in proc iml variable from another dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Assign-value-in-proc-iml-variable-from-another-dataset/m-p/703613#M26049</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, I am trying to assign a value to a proc iml input from my datatset. &amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc iml;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;NumWalks = 100;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;NumSteps = 52;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mean = 0.003;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SD = 0.03;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to assign mean and std from dataset of another table&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;STOCKNAME&amp;nbsp; &amp;nbsp; &amp;nbsp;MEAN&amp;nbsp; &amp;nbsp; &amp;nbsp;STD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;A&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt; 0.003&amp;nbsp; &amp;nbsp; &amp;nbsp;0.034&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;B&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.006&amp;nbsp; &amp;nbsp; &amp;nbsp;0.05&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can I pull the mean and std value from the other dataset? &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 13:16:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Assign-value-in-proc-iml-variable-from-another-dataset/m-p/703613#M26049</guid>
      <dc:creator>shubhodasgupta</dc:creator>
      <dc:date>2020-12-04T13:16:39Z</dc:date>
    </item>
    <item>
      <title>Re: Assign value in proc iml variable from another dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Assign-value-in-proc-iml-variable-from-another-dataset/m-p/703615#M26050</link>
      <description>&lt;P&gt;PROC IML allows you to read values from a data set into a matrix. Example:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=imlug&amp;amp;docsetTarget=imlug_worksasdatasets_sect003.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=imlug&amp;amp;docsetTarget=imlug_worksasdatasets_sect003.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;More details&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=imlug&amp;amp;docsetTarget=imlug_worksasdatasets_sect010.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=imlug&amp;amp;docsetTarget=imlug_worksasdatasets_sect010.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Although the way you have described the problem, there's no need for PROC IML, when DATA steps ought to get the job done.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 13:26:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Assign-value-in-proc-iml-variable-from-another-dataset/m-p/703615#M26050</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-12-04T13:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Assign value in proc iml variable from another dataset</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Assign-value-in-proc-iml-variable-from-another-dataset/m-p/703626#M26051</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;How will I be able to assign the value of Mean to a specific value from the other dataset?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 13:45:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Assign-value-in-proc-iml-variable-from-another-dataset/m-p/703626#M26051</guid>
      <dc:creator>shubhodasgupta</dc:creator>
      <dc:date>2020-12-04T13:45:47Z</dc:date>
    </item>
  </channel>
</rss>

