<?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: sas studio versus sas 9.4 (PC) in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407858#M3819</link>
    <description>&lt;P&gt;Can you post the code and different logs that you're seeing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any chance that the import settings are different so you have a different number of records to start with?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check also system options that affect overall behavior, like VALIDVARNAME.&lt;/P&gt;</description>
    <pubDate>Thu, 26 Oct 2017 23:08:40 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2017-10-26T23:08:40Z</dc:date>
    <item>
      <title>sas studio versus sas 9.4 (PC)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407857#M3818</link>
      <description>&lt;P&gt;Trying to figure out why my SAS studio and my SAS 9.4 at work are giving me different results on the same data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;basically, I have the same excel file of data uploaded to both, same code renaming variables and subsetting the information, same everything except the SAS platform. Yet the resulting data subset in SAS 9.4 is 1571 observations, and in studio 1576.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;has anyone else run into this? the only thing I can think of is you can't use the same code language in both....?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 22:58:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407857#M3818</guid>
      <dc:creator>jeboltz</dc:creator>
      <dc:date>2017-10-26T22:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: sas studio versus sas 9.4 (PC)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407858#M3819</link>
      <description>&lt;P&gt;Can you post the code and different logs that you're seeing?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any chance that the import settings are different so you have a different number of records to start with?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check also system options that affect overall behavior, like VALIDVARNAME.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 23:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407858#M3819</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-10-26T23:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: sas studio versus sas 9.4 (PC)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407860#M3820</link>
      <description>&lt;P&gt;of course.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the code for the subsetting, where STItestALL is a dichotomous variable (made sure there's no missing) and then I don't want any observations with a missing entry for the variable of sex.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data DRsubset;&lt;BR /&gt;set DRdata;&lt;BR /&gt;if STItestALL = "Yes" or STItestALL = "No";&lt;BR /&gt;if sex ^= .;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the log for 9.4 is the following:&lt;/P&gt;&lt;P&gt;434&lt;BR /&gt;435&amp;nbsp; data DRsubset;&lt;BR /&gt;436&amp;nbsp; set DRdata;&lt;BR /&gt;437&amp;nbsp; if STItestALL = "Yes" or STItestALL = "No";&lt;BR /&gt;438&amp;nbsp; if sex ^= .;&lt;BR /&gt;439&amp;nbsp; run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 1602 observations read from the data set WORK.DRDATA.&lt;BR /&gt;NOTE: The data set WORK.DRSUBSET has 1571 observations and 365 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; real time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.04 seconds&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cpu time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.03 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and the log for studio is the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;448 data DRsubset;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;449 set WORK.DRdata;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;450 if STItestALL = "Yes" or STItestALL = "No";&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;451 if sex ^= .;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;452 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 1602 observations read from the data set WORK.DRDATA.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.DRSUBSET has 1576 observations and 368 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 3914.93k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 33704.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 10/26/2017 10:52:48 PM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 124 Switch Count 2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 611&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 13&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 9736&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;I also just noticed I somehow end up with 3 extra variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;I'll give the VALIDVARNAME a shot.&lt;/DIV&gt;</description>
      <pubDate>Thu, 26 Oct 2017 23:26:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407860#M3820</guid>
      <dc:creator>jeboltz</dc:creator>
      <dc:date>2017-10-26T23:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: sas studio versus sas 9.4 (PC)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407863#M3821</link>
      <description>&lt;P&gt;Now I'm suspicious of the methods of import.&amp;nbsp; Both using PROC IMPORT? And the same DBMS= method (I recommend DBMS=XLSX)?&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 23:53:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407863#M3821</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-10-26T23:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: sas studio versus sas 9.4 (PC)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407864#M3822</link>
      <description>&lt;P&gt;What's the earliest stage where the results differ?&lt;/P&gt;
&lt;P&gt;Check the Import first and work down from there....or start in the middle if they match move down the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SAS Studio (at least UE) seems a bit weird with how it imports Excel files and the names, it doesn't list them in the viewer if it's using VALIDVARNAME=ANY so I generally change that to V7 myself. &amp;nbsp;I think yesterday was the first time I came across this so far though.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2017 23:53:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407864#M3822</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-10-26T23:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: sas studio versus sas 9.4 (PC)</title>
      <link>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407916#M3823</link>
      <description>&lt;P&gt;I would first try to find where the three extra variables came from.&lt;/P&gt;
&lt;P&gt;Usually that is sign of a misspelled variable name or missing semi-colon that causes the code result in new variables being created.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2017 04:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/sas-studio-versus-sas-9-4-PC/m-p/407916#M3823</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2017-10-27T04:37:36Z</dc:date>
    </item>
  </channel>
</rss>

