<?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: Is it normal for output looking like this? in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432455#M4501</link>
    <description>&lt;P&gt;According to proc compare report one of the datasets has 0 observations while the other has 20.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check - is 0 obs are correct or do are there any errors in log reading the dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try also usig proc compare with some options - datsets should be sorted by ID:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc compare base=cars93ff2 compare=cars93ffraw  ;
    ID  &lt;/CODE&gt;Manufacturer ;&lt;BR /&gt;&lt;CODE class=" language-sas"&gt;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jan 2018 19:28:49 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2018-01-30T19:28:49Z</dc:date>
    <item>
      <title>Is it normal for output looking like this?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432386#M4498</link>
      <description>&lt;PRE&gt;data cars93ff2;
infile '&amp;amp;dirdata.cars93subfree.txt' firstobs=2;
length Manufacturer $10;
input Manufacturer $ Type $ Price MPG_city MPG_highway Horsepower Origin$;
run;

data cars93ffraw;
length Manufacturer $10;
input Manufacturer $ Type $ MPG_city MPG_highway Horsepower Origin $;
datalines;
Buick Midsize 15.7 22 31 110 USA
Buick Large 23.7 16 25 180 USA
Cadillac Midsize 40.1 16 25 295 USA
Chevrolet Sporty 15.1 19 28 160 USA
Chrylser Large 18.4 20 28 153 USA
Dodge Small 9.2 29 33 92 USA
Dodge Small 11.3 23 29 93 USA
Dodge Van 19 17 21 142 USA
Eagle Small 12.2 29 33 92 USA
Eagle Large 19.3 20 28 214 USA
Ford Small 10.1 23 30 127 USA
Ford Compact 11.3 22 27 96 USA
Ford Midsize 20.2 21 30 140 USA
Geo Sporty 12.5 30 36 90 non-USA
Lexus Midsize 28 18 24 185 non-USA
Mazda Small 8.3 29 37 82 non-USA
Mazda Sporty 32.5 17 25 255 non-USA
Nissan Compact 15.7 24 30 150 non-USA
Oldsmobile Compact 13.5 24 31 155 USA
Pontiac Small 9 31 41 74 USA
;


proc compare base=cars93ff2 compare=cars93ffraw;
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 30 Jan 2018 18:11:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432386#M4498</guid>
      <dc:creator>jc3992</dc:creator>
      <dc:date>2018-01-30T18:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Is it normal for output looking like this?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432400#M4499</link>
      <description>&lt;P&gt;Looks pretty typical for Proc Compare. What specific issue do you think you have?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sort order can have a big impact on proc compare for common observations. You might get a different result by sorting both of the data sets by Manufacturer and Type.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 18:17:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432400#M4499</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-30T18:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is it normal for output looking like this?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432455#M4501</link>
      <description>&lt;P&gt;According to proc compare report one of the datasets has 0 observations while the other has 20.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check - is 0 obs are correct or do are there any errors in log reading the dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try also usig proc compare with some options - datsets should be sorted by ID:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc compare base=cars93ff2 compare=cars93ffraw  ;
    ID  &lt;/CODE&gt;Manufacturer ;&lt;BR /&gt;&lt;CODE class=" language-sas"&gt;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 19:28:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432455#M4501</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2018-01-30T19:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is it normal for output looking like this?</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432483#M4502</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes I did notice that 0 obs.&lt;/P&gt;&lt;P&gt;I will check out on it again and ask my instructor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2018 20:30:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Is-it-normal-for-output-looking-like-this/m-p/432483#M4502</guid>
      <dc:creator>jc3992</dc:creator>
      <dc:date>2018-01-30T20:30:13Z</dc:date>
    </item>
  </channel>
</rss>

