<?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: please explain the error in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122995#M4758</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;right! Totally confused them .Thank you though&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Nov 2012 22:40:33 GMT</pubDate>
    <dc:creator>Tal</dc:creator>
    <dc:date>2012-11-10T22:40:33Z</dc:date>
    <item>
      <title>please explain the error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122990#M4753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the following code to call the attached data set. When i checked the log file I noticed something wasn't right.(&lt;STRONG&gt; Error was about INVALID DATA&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should I worry about this or is there a way to correct it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile "F:\data\ftse.csv"&amp;nbsp; DSD MISSOVER;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input Date Close adjclose returns dm dt dw dh df;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2012 15:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122990#M4753</guid>
      <dc:creator>malakaext</dc:creator>
      <dc:date>2012-11-10T15:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: please explain the error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122991#M4754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are at least three errors, two in the program and one in the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your code you are not accounting for the fact that the datafile has a header record, nor are you accounting for the fact that the first field is a date field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you'll find that the following would work a lot better:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;options datestyle=mdy;&lt;/P&gt;&lt;P&gt;data test;&lt;/P&gt;&lt;P&gt;&amp;nbsp; infile "f:\data\ftse.csv"&amp;nbsp; DSD MISSOVER firstobs=2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; informat date anydtdte10.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input Date Close adjclose returns dm dt dw dh df;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the datafile's header record, there is a problem with it and I would ask the supplier to correct it.&amp;nbsp; There are two dt fields identified, thus one doesn't know which contains the right data.&amp;nbsp; You called the second one df, in your code, thus you may already know about the discrepancy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2012 15:53:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122991#M4754</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-10T15:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: please explain the error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122992#M4755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2012 20:43:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122992#M4755</guid>
      <dc:creator>malakaext</dc:creator>
      <dc:date>2012-11-10T20:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: please explain the error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122993#M4756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;doesnt he also have to declare the lrecl=5558 as the number of records is close to this number?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2012 21:50:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122993#M4756</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2012-11-10T21:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: please explain the error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122994#M4757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="809722" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt;: No.&amp;nbsp; lrecl is for individual record length not number of records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2012 22:26:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122994#M4757</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2012-11-10T22:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: please explain the error</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122995#M4758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;right! Totally confused them .Thank you though&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2012 22:40:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/please-explain-the-error/m-p/122995#M4758</guid>
      <dc:creator>Tal</dc:creator>
      <dc:date>2012-11-10T22:40:33Z</dc:date>
    </item>
  </channel>
</rss>

