<?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: help with easy way to run 1000 regressions in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777801#M247532</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I think the culprit is the missing values. In the manual code, SAS just gives me a note saying that it didn't include missing values. I tried to delete missing values from my loop, but it deleted way more observations than the manual version. I also tried adding a delete statement in the manual model in case sas was skipping over some of the missing values, but it didn't change the results. Any help as what I could do for this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I run the following code, I get 718 observations vs the manual code uses 869.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data perm.temp3; 
	set perm.mentalhealth; 
	
	array var_list[2] Anxiety trouble_sleeping;
 	do i=1 to dim(var_list);
	&lt;STRONG&gt;if var_list(i)=. then delete;&lt;/STRONG&gt;
  		  VarName=vname(var_list(i));
		  put VarName=;
  		  Outcome=vvalue(var_list[i]);
		
		  
  
	array categorical[2]  gender age ;
	do j=1 to dim(categorical);
	
 	  categorical_=vname(categorical(j));
	  put categorical_=;
	  CValue=vvalue(categorical[j]);
	&lt;STRONG&gt;  if categorical(j)= . then delete;&lt;/STRONG&gt;

	  output; 
	  end; end;
drop i j  ;	      
format Depression Depressionn. Anxiety Anxietyy. interest interestt. depressed _depressedd. trouble_sleeping trouble_sleepingg. 
		   little_energy little_energyy. appetite appetitee. feeling_bad feeling_badd. concentrating concentratingg. 
	       moving_slowly moving_slowlyy. hurting_yourself hurting_yourselff. PHQ9_SCORE PHQ9_SCORE_. PHQ2_SCORE PHQ2_SCORE. 
		   gender gender. race race. education_final education. insurance insurance. scalp_lesions scalp_lesionss. postauricular postauricularr. 
		   erythema erythemaa. eyelid_involvement eyelid_involvementt. cheilitis cheilitiss. flexural_erythema flexural_erythemaa. 
		   xerosis xerosiss. neck_folds neck_foldss. nipple_eczema nipple_eczemaa. keratosis keratosiss. palmar palmarr. 
		   hand_eczema hand_eczemaa. ichthyosis ichthyosiss. foot_eczema foot_eczemaa. age age_bin_. alopecia alopeciaa. 
		   pityriasis pityriasiss. pain_severeB painn. ;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Nov 2021 23:10:37 GMT</pubDate>
    <dc:creator>393310</dc:creator>
    <dc:date>2021-11-01T23:10:37Z</dc:date>
    <item>
      <title>help with easy way to run 1000 regressions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777700#M247459</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have been trying to loop glimmix using the blog &lt;A href="https://blogs.sas.com/content/iml/2017/02/13/run-1000-regressions.html" target="_blank" rel="noopener"&gt;An easy way to run thousands of regressions in SAS - The DO Loop by&amp;nbsp;&lt;/A&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;. I believe I followed it step by step, but when I run the data I get different p values than if I wrote it out manually. In my case, I have 12 dependent variables and 31 predictors to test. I was wondering if anyone had any insight into why the looped version is giving me different results?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;when I checked the type 3 of fixed effects in the looped model phq9=gender, I got a pvalue of .96, but when I run it manually using the original data set perm.mental health, the pvalue is .61.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;&lt;FONT color="#0000FF"&gt;data&lt;/FONT&gt; perm.temp; 
	&lt;FONT color="#0000FF"&gt;set&lt;/FONT&gt; perm.mentalhealth; 
	
	&lt;FONT color="#0000FF"&gt;array&lt;/FONT&gt; var_list[&lt;FONT color="#008000"&gt;12&lt;/FONT&gt;] trouble_sleeping hurting_yourself interest depressed little_energy appetite feeling_bad 
 					  concentrating moving_slowly PHQ9_SCORE Depression Anxiety;
 	&lt;FONT color="#0000FF"&gt;do&lt;/FONT&gt; i=&lt;FONT color="#008000"&gt;1&lt;/FONT&gt; to dim(var_list);
	
  		  VarName=vname(var_list(i));
		  put VarName=;
  		  Outcome=vvalue(var_list[i]);
		 
		  
  
	&lt;FONT color="#0000FF"&gt;array&lt;/FONT&gt; categorical[22]  gender age scalp_lesions postauricular erythema eyelid_involvement cheilitis flexural_erythema
			       xerosis neck_folds nipple_eczema keratosis palmar hand_eczema ichthyosis &lt;BR /&gt;                               foot_eczema race education_final insurance alopecia pityriasis pain_severeB;
	&lt;FONT color="#0000FF"&gt;do&lt;/FONT&gt; j=&lt;FONT color="#008000"&gt;1&lt;/FONT&gt; to dim(categorical);
	
 	  categorical_=vname(categorical(j));
	  &lt;FONT color="#0000FF"&gt;put&lt;/FONT&gt; categorical_=;
	  CValue=vvalue(categorical[j]);

	  &lt;FONT color="#0000FF"&gt;output;&lt;/FONT&gt; 
	  &lt;FONT color="#0000FF"&gt;end; end;&lt;/FONT&gt;
&lt;FONT color="#0000FF"&gt;drop&lt;/FONT&gt; i j  ;	      
&lt;FONT color="#0000FF"&gt;format&lt;/FONT&gt; Depression Depressionn. Anxiety Anxietyy. interest interestt. depressed _depressedd. trouble_sleeping trouble_sleepingg. 
       little_energy little_energyy. appetite appetitee. feeling_bad feeling_badd. concentrating concentratingg. 
       moving_slowly moving_slowlyy. hurting_yourself hurting_yourselff. PHQ9_SCORE PHQ9_SCORE_. PHQ2_SCORE PHQ2_SCORE. 
       gender gender. race race. education_final education. insurance insurance. scalp_lesions scalp_lesionss. &lt;BR /&gt;       postauricular postauricularr. erythema erythemaa. eyelid_involvement eyelid_involvementt. cheilitis cheilitiss. &lt;BR /&gt;       flexural_erythema flexural_erythemaa. xerosis xerosiss. neck_folds neck_foldss. nipple_eczema nipple_eczemaa. &lt;BR /&gt;       keratosis keratosiss. palmar palmarr.  hand_eczema hand_eczemaa. ichthyosis ichthyosiss. foot_eczema foot_eczemaa. &lt;BR /&gt;      age age_bin_. alopecia alopeciaa. pityriasis pityriasiss. pain_severeB painn. ;
&lt;FONT color="#0000FF"&gt;run;&lt;/FONT&gt;
 	&lt;FONT color="#0000FF"&gt;data&lt;/FONT&gt; perm.temp2; 
	&lt;FONT color="#0000FF"&gt;set&lt;/FONT&gt; perm.mentalhealth; 
	
	&lt;FONT color="#0000FF"&gt;array&lt;/FONT&gt; var_list[&lt;FONT color="#008000"&gt;12&lt;/FONT&gt;] trouble_sleeping hurting_yourself interest depressed little_energy appetite feeling_bad 
 			   concentrating moving_slowly PHQ9_SCORE Depression Anxiety ;
 	&lt;FONT color="#0000FF"&gt;do&lt;/FONT&gt; i=&lt;FONT color="#008000"&gt;1&lt;/FONT&gt; to dim(var_list);
	
  		  VarName=vname(var_list(i));
		  &lt;FONT color="#0000FF"&gt;put&lt;/FONT&gt; VarName=;
  		  Outcome=vvalue(var_list[i]);

	&lt;FONT color="#0000FF"&gt;array&lt;/FONT&gt; npredictors[&lt;FONT color="#008000"&gt;9&lt;/FONT&gt;] SCORAD EASI BSA ADSI POEM_SCORE dlqi_score FIVED_SCORE RL_SCORE flare;
	&lt;FONT color="#0000FF"&gt;do&lt;/FONT&gt; k=&lt;FONT color="#008000"&gt;1&lt;/FONT&gt; to dim(npredictors);
	   	npredictors_=vname(npredictors(k)); 
	   	Value=(npredictors[k]);
&lt;FONT color="#0000FF"&gt;output;&lt;/FONT&gt; 
&lt;FONT color="#0000FF"&gt;end;end;&lt;/FONT&gt;
&lt;FONT color="#0000FF"&gt;drop&lt;/FONT&gt; k;		
    
&lt;FONT color="#0000FF"&gt;format&lt;/FONT&gt;  Depression Depressionn. Anxiety Anxietyy. interest interestt. depressed _depressedd. trouble_sleeping trouble_sleepingg. 
       little_energy little_energyy. appetite appetitee. feeling_bad feeling_badd. concentrating concentratingg. 
       moving_slowly moving_slowlyy. hurting_yourself hurting_yourselff. PHQ9_SCORE PHQ9_SCORE_. PHQ2_SCORE PHQ2_SCORE. 
       gender gender. race race. education_final education. insurance insurance. scalp_lesions scalp_lesionss. &lt;BR /&gt;       postauricular postauricularr. erythema erythemaa. eyelid_involvement eyelid_involvementt. cheilitis cheilitiss. &lt;BR /&gt;       flexural_erythema flexural_erythemaa. xerosis xerosiss. neck_folds neck_foldss. nipple_eczema nipple_eczemaa. &lt;BR /&gt;       keratosis keratosiss. palmar palmarr.  hand_eczema hand_eczemaa. ichthyosis ichthyosiss. foot_eczema foot_eczemaa. &lt;BR /&gt;       age age_bin_. alopecia alopeciaa. pityriasis pityriasiss. pain_severeB painn. ;
	
&lt;FONT color="#0000FF"&gt;run; &lt;/FONT&gt;

&lt;FONT color="#0000FF"&gt; proc sort data&lt;/FONT&gt;=perm.temp; 
	&lt;FONT color="#0000FF"&gt;by&lt;/FONT&gt; VarName categorical_; 
&lt;FONT color="#0000FF"&gt;run;&lt;/FONT&gt;
&lt;FONT color="#0000FF"&gt;proc sort data&lt;/FONT&gt;=perm.temp2; 
	&lt;FONT color="#0000FF"&gt;by&lt;/FONT&gt; VarName npredictors_; 
&lt;FONT color="#0000FF"&gt;run;&lt;/FONT&gt;
&lt;FONT color="#0000FF"&gt;proc glimmix data&lt;/FONT&gt;=perm.temp &lt;FONT color="#0000FF"&gt;method&lt;/FONT&gt;=laplace ; 
	&lt;FONT color="#0000FF"&gt;by&lt;/FONT&gt; VarName categorical_;
 	&lt;FONT color="#0000FF"&gt;class&lt;/FONT&gt;  record_id_final CValue  outcome ; 
	&lt;FONT color="#0000FF"&gt;model&lt;/FONT&gt; outcome = CValue  /&lt;FONT color="#0000FF"&gt;link&lt;/FONT&gt;=cumlogit &lt;FONT color="#0000FF"&gt;dist&lt;/FONT&gt;=multinomial solution;
 	&lt;FONT color="#0000FF"&gt;random&lt;/FONT&gt; visit /subject=record_id_final;
&lt;FONT color="#0000FF"&gt;run&lt;/FONT&gt;;
&lt;FONT color="#0000FF"&gt;proc glimmix data&lt;/FONT&gt;=perm.temp2 method=laplace ; 
	&lt;FONT color="#0000FF"&gt;by&lt;/FONT&gt; VarName npredictors_;
 	&lt;FONT color="#0000FF"&gt;class&lt;/FONT&gt;  record_id_final Value outcome ; 
	&lt;FONT color="#0000FF"&gt;model&lt;/FONT&gt; outcome = Value /link=cumlogit dist=multinomial solution;
 	&lt;FONT color="#0000FF"&gt;random&lt;/FONT&gt; visit /subject=record_id_final;
&lt;FONT color="#0000FF"&gt;run;&lt;BR /&gt;&lt;/FONT&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;manual glimmix:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;&lt;FONT color="#0000FF"&gt; proc glimmix data&lt;/FONT&gt;=perm.mentalhealth &lt;FONT color="#0000FF"&gt;method&lt;/FONT&gt;=laplace &lt;FONT color="#0000FF"&gt;order&lt;/FONT&gt;=internal ; 
  &lt;FONT color="#0000FF"&gt;class&lt;/FONT&gt;  record_id_final PHQ9_SCORE  gender ;
  &lt;FONT color="#0000FF"&gt;model&lt;/FONT&gt; PHQ9_SCORE= gender  /&lt;FONT color="#0000FF"&gt;link&lt;/FONT&gt;=cumlogit &lt;FONT color="#0000FF"&gt;dist&lt;/FONT&gt;=multinomial&lt;FONT color="#0000FF"&gt; solution&lt;/FONT&gt; ;
  &lt;FONT color="#0000FF"&gt;random&lt;/FONT&gt; visit /subject=record_id_final;
&lt;FONT color="#0000FF"&gt;run;&lt;/FONT&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;log from do loop:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="schatr2_2-1635779465342.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65293iF622DA9C15091FAA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="schatr2_2-1635779465342.png" alt="schatr2_2-1635779465342.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;results from testing the model phq9=gender:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;manual model:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="schatr2_0-1635779256011.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65291i8F30B3BCDA157FB8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="schatr2_0-1635779256011.png" alt="schatr2_0-1635779256011.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;looped:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="schatr2_1-1635779284948.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/65292iF1E7E7743252D275/image-size/medium?v=v2&amp;amp;px=400" role="button" title="schatr2_1-1635779284948.png" alt="schatr2_1-1635779284948.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Nov 2021 15:21:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777700#M247459</guid>
      <dc:creator>393310</dc:creator>
      <dc:date>2021-11-01T15:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: help with easy way to run 1000 regressions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777768#M247503</link>
      <description>&lt;P&gt;Why are you making two different datasets from the same input dataset?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is supposed be different about the two?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Nov 2021 20:05:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777768#M247503</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-11-01T20:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: help with easy way to run 1000 regressions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777769#M247504</link>
      <description>When I tried to nest all 3 do loops the model wouldn’t converge. So I broke it up into perm.temp looking at just the categorical predictors and temp2 has the continuous predictors. Then running 2 glimmix’s .</description>
      <pubDate>Mon, 01 Nov 2021 20:31:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777769#M247504</guid>
      <dc:creator>393310</dc:creator>
      <dc:date>2021-11-01T20:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: help with easy way to run 1000 regressions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777772#M247507</link>
      <description>&lt;P&gt;To test if your transformations are generating the same analyses try just transposing one or two variables.&amp;nbsp; Then run the analyses individually and see if the results are the same.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Things to check for include changes in the number of observations, changes in the number of categories for a variable (perhaps your transposed structure is truncating some longer formatted values?).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Nov 2021 20:43:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777772#M247507</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-11-01T20:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: help with easy way to run 1000 regressions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777801#M247532</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I think the culprit is the missing values. In the manual code, SAS just gives me a note saying that it didn't include missing values. I tried to delete missing values from my loop, but it deleted way more observations than the manual version. I also tried adding a delete statement in the manual model in case sas was skipping over some of the missing values, but it didn't change the results. Any help as what I could do for this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I run the following code, I get 718 observations vs the manual code uses 869.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;data perm.temp3; 
	set perm.mentalhealth; 
	
	array var_list[2] Anxiety trouble_sleeping;
 	do i=1 to dim(var_list);
	&lt;STRONG&gt;if var_list(i)=. then delete;&lt;/STRONG&gt;
  		  VarName=vname(var_list(i));
		  put VarName=;
  		  Outcome=vvalue(var_list[i]);
		
		  
  
	array categorical[2]  gender age ;
	do j=1 to dim(categorical);
	
 	  categorical_=vname(categorical(j));
	  put categorical_=;
	  CValue=vvalue(categorical[j]);
	&lt;STRONG&gt;  if categorical(j)= . then delete;&lt;/STRONG&gt;

	  output; 
	  end; end;
drop i j  ;	      
format Depression Depressionn. Anxiety Anxietyy. interest interestt. depressed _depressedd. trouble_sleeping trouble_sleepingg. 
		   little_energy little_energyy. appetite appetitee. feeling_bad feeling_badd. concentrating concentratingg. 
	       moving_slowly moving_slowlyy. hurting_yourself hurting_yourselff. PHQ9_SCORE PHQ9_SCORE_. PHQ2_SCORE PHQ2_SCORE. 
		   gender gender. race race. education_final education. insurance insurance. scalp_lesions scalp_lesionss. postauricular postauricularr. 
		   erythema erythemaa. eyelid_involvement eyelid_involvementt. cheilitis cheilitiss. flexural_erythema flexural_erythemaa. 
		   xerosis xerosiss. neck_folds neck_foldss. nipple_eczema nipple_eczemaa. keratosis keratosiss. palmar palmarr. 
		   hand_eczema hand_eczemaa. ichthyosis ichthyosiss. foot_eczema foot_eczemaa. age age_bin_. alopecia alopeciaa. 
		   pityriasis pityriasiss. pain_severeB painn. ;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Nov 2021 23:10:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777801#M247532</guid>
      <dc:creator>393310</dc:creator>
      <dc:date>2021-11-01T23:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: help with easy way to run 1000 regressions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777807#M247537</link>
      <description>&lt;P&gt;Testing for missing is a reasonable idea, but you should not be issuing a DELETE at that point.&amp;nbsp; That will stop the whole iteration of the data step, not just skip this one variable in the DO loop.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data perm.temp3; 
  set perm.mentalhealth; 
  array var_list Anxiety trouble_sleeping;
  array categorical gender age ;
  do i=1 to dim(var_list);
    if not missing(var_list[i]) then do j=1 to dim(categorical);
      if not missing(categorical[j]) then do;
        categorical_=vname(categorical[j]);
        CValue=vvalue(categorical[j]);
        output; 
      end;
    end;
  end;
  drop i j ;
  format 
    Depression Depressionn. Anxiety Anxietyy. interest interestt. 
    depressed _depressedd. trouble_sleeping trouble_sleepingg. 
    little_energy little_energyy. appetite appetitee. 
    feeling_bad feeling_badd. concentrating concentratingg. 
    moving_slowly moving_slowlyy. hurting_yourself hurting_yourselff. 
    PHQ9_SCORE PHQ9_SCORE_. PHQ2_SCORE PHQ2_SCORE. 
    gender gender. race race. education_final education. 
    insurance insurance. scalp_lesions scalp_lesionss. 
    postauricular postauricularr. 
    erythema erythemaa. eyelid_involvement eyelid_involvementt. 
    cheilitis cheilitiss. flexural_erythema flexural_erythemaa. 
    xerosis xerosiss. neck_folds neck_foldss. 
    nipple_eczema nipple_eczemaa. keratosis keratosiss. palmar palmarr. 
    hand_eczema hand_eczemaa. ichthyosis ichthyosiss. 
    foot_eczema foot_eczemaa. age age_bin_. alopecia alopeciaa. 
    pityriasis pityriasiss. pain_severeB painn. 
  ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Nov 2021 00:57:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777807#M247537</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2021-11-02T00:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: help with easy way to run 1000 regressions</title>
      <link>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777808#M247538</link>
      <description>Thank you so much that fixed the issue perfectly!!!</description>
      <pubDate>Tue, 02 Nov 2021 01:38:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/help-with-easy-way-to-run-1000-regressions/m-p/777808#M247538</guid>
      <dc:creator>393310</dc:creator>
      <dc:date>2021-11-02T01:38:05Z</dc:date>
    </item>
  </channel>
</rss>

