<?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: Results view on SAS Studio in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Results-view-on-SAS-Studio/m-p/707924#M26551</link>
    <description>&lt;P&gt;Sounds like you want to use "interactive" mode of SAS/Studio.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 184px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52990iAA99CB95E03F0FE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 23 Dec 2020 16:32:14 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2020-12-23T16:32:14Z</dc:date>
    <item>
      <title>Results view on SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Results-view-on-SAS-Studio/m-p/707852#M26546</link>
      <description>&lt;P&gt;Hi Community!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm learning to use SAS Studio for Academics and I'm having troubles with the Results viewing.&lt;/P&gt;&lt;P&gt;When I run different procedures one by one (e.g. I run proc freq, then I run proc corr), when I run a new proc in the Results tab it shows only the output for the last proc (i.e. proc corr) while the output for the previous proc (i.e proc freq) seems to disappear.&lt;/P&gt;&lt;P&gt;I tried to use the "Summary" drop-down menu (in the Italian version is called "Sommario", not sure about the name in the English version), but again it does show only the last procedure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to go back to see the output for previous procedures? Or do I have to re-run the procedure I need?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Giulia&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 10:01:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Results-view-on-SAS-Studio/m-p/707852#M26546</guid>
      <dc:creator>GiuPri</dc:creator>
      <dc:date>2020-12-23T10:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Results view on SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Results-view-on-SAS-Studio/m-p/707908#M26550</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; The best way to control this on SAS OnDemand for Academics is to&lt;/P&gt;
&lt;P&gt;1) put your proc freq and your corr into ONE program file tab (not in 2 editor tabs). Each editor tab has 1 results window. If you have 3 procedure steps in one program, then all the output will show in THAT results window. but if you have the PROC FREQ in one tab and the PROC CORR in another tab, then you will have to switch between the tabs for each procedure to see the results. Your output from your programs is NOT cumulative. Every time you run a program in the Editor, your previous program results are overwritten by the new results from the same program editor tab. So this is how SAS Studio operates.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another approach is:&lt;/P&gt;
&lt;P&gt;2) take full control of your output and use the Output Delivery system. Here's some code to try:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html path='/home/&amp;lt;userID&amp;gt;/' file="myreport.html";
 
proc print data=sashelp.class(obs=10);
title '1 PROC PRINT';
run;
  
proc freq data=sashelp.class;
  title '2 PROC FREQ';
  tables age;
run;
  
proc tabulate data=sashelp.class;
  title '3 PROC TABULATE';
  class age sex;
  var height;
  tables age all,
         sex*mean*height;
run;
  
proc corr data=sashelp.class sscp cov plots=matrix;
   title '4 PROC CORR';
   var  height age;
   with weight;
run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp; With this approach, you take "full control" of the output by using a set of ODS statements around all the output you want to have saved in one output file. You will write this output to your "home" folder. If you right click on Files (Home) and choose Properties, you'll see your unique userID to put in the path option. Then, after the program runs, you can see the output in your Files (Home) location so then if you change the program and you want to have both outputs available, the second time you run the program, just change the name in the FILE= option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps explain some options.&lt;/P&gt;
&lt;P&gt;Cynthia&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 15:47:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Results-view-on-SAS-Studio/m-p/707908#M26550</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2020-12-23T15:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Results view on SAS Studio</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Results-view-on-SAS-Studio/m-p/707924#M26551</link>
      <description>&lt;P&gt;Sounds like you want to use "interactive" mode of SAS/Studio.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 184px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/52990iAA99CB95E03F0FE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 16:32:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Results-view-on-SAS-Studio/m-p/707924#M26551</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-12-23T16:32:14Z</dc:date>
    </item>
  </channel>
</rss>

