<?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: How to specifiy significance level to be 0.5 in ProcGLMSelect in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803579#M316419</link>
    <description>&lt;P&gt;Thanks you!&lt;/P&gt;</description>
    <pubDate>Wed, 23 Mar 2022 14:47:18 GMT</pubDate>
    <dc:creator>LABRADOR</dc:creator>
    <dc:date>2022-03-23T14:47:18Z</dc:date>
    <item>
      <title>How to specifiy significance level to be 0.5 in ProcGLMSelect</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803486#M316372</link>
      <description>&lt;P&gt;I am trying to build a stepwise regression model using&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;debt&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;as the dependent variable, and all of the other variables in the data file as a predictor variables.&lt;/P&gt;&lt;P&gt;Here is the data:&lt;/P&gt;&lt;PRE&gt;/* --------------------------------------------------------------------
   Code generated by a SAS task
   
   Generated on Tuesday, March 22, 2022 at 6:55:23 PM
   By task:     Import Data Wizard
   
   Source file: P:\MS_3313\Exam_1\GDP.xlsx
   Server:      Local
   
   Output data: WORK.GDP
   Server:      Local
   -------------------------------------------------------------------- */

/* --------------------------------------------------------------------
   This DATA step reads the data values from a temporary text file
   created by the Import Data wizard. The values within the temporary
   text file were extracted from the Excel source file.
   -------------------------------------------------------------------- */

DATA WORK.GDP;
    LENGTH
        Year               8
        GDP                8
        Budget             8
        Surplus            8
        'Relative Surplus'n   8
        Debt               8
        Interest           8
        'Relative Interest'n   8 ;
    FORMAT
        Year             BEST12.
        GDP              BEST12.
        Budget           BEST12.
        Surplus          BEST12.
        'Relative Surplus'n BEST12.
        Debt             BEST12.
        Interest         BEST12.
        'Relative Interest'n BEST12. ;
    INFORMAT
        Year             BEST12.
        GDP              BEST12.
        Budget           BEST12.
        Surplus          BEST12.
        'Relative Surplus'n BEST12.
        Debt             BEST12.
        Interest         BEST12.
        'Relative Interest'n BEST12. ;
    INFILE 'C:\Users\ssd506\AppData\Roaming\SAS\EnterpriseGuide\EGTEMP\SEG-3756-4b181ba3\contents\GDP-d0419501d7d1440499323245eac8b347.txt'
        LRECL=36
        ENCODING="WLATIN1"
        TERMSTR=CRLF
        DLM='7F'x
        MISSOVER
        DSD ;
    INPUT
        Year             : BEST32.
        GDP              : BEST32.
        Budget           : BEST32.
        Surplus          : BEST32.
        'Relative Surplus'n : BEST32.
        Debt             : BEST32.
        Interest         : BEST32.
        'Relative Interest'n : BEST32. ;
RUN;&lt;/PRE&gt;&lt;P&gt;Here is my&amp;nbsp; code:&lt;/P&gt;&lt;PRE&gt;proc contents varnum data=work.gdp;
	ods select position;
run;
proc glmselect data=work.gdp plots=all;

	class Debt Budget GDP Budget Interest 'Relative Interest'n 'Relative Surplus'n Surplus Year;
	model Debt = Budget GDP Budget Interest 'Relative Interest'n 'Relative Surplus'n Surplus Year
	/ details=all stats=all selection=stepwise;
	
run;
ods graphics off;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Mar 2022 01:19:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803486#M316372</guid>
      <dc:creator>LABRADOR</dc:creator>
      <dc:date>2022-03-23T01:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to specifiy significance level to be 0.5 in ProcGLMSelect</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803512#M316390</link>
      <description>&lt;P&gt;The MODELAVERAGE statement has an Alpha= option and default is Alpha=0.5. So may investigate that statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 08:09:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803512#M316390</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-03-23T08:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to specifiy significance level to be 0.5 in ProcGLMSelect</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803579#M316419</link>
      <description>&lt;P&gt;Thanks you!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 14:47:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803579#M316419</guid>
      <dc:creator>LABRADOR</dc:creator>
      <dc:date>2022-03-23T14:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to specifiy significance level to be 0.5 in ProcGLMSelect</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803582#M316422</link>
      <description>&lt;P&gt;Does this look correct?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc contents varnum data=work.gdp;
	ods select position;
run;
proc glmselect data=work.gdp plots=all;
	modelaverage alpha=0.5;
	class Debt Budget GDP Budget Interest 'Relative Interest'n 'Relative Surplus'n Surplus Year;
	model Debt  = Budget GDP Budget Interest 'Relative Interest'n 'Relative Surplus'n Surplus Year
	/ details=all stats=all selection=stepwise;
	
run;
ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 23 Mar 2022 15:08:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-specifiy-significance-level-to-be-0-5-in-ProcGLMSelect/m-p/803582#M316422</guid>
      <dc:creator>LABRADOR</dc:creator>
      <dc:date>2022-03-23T15:08:29Z</dc:date>
    </item>
  </channel>
</rss>

