<?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: Looking for ANOVA in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834898#M10534</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/432892"&gt;@JoshuaG&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;What should be the model then?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please read the log carefully. It is saying that it cannot find a variable named DRIVINGCLASS. The model has to contain variables that are actually in the data set.&lt;/P&gt;</description>
    <pubDate>Fri, 23 Sep 2022 18:00:13 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2022-09-23T18:00:13Z</dc:date>
    <item>
      <title>Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834890#M10530</link>
      <description>&lt;P&gt;I was working on a HW assignment and stumbled across a problem.&amp;nbsp; I have the two ods output statements as placeholders until I know how to locate the table names. How do I find the table names and what are they given this scenario?&lt;/P&gt;&lt;P&gt;I will attach code, the log file and part of the assignment as well. Any help would be greatly appreciated!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;ods select anova;
proc reg data = drivingclass;
model drivingclass = Hours Score;
ods output anova=anova_table;
ods output ParameterEstimates=estimates; 
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=""&gt; 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 NOTE: ODS statements in the SAS Studio environment may disable some output features.
 69 
 70 /* S325 HW 3
 71 By Joshua Gataric
 72 9/23/2022
 73 */
 74 
 75 ods trace on;
 76 data drivingclass;
 77 infile '/home/u62108616/sasuser.v94/S325/driving class-1.dat';
 78 if _n_ &amp;lt;=15 then Campus = 'A';
 79 else Campus = 'B';
 80 input Hours Score;
 81 
 82 ods trace on;
 NOTE: The infile '/home/u62108616/sasuser.v94/S325/driving class-1.dat' is:
 Filename=/home/u62108616/sasuser.v94/S325/driving class-1.dat,
 Owner Name=u62108616,Group Name=oda,
 Access Permission=-rw-r--r--,
 Last Modified=23Sep2022:09:35:42,
 File Size (bytes)=391
 NOTE: 30 records were read from the infile '/home/u62108616/sasuser.v94/S325/driving class-1.dat'.
 The minimum record length was 11.
 The maximum record length was 12.
 NOTE: The data set WORK.DRIVINGCLASS has 30 observations and 3 variables.
 NOTE: DATA statement used (Total process time):
 real time 0.00 seconds
 user cpu time 0.00 seconds
 system cpu time 0.00 seconds
 memory 868.81k
 OS Memory 31652.00k
 Timestamp 09/23/2022 05:32:25 PM
 Step Count 267 Switch Count 3
 Page Faults 0
 Page Reclaims 92
 Page Swaps 0
 Voluntary Context Switches 24
 Involuntary Context Switches 0
 Block Input Operations 0
 Block Output Operations 264
 
 83 proc print data = drivingclass;
 84 run;
 Output Added:
 -------------
 Name: Print
 Label: Data Set WORK.DRIVINGCLASS
 Data Name: ProcPrintTable
 Path: Print.Print
 -------------
 NOTE: There were 30 observations read from the data set WORK.DRIVINGCLASS.
 NOTE: PROCEDURE PRINT used (Total process time):
 real time 0.03 seconds
 user cpu time 0.03 seconds
 system cpu time 0.00 seconds
 memory 1253.15k
 OS Memory 31652.00k
 Timestamp 09/23/2022 05:32:25 PM
 Step Count 268 Switch Count 0
 Page Faults 0
 Page Reclaims 60
 Page Swaps 0
 Voluntary Context Switches 0
 Involuntary Context Switches 0
 Block Input Operations 0
 Block Output Operations 8
 
 85 
 86 
 87 proc means data = drivingclass maxdec = 2;
 88 class Campus;
 89 var Score;
 90 ods output summary = DRIVING;
 91 run;
9/23/22, 10:32 AM Log: HW3_JoshuaGataric.sas
2/3
 Output Added:
 -------------
 Name: Summary
 Label: Summary statistics
 Template: base.summary
 Path: Means.Summary
 -------------
 NOTE: The data set WORK.DRIVING has 2 observations and 7 variables.
 NOTE: There were 30 observations read from the data set WORK.DRIVINGCLASS.
 NOTE: PROCEDURE MEANS used (Total process time):
 real time 0.02 seconds
 user cpu time 0.02 seconds
 system cpu time 0.01 seconds
 memory 9671.59k
 OS Memory 39612.00k
 Timestamp 09/23/2022 05:32:25 PM
 Step Count 269 Switch Count 4
 Page Faults 0
 Page Reclaims 1952
 Page Swaps 0
 Voluntary Context Switches 35
 Involuntary Context Switches 0
 Block Input Operations 0
 Block Output Operations 264
 
 92 
 93 ods select anova;
 94 proc reg data = drivingclass;
 95 model drivingclass = Hours Score;
 ERROR: Variable DRIVINGCLASS not found.
 NOTE: The previous statement has been deleted.
 96 ods output anova=anova_table;
 97 ods output ParameterEstimates=estimates;
 98 run;
 WARNING: No variables specified for an SSCP matrix. Execution terminating.
 NOTE: PROCEDURE REG used (Total process time):
 real time 0.00 seconds
 user cpu time 0.00 seconds
 system cpu time 0.01 seconds
 memory 2100.65k
 OS Memory 33468.00k
 Timestamp 09/23/2022 05:32:25 PM
 Step Count 270 Switch Count 2
 Page Faults 0
 Page Reclaims 254
 Page Swaps 0
 Voluntary Context Switches 19
 Involuntary Context Switches 0
 Block Input Operations 0
 Block Output Operations 48
 
 WARNING: Output 'ParameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly. 
 Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify 
 that the NOPRINT option is not used.
 WARNING: Output 'anova' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify 
 that the appropriate procedure options are used to produce the requested output object. For example, verify that the 
 NOPRINT option is not used.
 WARNING: Output 'anova' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify 
 that the appropriate procedure options are used to produce the requested output object. For example, verify that the 
 NOPRINT option is not used.
 99 
 100 proc corr data = drivingclass;
 101 var Hours Score;
 102 run;
 Output Added:
 -------------
 Name: VarInformation
 Label: Variables Information
 Template: base.corr.VarInfo
 Path: Corr.VarInformation
 -------------
 Output Added:
 -------------
 Name: SimpleStats
 Label: Simple Statistics
 Template: base.corr.UniStat
 Path: Corr.SimpleStats
9/23/22, 10:32 AM Log: HW3_JoshuaGataric.sas
3/3
 -------------
 Output Added:
 -------------
 Name: PearsonCorr
 Label: Pearson Correlations
 Template: base.corr.StackedMatrix
 Path: Corr.PearsonCorr
 -------------
 NOTE: PROCEDURE CORR used (Total process time):
 real time 0.02 seconds
 user cpu time 0.03 seconds
 system cpu time 0.00 seconds
 memory 970.31k
 OS Memory 31908.00k
 Timestamp 09/23/2022 05:32:25 PM
 Step Count 271 Switch Count 0
 Page Faults 0
 Page Reclaims 51
 Page Swaps 0
 Voluntary Context Switches 0
 Involuntary Context Switches 0
 Block Input Operations 0
 Block Output Operations 16
 
 103 ods trace off;
 104 
 105 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 115&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE class=""&gt;Run  a  regression  model  to  test  the  relationship  between  class  hour  (independent  variable)  and 
performance score (dependent variable).   
Use ods trace statement to generate the ANOVA table and the parameter estimates outputs only from 
the regression results (Use ODS select). (You need to check the log file for the table names for 
ANOVA and parameter estimates) and then save these two tables into SAS data using the following 
commands   ods output anova=anova_table; *where anova_table is the data set name you 
created: 
ods output ParameterEstimates=estimates;   &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Sep 2022 17:40:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834890#M10530</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T17:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834892#M10531</link>
      <description>&lt;P&gt;You get no output from the PROC REG because of the error in the log&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; 94 proc reg data = drivingclass;
 95 model drivingclass = Hours Score;
 ERROR: Variable DRIVINGCLASS not found.&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fix that, and you should be able to get the ANOVA output.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 17:45:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834892#M10531</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-23T17:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834893#M10532</link>
      <description>&lt;P&gt;How do I go about fixing it?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 17:46:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834893#M10532</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T17:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834895#M10533</link>
      <description>&lt;P&gt;What should be the model then?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 17:50:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834895#M10533</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T17:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834898#M10534</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/432892"&gt;@JoshuaG&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;What should be the model then?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please read the log carefully. It is saying that it cannot find a variable named DRIVINGCLASS. The model has to contain variables that are actually in the data set.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:00:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834898#M10534</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-23T18:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834901#M10535</link>
      <description>&lt;P&gt;I thought hours and score was in the data set? Do I need to change the left side of the equal sign? I am just stuck as to what I should put on the left side of the equal sign.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:03:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834901#M10535</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834905#M10536</link>
      <description>Run&lt;BR /&gt;proc print data=DRIVINGCLASS;&lt;BR /&gt;run;&lt;BR /&gt;It will show you the variable names</description>
      <pubDate>Fri, 23 Sep 2022 18:11:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834905#M10536</guid>
      <dc:creator>tom_grant</dc:creator>
      <dc:date>2022-09-23T18:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834906#M10537</link>
      <description>&lt;P&gt;I have that on line 14, do I need to do it again?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:13:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834906#M10537</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834907#M10538</link>
      <description>83 proc print data = drivingclass;&lt;BR /&gt;84 run;&lt;BR /&gt;&lt;BR /&gt;I mean 83/84 on the log file</description>
      <pubDate>Fri, 23 Sep 2022 18:16:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834907#M10538</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834908#M10539</link>
      <description>&lt;P&gt;Once again, the variable you put in the code named DRIVINGCLASS is not in the data set. Therefore, you cannot use it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have no idea what variables are actually in the data set, so I cannot advise. You, however, can determine what variables are in the data set and determine which to use in the model. Since you have already done the PROC PRINT, you should look at that and see for yourself what variables are available, and determine where they go in the model.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:18:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834908#M10539</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-23T18:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834910#M10540</link>
      <description>&lt;P&gt;The variables are Campus, Hours, and Score. However, Campus is not needed for what this question is asking for. Knowing this, what should I make the model line look like?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:23:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834910#M10540</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834912#M10541</link>
      <description>&lt;P&gt;Here is the question that you were asked to work on:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Run a regression model to test the relationship between class hour (independent variable) and&amp;nbsp;performance score (dependent variable)."&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:27:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834912#M10541</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-23T18:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834915#M10542</link>
      <description>&lt;P&gt;I am completely lost, would it just be hours = score&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:30:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834915#M10542</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834917#M10543</link>
      <description>&lt;P&gt;You're close it would be&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;score=hours&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:33:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834917#M10543</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-23T18:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834918#M10544</link>
      <description>&lt;DIV class=""&gt;Output Added:&lt;/DIV&gt;&lt;DIV class=""&gt;-------------&lt;/DIV&gt;&lt;DIV class=""&gt;Name: ANOVA&lt;/DIV&gt;&lt;DIV class=""&gt;Label: Analysis of Variance&lt;/DIV&gt;&lt;DIV class=""&gt;Template: Stat.REG.ANOVA&lt;/DIV&gt;&lt;DIV class=""&gt;Path: Reg.MODEL1.Fit.Hours.ANOVA&lt;/DIV&gt;&lt;DIV class=""&gt;-------------&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Output Added:&lt;/DIV&gt;&lt;DIV class=""&gt;-------------&lt;/DIV&gt;&lt;DIV class=""&gt;Name: ParameterEstimates&lt;/DIV&gt;&lt;DIV class=""&gt;Label: Parameter Estimates&lt;/DIV&gt;&lt;DIV class=""&gt;Template: Stat.REG.ParameterEstimates&lt;/DIV&gt;&lt;DIV class=""&gt;Path: Reg.MODEL1.Fit.Hours.ParameterEstimates&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:41:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834918#M10544</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834920#M10545</link>
      <description>&lt;P&gt;ods select anova;&lt;BR /&gt;proc reg data = drivingclass;&lt;BR /&gt;model Hours = Score;&lt;BR /&gt;ods output anova= Analysis of Variance;&lt;BR /&gt;ods output ParameterEstimates= Parameter Estimates;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;WARNING: Output 'Estimates' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,&lt;/DIV&gt;&lt;DIV class=""&gt;verify that the appropriate procedure options are used to produce the requested output object. For example, verify that&lt;/DIV&gt;&lt;DIV class=""&gt;the NOPRINT option is not used.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Output 'Variance' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,&lt;/DIV&gt;&lt;DIV class=""&gt;verify that the appropriate procedure options are used to produce the requested output object. For example, verify that&lt;/DIV&gt;&lt;DIV class=""&gt;the NOPRINT option is not used.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Output 'of' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify&lt;/DIV&gt;&lt;DIV class=""&gt;that the appropriate procedure options are used to produce the requested output object. For example, verify that the&lt;/DIV&gt;&lt;DIV class=""&gt;NOPRINT option is not used.&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:42:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834920#M10545</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834923#M10546</link>
      <description>I switched the variables around but it is still giving me this issue</description>
      <pubDate>Fri, 23 Sep 2022 18:47:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834923#M10546</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834926#M10547</link>
      <description>&lt;P&gt;Here is an important fact about PROC REG: It is an example of an interactive procedure. It does not exit until you submit the QUIT statement. When the procedure quits, it will create the ODS tables. So try adding a&amp;nbsp;&lt;BR /&gt;QUIT;&lt;/P&gt;
&lt;P&gt;statement after the RUN; statement and see whether the errors for the ODS tables are resolved.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:54:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834926#M10547</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-09-23T18:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834927#M10548</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/432892"&gt;@JoshuaG&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;I switched the variables around but it is still giving me this issue&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It is giving you a different issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select anova;
proc reg data = drivingclass;
model Hours = Score;
ods output anova= Analysis of Variance;
ods output ParameterEstimates= Parameter Estimates;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After &lt;FONT face="courier new,courier"&gt;ods output anova=&lt;/FONT&gt; you need to have a valid SAS data set name. &lt;FONT face="courier new,courier"&gt;Analysis of Variance&lt;/FONT&gt; is not a valid SAS data set name. Do you know why it is not a valid SAS data set name?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After &lt;FONT face="courier new,courier"&gt;ods output ParameterEstimtes=&lt;/FONT&gt; you need to have a valid SAS data set name. &lt;FONT face="courier new,courier"&gt;Parameter Estimates&lt;/FONT&gt; is not a valid SAS data set name.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you still have hours and score in the wrong place.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:59:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834927#M10548</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-09-23T18:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Looking for ANOVA</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834928#M10549</link>
      <description>&lt;P&gt;I honestly have no clue why that is the case&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2022 18:58:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Looking-for-ANOVA/m-p/834928#M10549</guid>
      <dc:creator>JoshuaG</dc:creator>
      <dc:date>2022-09-23T18:58:47Z</dc:date>
    </item>
  </channel>
</rss>

