<?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 How to read the canoes example date in Little SAS Book into SAS in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285580#M58423</link>
    <description>&lt;P&gt;In chapter 2.10 of Little SAS Book. There is an example data file named canoes as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bellatorum&amp;nbsp; School: CSULA Time: 1:40.5&lt;BR /&gt;The Kraken&amp;nbsp; School: ASU Time: 1:45.35&lt;BR /&gt;Black Widow&amp;nbsp; School: UoA Time: 1:33.7&lt;BR /&gt;Koicrete&amp;nbsp; School: CSUF Time: 1:40.25&lt;BR /&gt;Khaos&amp;nbsp; School: UNLV&amp;nbsp; Time: 2:03.45&lt;BR /&gt;Max&amp;nbsp; School: UCSD Time: 1:26.47&lt;BR /&gt;Hakuna Matata&amp;nbsp; School: UCLA Time: 1:20.64&lt;BR /&gt;Prospector&amp;nbsp; School: CPSLO Time: 1:12.08&lt;BR /&gt;Andromeda&amp;nbsp; School: CPP&amp;nbsp; Time: 1:25.1&lt;BR /&gt;Kekoapohaku&amp;nbsp; School: UHM Time: 1:24.49&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The book shows how to read "School" and "Time" use colon modifier, but does not show how to read the entire data file, which should include the first variable: Canoe team's names. I tried it but with no success. I'm having trobule reading the "Hakuna Matata" part. It has a space in between and the delimiter of the data file is space. Can anyone show me how to read the above data file into SAS? Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jul 2016 17:41:00 GMT</pubDate>
    <dc:creator>braveblade</dc:creator>
    <dc:date>2016-07-19T17:41:00Z</dc:date>
    <item>
      <title>How to read the canoes example date in Little SAS Book into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285580#M58423</link>
      <description>&lt;P&gt;In chapter 2.10 of Little SAS Book. There is an example data file named canoes as follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bellatorum&amp;nbsp; School: CSULA Time: 1:40.5&lt;BR /&gt;The Kraken&amp;nbsp; School: ASU Time: 1:45.35&lt;BR /&gt;Black Widow&amp;nbsp; School: UoA Time: 1:33.7&lt;BR /&gt;Koicrete&amp;nbsp; School: CSUF Time: 1:40.25&lt;BR /&gt;Khaos&amp;nbsp; School: UNLV&amp;nbsp; Time: 2:03.45&lt;BR /&gt;Max&amp;nbsp; School: UCSD Time: 1:26.47&lt;BR /&gt;Hakuna Matata&amp;nbsp; School: UCLA Time: 1:20.64&lt;BR /&gt;Prospector&amp;nbsp; School: CPSLO Time: 1:12.08&lt;BR /&gt;Andromeda&amp;nbsp; School: CPP&amp;nbsp; Time: 1:25.1&lt;BR /&gt;Kekoapohaku&amp;nbsp; School: UHM Time: 1:24.49&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The book shows how to read "School" and "Time" use colon modifier, but does not show how to read the entire data file, which should include the first variable: Canoe team's names. I tried it but with no success. I'm having trobule reading the "Hakuna Matata" part. It has a space in between and the delimiter of the data file is space. Can anyone show me how to read the above data file into SAS? Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 17:41:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285580#M58423</guid>
      <dc:creator>braveblade</dc:creator>
      <dc:date>2016-07-19T17:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the canoes example date in Little SAS Book into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285586#M58426</link>
      <description>&lt;P&gt;I don't know what edition you are using, but the fifth edition includes the following code, which appears to read the RaceTime variable:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA canoeresults;
  INFILE 'c:\MyRawData\Canoes.dat';
  INPUT  @'School:' School $ @'Time:' RaceTime :STIMER8.;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The RaceTime variable will be read in terms of seconds. For example, the first observation has a RaceTime of 100.5 seconds.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 17:37:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285586#M58426</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-07-19T17:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the canoes example date in Little SAS Book into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285587#M58427</link>
      <description>&lt;P&gt;Yes. But it does not show how to read the first variable: Canoe team's name. Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 17:40:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285587#M58427</guid>
      <dc:creator>braveblade</dc:creator>
      <dc:date>2016-07-19T17:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to read the canoes example date in Little SAS Book into SAS</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285620#M58434</link>
      <description>&lt;P&gt;Add before the input:&lt;/P&gt;
&lt;P&gt;Informat teamname $20. ;&lt;/P&gt;
&lt;P&gt;modify input&lt;/P&gt;
&lt;P&gt;input teamname &amp;amp; &amp;lt;the other variables&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This assumes that the important but not mentioned &lt;STRONG&gt;two&lt;/STRONG&gt; spaces after the team names is consitent.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 20:05:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-read-the-canoes-example-date-in-Little-SAS-Book-into-SAS/m-p/285620#M58434</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-07-19T20:05:20Z</dc:date>
    </item>
  </channel>
</rss>

