<?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: Proc countreg with wmat starts with warnings in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Proc-countreg-with-wmat-starts-with-warnings/m-p/960124#M4946</link>
    <description>&lt;P&gt;In order to further look into this and determine the cause, it may be necessary to have your data set to test the code. If you cannot upload the .sas7bdat file sufficient to produce the error here, perhaps you can open a case with Technical Support to get further help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/en/technical-support.html" target="_blank"&gt;https://support.sas.com/en/technical-support.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 23:53:06 GMT</pubDate>
    <dc:creator>SASCom1</dc:creator>
    <dc:date>2025-02-24T23:53:06Z</dc:date>
    <item>
      <title>Proc countreg with wmat starts with warnings</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Proc-countreg-with-wmat-starts-with-warnings/m-p/956737#M4924</link>
      <description>&lt;P&gt;Hello community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to start a countreg with wmat, this is the code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let model_features 	= 
						pls_:
						;
%let zeromodel_features = 
						pls_:
						;
%let spatial_effects	= 
						pls_:
						;
%let dispmodel_features	= 
						pls_:
						;
		
%let sel_ic=AIC;


		proc sql noprint;
			select index_n into :rows_test separated by ',' from test001;
		quit;

		
		proc sql noprint;
		    select count(*) into :total_rows
		    from test001;
		quit;
		
		/* Step 2: Dividere le righe in due macro variabili */
		%let half_rows = %sysevalf(&amp;amp;total_rows./2, ceil); /* Calcola la metà arrotondata per eccesso */
		
		
		proc sql noprint;
		    /* Prima metà */
		    select index into :columns_test1 separated by ' ' 
		    from test001(obs=&amp;amp;half_rows);
		
		    /* Seconda metà */
		    select index into :columns_test2 separated by ' ' 
		    from test001(firstobs=%eval(&amp;amp;half_rows.+1));
		quit;
		
		
		data w_train;
			set w;
		
			if index_n not in (&amp;amp;rows_test);
			drop index_n
		
			/* Usare per prendere tutti gli id , dividiamo per ovviare al numero di caratteri nella macro*/
			&amp;amp;columns_test1. &amp;amp;columns_test2.;
		run;


	
		proc countreg data=train001 wmat=w_train nonormalize method=qn
				outest=regout;
			%if &amp;amp;sysver ne V.04.00 %then
				%do;
					performance nthreads=80;
				%end;
			model tgt_n_interferenze=&amp;amp;model_features. / dist= poisson 
				SELECTVAR=INFO(direction=BACKWARD criter=&amp;amp;sel_ic.);

			/* 			dispmodel tgt_n_interferenze ~  &amp;amp;dispmodel_features. / SELECTVAR=INFO( direction = BACKWARD criter = &amp;amp;sel_ic.);		 */
/* 			zeromodel tgt_n_interferenze ~  &amp;amp;zeromodel_features. /  */
/* 				SELECTVAR=INFO(direction=BACKWARD criter=&amp;amp;sel_ic.); */
			spatialeffects &amp;amp;spatial_effects. / SELECTVAR=INFO(direction=BACKWARD 
				criter=&amp;amp;sel_ic.);
			spatialid index;
			store poisson_001;
			output out=outmodel_001 xbeta=xbeta pred=pred variance=variance 
				probzero=probzero probcount(0 to 7) zgamma=zgamma

				/* 				gdelta=gdelta mode=intmu mu=mu nu=nu lambda=lambda */;
		run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;When I start the same code with a train table of 15k rows the countreg works properly, but with a table with 25k doesn't start.&lt;BR /&gt;This is the log:&lt;/P&gt;
&lt;PRE&gt;1 /* region: Generated preamble */&lt;BR /&gt;2 /* Make sure the current directory is writable */&lt;BR /&gt;3 data _null_;&lt;BR /&gt;4 length rc 4;&lt;BR /&gt;5 %let tworkloc="%sysfunc(getoption(work))";&lt;BR /&gt;6 rc=dlgcdir(&amp;amp;tworkloc);&lt;BR /&gt;7 run;&lt;BR /&gt;NOTE: The current working directory is now &lt;BR /&gt;"/data/saswork/SAS_workADC400000190_sas-compute-server-e6efb690-130a-4d50-bf8e-930bee2ff814-mst2l".&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.00 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 475.34k&lt;BR /&gt;OS Memory 58012.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:33 AM&lt;BR /&gt;Step Count 132 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 12&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 0&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 0&lt;BR /&gt;&lt;BR /&gt;8 &lt;BR /&gt;9 /* Setup options */&lt;BR /&gt;10 title;&lt;BR /&gt;11 footnote;&lt;BR /&gt;12 options validvarname=any;&lt;BR /&gt;13 options validmemname=extend;&lt;BR /&gt;14 options dtreset date number;&lt;BR /&gt;15 options device=png;&lt;BR /&gt;16 &lt;BR /&gt;17 /* Setup macro variables */&lt;BR /&gt;18 %let syscc=0;&lt;BR /&gt;19 %let _clientapp = %nrquote(%nrstr(SAS Studio));&lt;BR /&gt;20 %let _clientappabbrev = %nrquote(%nrstr(Studio));&lt;BR /&gt;21 %let _clientappversion=2024.03;&lt;BR /&gt;22 %let _clientversion=;&lt;BR /&gt;23 %let _sasservername=&amp;amp;SYSHOSTNAME;&lt;BR /&gt;24 %let _sashostname=&amp;amp;SYSHOSTNAME;&lt;BR /&gt;25 %let _sasprogramfilehost=&amp;amp;SYSHOSTNAME;&lt;BR /&gt;26 %let _clientuserid = %nrquote(%nrstr(snm0mxf));&lt;BR /&gt;27 %let _clientusername = %nrquote(%nrstr(Monica Fontana));&lt;BR /&gt;28 %let clientmachine = %nrquote(%nrstr());&lt;BR /&gt;29 %let _clientmachine = %nrquote(%nrstr());&lt;BR /&gt;30 %let _clientmode = %nrquote(%nrstr(viya));&lt;BR /&gt;31 %let sasworklocation="%sysfunc(getoption(work))/";&lt;BR /&gt;32 filename _cwd &amp;amp;sasworklocation;&lt;BR /&gt;33 data _null_;&lt;BR /&gt;34 call symput('_sasworkingdir',pathname('_cwd'));&lt;BR /&gt;35 run;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.00 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 476.28k&lt;BR /&gt;OS Memory 58012.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:33 AM&lt;BR /&gt;Step Count 133 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 11&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 0&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 0&lt;BR /&gt;&lt;BR /&gt;36 filename _cwd;&lt;BR /&gt;NOTE: Fileref _CWD has been deassigned.&lt;BR /&gt;37 %let _sasprogramfile = %nrquote(%nrstr());&lt;BR /&gt;38 %let _baseurl = %nrquote(%nrstr(https://snamprodmp.ondemand.sas.com/SASStudio/));&lt;BR /&gt;39 %let _execenv = %nrquote(%nrstr(SASStudio));&lt;BR /&gt;40 %symdel _dataout_mime_type _dataout_name _dataout_url _dataout_table / nowarn;&lt;BR /&gt;41 %let _sasws_ = %bquote(%sysfunc(getoption(work)));&lt;BR /&gt;42 %let _saswstemp_ = %bquote(%sysfunc(getoption(work)));&lt;BR /&gt;43 &lt;BR /&gt;44 /* Detect SAS/Graph and setup graph options */&lt;BR /&gt;45 data _null_;&lt;BR /&gt;46 length rc $255;&lt;BR /&gt;47 call symput("graphinit","");&lt;BR /&gt;48 call symput("graphterm","");&lt;BR /&gt;49 rc=tslvl('sasxgopt','n');&lt;BR /&gt;50 _error_=0;&lt;BR /&gt;51 if (rc^=' ') then do;&lt;BR /&gt;52 call symput("graphinit","goptions reset=all gsfname=_gsfname;");&lt;BR /&gt;53 call symput("graphterm","goptions noaccessible;");&lt;BR /&gt;54 end;&lt;BR /&gt;55 run;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.00 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 477.34k&lt;BR /&gt;OS Memory 58012.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:33 AM&lt;BR /&gt;Step Count 134 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 11&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 0&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 0&lt;BR /&gt;&lt;BR /&gt;56 data _null_;&lt;BR /&gt;57 length rc 4;&lt;BR /&gt;58 rc=sysprod("PRODNUM002");&lt;BR /&gt;59 if (rc^=1) then do;&lt;BR /&gt;60 call symput("graphinit","");&lt;BR /&gt;61 call symput("graphterm","");&lt;BR /&gt;62 end;&lt;BR /&gt;63 run;&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.00 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 490.59k&lt;BR /&gt;OS Memory 58012.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:33 AM&lt;BR /&gt;Step Count 135 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 11&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 0&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 0&lt;BR /&gt;&lt;BR /&gt;64 &lt;BR /&gt;65 /* Setup ODS destinations */&lt;BR /&gt;66 ods _all_ close;&lt;BR /&gt;67 %studio_results_directory;&lt;BR /&gt;MLOGIC(STUDIO_RESULTS_DIRECTORY): Beginning execution.&lt;BR /&gt;MLOGIC(STUDIO_RESULTS_DIRECTORY): %GLOBAL _RESULTS_PREFIX_&lt;BR /&gt;MLOGIC(STUDIO_RESULTS_DIRECTORY): %LET (variable name is _RESULTS_PREFIX_)&lt;BR /&gt;MLOGIC(STUDIO_RESULTS_DIRECTORY): Ending execution.&lt;BR /&gt;68 filename _htmlout "&amp;amp;_results_prefix_..html";&lt;BR /&gt;69 filename _listout "&amp;amp;_results_prefix_..lst";&lt;BR /&gt;70 filename _gsfname temp;&lt;BR /&gt;71 filename _dataout "&amp;amp;_results_prefix_..dat";&lt;BR /&gt;72 ods autonavigate off;&lt;BR /&gt;73 ods graphics on;&lt;BR /&gt;74 ods html5 (id=web) METATEXT='http-equiv="Content-Security-Policy" content="default-src ''none''; style-src ''unsafe-inline'';&lt;BR /&gt;74 ! img-src data: ;"' device=png gpath="&amp;amp;_saswstemp_" path="&amp;amp;_saswstemp_" encoding=utf8 file=_htmlout (title='Results:SAS&lt;BR /&gt;74 ! Program.sas') style=Illuminate options(bitmap_mode='inline' outline='on' svg_mode='inline'&lt;BR /&gt;74 ! css_prefix=".ods_&amp;amp;SYS_COMPUTE_JOB_ID" body_id="div_&amp;amp;SYS_COMPUTE_JOB_ID" );&lt;BR /&gt;NOTE: Writing HTML5(WEB) Body file: _HTMLOUT&lt;BR /&gt;75 ods listing file=_listout;&lt;BR /&gt;76 &amp;amp;graphinit;&lt;BR /&gt;77 %studio_initialize_custom_output;&lt;BR /&gt;MLOGIC(STUDIO_INITIALIZE_CUSTOM_OUTPUT): Beginning execution.&lt;BR /&gt;MLOGIC(STUDIO_INITIALIZE_CUSTOM_OUTPUT): %GLOBAL _DATAOUT_NAME _DATAOUT_MIME_TYPE&lt;BR /&gt;MLOGIC(STUDIO_INITIALIZE_CUSTOM_OUTPUT): %LET (variable name is _DATAOUT_NAME)&lt;BR /&gt;MLOGIC(STUDIO_INITIALIZE_CUSTOM_OUTPUT): %LET (variable name is _DATAOUT_MIME_TYPE)&lt;BR /&gt;MLOGIC(STUDIO_INITIALIZE_CUSTOM_OUTPUT): Ending execution.&lt;BR /&gt;78 /* endregion */&lt;BR /&gt;79 &lt;BR /&gt;80 %let model_features =&lt;BR /&gt;81 pls_:&lt;BR /&gt;82 ;&lt;BR /&gt;83 %let zeromodel_features =&lt;BR /&gt;84 pls_:&lt;BR /&gt;85 ;&lt;BR /&gt;86 %let spatial_effects=&lt;BR /&gt;87 pls_:&lt;BR /&gt;88 ;&lt;BR /&gt;89 %let dispmodel_features=&lt;BR /&gt;90 pls_:&lt;BR /&gt;91 ;&lt;BR /&gt;92 &lt;BR /&gt;93 %let sel_ic=AIC;&lt;BR /&gt;94 &lt;BR /&gt;95 &lt;BR /&gt;96 &lt;BR /&gt;96 ! proc sql noprint;&lt;BR /&gt;97 select index_n into :rows_test separated by ',' from test001;&lt;BR /&gt;98 quit;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.04 seconds&lt;BR /&gt;user cpu time 0.04 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 5833.18k&lt;BR /&gt;OS Memory 63652.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:33 AM&lt;BR /&gt;Step Count 136 Switch Count 1&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 82&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 18&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 0&lt;BR /&gt;&lt;BR /&gt;99 &lt;BR /&gt;100 &lt;BR /&gt;101 &lt;BR /&gt;101 ! proc sql noprint;&lt;BR /&gt;102 select count(*) into :total_rows&lt;BR /&gt;103 from test001;&lt;BR /&gt;104 quit;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.01 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 5828.71k&lt;BR /&gt;OS Memory 63652.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:33 AM&lt;BR /&gt;Step Count 137 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 18&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 1&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 0&lt;BR /&gt;&lt;BR /&gt;105 &lt;BR /&gt;106 /* Step 2: Dividere le righe in due macro variabili */&lt;BR /&gt;107 %let half_rows = %sysevalf(&amp;amp;total_rows./2, ceil); /* Calcola la metà arrotondata per eccesso */&lt;BR /&gt;108 &lt;BR /&gt;109 &lt;BR /&gt;110 &lt;BR /&gt;110 ! proc sql noprint;&lt;BR /&gt;111 /* Prima metà */&lt;BR /&gt;112 select index into :columns_test1 separated by ' '&lt;BR /&gt;113 from test001(obs=&amp;amp;half_rows);&lt;BR /&gt;114 &lt;BR /&gt;115 /* Seconda metà */&lt;BR /&gt;116 select index into :columns_test2 separated by ' '&lt;BR /&gt;117 from test001(firstobs=%eval(&amp;amp;half_rows.+1));&lt;BR /&gt;118 quit;&lt;BR /&gt;NOTE: PROCEDURE SQL used (Total process time):&lt;BR /&gt;real time 0.03 seconds&lt;BR /&gt;user cpu time 0.03 seconds&lt;BR /&gt;system cpu time 0.01 seconds&lt;BR /&gt;memory 5891.09k&lt;BR /&gt;OS Memory 63652.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:34 AM&lt;BR /&gt;Step Count 138 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 46&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 2&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 8&lt;BR /&gt;&lt;BR /&gt;119 &lt;BR /&gt;120 &lt;BR /&gt;121 &lt;BR /&gt;121 ! data w_train;&lt;BR /&gt;122 set w;&lt;BR /&gt;123 &lt;BR /&gt;124 if index_n not in (&amp;amp;rows_test);&lt;BR /&gt;125 drop index_n&lt;BR /&gt;126 &lt;BR /&gt;127 /* Usare per prendere tutti gli id , dividiamo per ovviare al numero di caratteri nella macro*/&lt;BR /&gt;128 &amp;amp;columns_test1. &amp;amp;columns_test2.;&lt;BR /&gt;129 run;&lt;BR /&gt;NOTE: There were 37368 observations read from the data set WORK.W.&lt;BR /&gt;NOTE: The data set WORK.W_TRAIN has 26158 observations and 26159 variables.&lt;BR /&gt;NOTE: Compressing data set WORK.W_TRAIN decreased size by 99.71 percent. &lt;BR /&gt;Compressed is 77 pages; un-compressed would require 26173 pages.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 15.75 seconds&lt;BR /&gt;user cpu time 15.74 seconds&lt;BR /&gt;system cpu time 0.04 seconds&lt;BR /&gt;memory 60591.00k&lt;BR /&gt;OS Memory 118796.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:49 AM&lt;BR /&gt;Step Count 139 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 17285&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 145&lt;BR /&gt;Involuntary Context Switches 59&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 33904&lt;BR /&gt;&lt;BR /&gt;130 &lt;BR /&gt;131 &lt;BR /&gt;132 &lt;BR /&gt;133 &lt;BR /&gt;133 ! proc countreg data=train001 wmat=w_train nonormalize method=qn&lt;BR /&gt;134 outest=regout;&lt;BR /&gt;135 %if &amp;amp;sysver ne V.04.00 %then&lt;BR /&gt;136 %do;&lt;BR /&gt;137 performance nthreads=80;&lt;BR /&gt;138 %end;&lt;BR /&gt;139 model tgt_n_interferenze=&amp;amp;model_features. / dist= poisson&lt;BR /&gt;140 SELECTVAR=INFO(direction=BACKWARD criter=&amp;amp;sel_ic.);&lt;BR /&gt;141 &lt;BR /&gt;142 /* dispmodel tgt_n_interferenze ~ &amp;amp;dispmodel_features. / SELECTVAR=INFO( direction = BACKWARD criter = &amp;amp;sel_ic.); */&lt;BR /&gt;143 /* zeromodel tgt_n_interferenze ~ &amp;amp;zeromodel_features. / */&lt;BR /&gt;144 /* SELECTVAR=INFO(direction=BACKWARD criter=&amp;amp;sel_ic.); */&lt;BR /&gt;145 spatialeffects &amp;amp;spatial_effects. / SELECTVAR=INFO(direction=BACKWARD&lt;BR /&gt;146 criter=&amp;amp;sel_ic.);&lt;BR /&gt;147 spatialid index;&lt;BR /&gt;148 store poisson_001;&lt;BR /&gt;149 output out=outmodel_001 xbeta=xbeta pred=pred variance=variance&lt;BR /&gt;150 probzero=probzero probcount(0 to 7) zgamma=zgamma&lt;BR /&gt;151 &lt;BR /&gt;152 /* gdelta=gdelta mode=intmu mu=mu nu=nu lambda=lambda */;&lt;BR /&gt;153 run;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.REGOUT may be incomplete. When this step was stopped there were 0 observations and 14 variables.&lt;BR /&gt;WARNING: Data set WORK.REGOUT was not replaced because this step was stopped.&lt;BR /&gt;WARNING: The data set WORK.OUTMODEL_001 may be incomplete. When this step was stopped there were 0 observations and 108 variables.&lt;BR /&gt;WARNING: Data set WORK.OUTMODEL_001 was not replaced because this step was stopped.&lt;BR /&gt;NOTE: PROCEDURE COUNTREG used (Total process time):&lt;BR /&gt;real time 0.06 seconds&lt;BR /&gt;user cpu time 0.05 seconds&lt;BR /&gt;system cpu time 0.02 seconds&lt;BR /&gt;memory 14791.25k&lt;BR /&gt;OS Memory 70968.00k&lt;BR /&gt;Timestamp 01/21/2025 11:54:49 AM&lt;BR /&gt;Step Count 140 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 2587&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 0&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 408&lt;BR /&gt;&lt;BR /&gt;154 &lt;BR /&gt;155 /* region: Generated postamble */&lt;BR /&gt;156 /* Close ODS destinations */&lt;BR /&gt;157 &amp;amp;graphterm; ;*';*";*/;run;quit;&lt;BR /&gt;158 quit;run;&lt;BR /&gt;159 ods html5 (id=web) close;&lt;BR /&gt;160 ods listing close;&lt;BR /&gt;161 %if %sysfunc(fileref(_gsfname)) lt 0 %then %do;&lt;BR /&gt;162 filename _gsfname clear;&lt;BR /&gt;NOTE: Fileref _GSFNAME has been deassigned.&lt;BR /&gt;163 %end;&lt;BR /&gt;164 %studio_capture_custom_output;&lt;BR /&gt;MLOGIC(STUDIO_CAPTURE_CUSTOM_OUTPUT): Beginning execution.&lt;BR /&gt;MLOGIC(STUDIO_CAPTURE_CUSTOM_OUTPUT): %IF condition "&amp;amp;_dataout_name" ne "" and "&amp;amp;_dataout_mime_type" ne "" is FALSE&lt;BR /&gt;MLOGIC(STUDIO_CAPTURE_CUSTOM_OUTPUT): Ending execution.&lt;BR /&gt;165 /* endregion */&lt;BR /&gt;166&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;I would like to upload the tables but they are like 50mb. If you need any other information I will reply you.&lt;BR /&gt;&lt;BR /&gt;Thank you in advance&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2025 12:09:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Proc-countreg-with-wmat-starts-with-warnings/m-p/956737#M4924</guid>
      <dc:creator>harmonic</dc:creator>
      <dc:date>2025-01-21T12:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Proc countreg with wmat starts with warnings</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Proc-countreg-with-wmat-starts-with-warnings/m-p/960124#M4946</link>
      <description>&lt;P&gt;In order to further look into this and determine the cause, it may be necessary to have your data set to test the code. If you cannot upload the .sas7bdat file sufficient to produce the error here, perhaps you can open a case with Technical Support to get further help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/en/technical-support.html" target="_blank"&gt;https://support.sas.com/en/technical-support.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 23:53:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Proc-countreg-with-wmat-starts-with-warnings/m-p/960124#M4946</guid>
      <dc:creator>SASCom1</dc:creator>
      <dc:date>2025-02-24T23:53:06Z</dc:date>
    </item>
  </channel>
</rss>

