<?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: Error, IML Symbol Name in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349400#M3411</link>
    <description>&lt;P&gt;The USE statement in SAS/IML reads data from a SAS data set. &amp;nbsp;Valid variable names in SAS begins with a letter or an underscore. &amp;nbsp;In your data, try using variable names such as X0_0, X0_1, etc. &amp;nbsp;How did you create this data set?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Apr 2017 12:13:31 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2017-04-12T12:13:31Z</dc:date>
    <item>
      <title>Error, IML Symbol Name</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349301#M3403</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm simply trying to read an existing dataset into a matrix, but keep recieving the same error, that I can't fix.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The message is:&amp;nbsp;ERROR: A dataset field name is not a valid IML symbol name.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc iml;
use points;
	read all var _ALL_ into runs;
	close points;
	print runs;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What's triggering the error?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 01:24:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349301#M3403</guid>
      <dc:creator>jl1005</dc:creator>
      <dc:date>2017-04-12T01:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error, IML Symbol Name</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349327#M3405</link>
      <description>&lt;P&gt;Your code seems to be working fine as below, so my guess is that one of your column names are conflicting with SAS standards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post some sample of the data you are trying to read?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data points;
input ID point;
datalines;
1 100
2 200
3 300
;

proc iml;
use points;
	read all var _ALL_ into runs;
close points;

print runs;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Apr 2017 06:20:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349327#M3405</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-04-12T06:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error, IML Symbol Name</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349397#M3410</link>
      <description>&lt;P&gt;Here'sa a picture. I don't need the first column. Would it be because that coumn names are numeric?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/8297iBF996D6630F4434B/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="events snip.JPG" title="events snip.JPG" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 12:06:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349397#M3410</guid>
      <dc:creator>jl1005</dc:creator>
      <dc:date>2017-04-12T12:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Error, IML Symbol Name</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349400#M3411</link>
      <description>&lt;P&gt;The USE statement in SAS/IML reads data from a SAS data set. &amp;nbsp;Valid variable names in SAS begins with a letter or an underscore. &amp;nbsp;In your data, try using variable names such as X0_0, X0_1, etc. &amp;nbsp;How did you create this data set?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 12:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349400#M3411</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-04-12T12:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Error, IML Symbol Name</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349403#M3412</link>
      <description>&lt;P&gt;The dataset was imported from an excel worksheet. I renamed the columns so they begin with a letter, and it works. Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 12:20:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/Error-IML-Symbol-Name/m-p/349403#M3412</guid>
      <dc:creator>jl1005</dc:creator>
      <dc:date>2017-04-12T12:20:16Z</dc:date>
    </item>
  </channel>
</rss>

