<?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: No output and no error in the code in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574670#M3590</link>
    <description>&lt;P&gt;All the warnings of uninitializedvariables make me suspect this is the issue:&lt;/P&gt;
&lt;PRE&gt;75 PROC IMPORT DATAFILE="/home/nassimsa0/ER.xlsx"
76 OUT=WORK.ER
77 DBMS=XLSX
78 REPLACE;
79 RUN;
&lt;/PRE&gt;
&lt;P&gt;Check that the 1) column headings were the same this XLSX file&lt;/P&gt;
&lt;P&gt;2) the values look similar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many people creating spreadsheets aren't consistent about keeping column names the same, which means that your imported data could well have different variable names. Similar with the values, you can get different variable types for the same named column which often causes problems with code expecting the previous data type.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jul 2019 16:35:00 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-07-18T16:35:00Z</dc:date>
    <item>
      <title>No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574510#M3585</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new student using SAS, i used the same code few months ag o and always received the results and since few days no output is generated even when i use the example from SAS and no errors are showed, all code used never generates output. I really need to have the results as soon as possible to send it to my professor , please help me if you have any idea on how to solve it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Begining of the code :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/** Import an XLSX file.&amp;nbsp; **/&lt;BR /&gt;&lt;BR /&gt;PROC IMPORT DATAFILE="/home/nassimsa0/sasuser.v94/ENA.xlsx"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; OUT=WORK.ENA&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; DBMS=XLSX&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; REPLACE;&lt;BR /&gt;RUN;&lt;BR /&gt;&lt;BR /&gt;/** Print the results. **/&lt;BR /&gt;&lt;BR /&gt;PROC PRINT DATA=WORK.ENA; RUN;&lt;BR /&gt;data WORK.ENA;&lt;BR /&gt;set WORK.ENA;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; array values {6} c g f h e s;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; array costshares {6} sc sg sf sh se ss;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; cost = sum(c,g,f,h,e,s);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; do i = 1 to 6;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; costshares{i} = values{i}/cost;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; end;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;data WORK.ENA;&lt;BR /&gt;set WORK.ENA;&lt;BR /&gt;&amp;nbsp;run;&lt;BR /&gt;proc sgplot data = WORK.ENA;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; series x = year y = sc / markers markerattrs =(symbol=circle);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; series x = year y = sg / markers markerattrs =(symbol=square);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; series x = year y = sf / markers markerattrs =(symbol=star);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; series x = year y = sh / markers markerattrs =(symbol=diamond);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; series x = year y = se / markers markerattrs =(symbol=hash);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; series x = year y = ss / markers markerattrs =(symbol=dot);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; title 'Factor Cost Shares';&lt;BR /&gt;&amp;nbsp;&amp;nbsp; yaxis label = 'Cost Share';&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 10:32:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574510#M3585</guid>
      <dc:creator>nassimsa</dc:creator>
      <dc:date>2019-07-18T10:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574511#M3586</link>
      <description>&lt;P&gt;Can you post the log please?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 10:33:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574511#M3586</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-07-18T10:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574515#M3587</link>
      <description>&lt;P&gt;Thank you very much for your quick reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find below the LOG , its very long;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 /** Import an XLSX file. **/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 PROC IMPORT DATAFILE="/home/nassimsa0/ER.xlsx"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 OUT=WORK.ER&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 DBMS=XLSX&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 REPLACE;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The import data set has 16 observations and 14 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: WORK.ER data set was successfully created.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE IMPORT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 2774.28k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 39336.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:26 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 66 Switch Count 2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 660&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 15&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 24&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 264&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81 /** Print the results. **/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 PROC PRINT DATA=WORK.ER; RUN;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 16 observations read from the data set WORK.ER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.07 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.08 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 2658.46k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 37544.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:26 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 67 Switch Count 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 89&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 24&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 data WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85 set WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 array values {6} c g f h e s;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87 array costshares {6} sc sg sf sh se ss;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88 cost = sum(c,g,f,h,e,s);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89 do i = 1 to 6;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90 costshares{i} = values{i}/cost;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91 end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 16 observations read from the data set WORK.ER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.ER has 16 observations and 22 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 995.12k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 38060.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:26 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 68 Switch Count 2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 148&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 14&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 264&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;93&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;94 data WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95 set WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96 label a_c = "SC Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 a_g = "SG Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;98 a_f = "SF Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;99 a_h = "SH Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;100 a_e = "SE Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;101 a_s = "SS Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;102 gcc = "SC C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;103 gcg = "SC G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;104 gcf = "SC F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;105 gch = "SC H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;106 gce = "SC E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;107 gcs = "SC S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;108 gcy = "SC Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;109 ggc = "SG C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;110 ggg = "SG G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;111 ggf = "SG F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;112 ggh = "SG H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;113 gge = "SG E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;114 ggs = "SG S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;115 ggy = "SG Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;116 gfc = "SF C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;117 gfg = "SF G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;118 gff = "SF F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;119 gfh = "SF H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;120 gfe = "SF E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;121 gfs = "SF S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;122 gfy = "SF Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;123 ghc = "SH C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;124 ghg = "SH G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;125 ghf = "SH F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;126 ghh = "SH H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;127 ghe = "SH E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;128 ghs = "SH S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;129 ghy = "SH Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;130 gec = "SE C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;131 geg = "SE G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;132 gef = "SE F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;133 geh = "SE H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;134 gee = "SE E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;135 ges = "SE S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;136 gey = "SE Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;137 gsc = "SS C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;138 gsg = "SS G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;139 gsf = "SS F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;140 gsh = "SS H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;141 gse = "SS E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;142 gss = "SS S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;143 gsy = "SS Output";&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;144 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable a_c is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable a_g is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable a_f is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable a_h is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable a_e is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable a_s is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gcc is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gcg is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gcf is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gch is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gce is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gcs is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gcy is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ggc is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ggg is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ggf is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ggh is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gge is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ggs is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ggy is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gfc is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gfg is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gff is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gfh is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gfe is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gfs is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gfy is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ghc is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ghg is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ghf is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ghh is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ghe is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ghs is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ghy is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gec is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable geg is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gef is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable geh is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gee is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable ges is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gey is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gsc is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gsg is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gsf is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gsh is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gse is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gss is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable gsy is uninitialized.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 16 observations read from the data set WORK.ER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.ER has 16 observations and 22 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: DATA statement used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 1052.46k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 38060.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:26 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 69 Switch Count 2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 133&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 11&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 264&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;145 proc sgplot data = WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;146 series x = year y = sc / markers markerattrs =(symbol=circle);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;147 series x = year y = sg / markers markerattrs =(symbol=square);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;148 series x = year y = sf / markers markerattrs =(symbol=star);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;149 series x = year y = sh / markers markerattrs =(symbol=diamond);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;150 series x = year y = se / markers markerattrs =(symbol=hash);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;151 series x = year y = ss / markers markerattrs =(symbol=dot);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;152 title 'Factor Cost Shares';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;153 yaxis label = 'Cost Share';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;154 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE SGPLOT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.30 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.13 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.02 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 18532.03k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 53420.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:26 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 70 Switch Count 2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 4724&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 349&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 1232&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 16 observations read from the data set WORK.ER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;155 proc sgplot data = WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;156 series x = year y = c / markers markerattrs =(symbol=circle);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;157 series x = year y = g / markers markerattrs =(symbol=square);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;158 series x = year y = f / markers markerattrs =(symbol=star);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;159 series x = year y = h / markers markerattrs =(symbol=diamond);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;160 series x = year y = e / markers markerattrs =(symbol=hash);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;161 series x = year y = s / markers markerattrs =(symbol=dot);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;162 title 'Factor Quantities';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;163 yaxis label = 'Quantity';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;164 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE SGPLOT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.21 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.07 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 3095.31k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 54956.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:26 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 71 Switch Count 2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 675&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 326&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 992&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 16 observations read from the data set WORK.ER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;165 proc sgplot data = WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;166 series x = year y = pc / markers markerattrs =(symbol=circle);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;167 series x = year y = pg / markers markerattrs =(symbol=square);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;168 series x = year y = pf / markers markerattrs =(symbol=star);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;169 series x = year y = ph / markers markerattrs =(symbol=diamond);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;170 series x = year y = pe / markers markerattrs =(symbol=hash);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;171 series x = year y = ps / markers markerattrs =(symbol=dot);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;172 title 'Factor Prices';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;173 yaxis label = 'Price';&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;174 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE SGPLOT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.21 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.08 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.01 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 3053.93k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 54956.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:27 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 72 Switch Count 2&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 637&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 330&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 976&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: SYMBOL=DOT n'est pas valide. La valeur par défaut sera utilisée.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 16 observations read from the data set WORK.ER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;175 proc model data = WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;176 parameters a_c gcc gcg gcf gch gce gcs gcy&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;177 a_g ggc ggg ggf ggh gge ggs ggy&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;178 a_h ghc ghg ghf ghh ghe ghs ghy&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;179 a_e gec geg gef geh gee ges gey&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;180 a_s gsc gsg gsf gsh gse gss gsy;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;181 endogenous sc sg sh se ss;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;182 exogenous pc pg pf ph pe ps y;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;183&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;184 /*System of Derived Demand Equations*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;185 sc = a_c + gcc*log(pc) + gcg*log(pg) + gcf*log(pf) + gch*log(ph) + gce*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;186 + gcs*log(ps) + gcy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;187 sg = a_g + ggc*log(pc) + ggg*log(pg) + ggf*log(pf) + ggh*log(ph) + gge*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;188 + ggs*log(ps) + ggy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;189 sh = a_h + ghc*log(pc) + ghg*log(pg) + ghf*log(pf) + ghh*log(ph) + ghe*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;190 + ghs*log(ps) + ghy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;191 se = a_e + gec*log(pc) + geg*log(pg) + gef*log(pf) + geh*log(ph) + gee*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;192 + ges*log(ps) + gey*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;193 ss = a_s + gsc*log(pc) + gsg*log(pg) + gsf*log(pf) + gsh*log(ph) + gse*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;194 + gss*log(ps) + gsy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;195&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;196&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;197 fit sc sg sh se ss / itsur;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;198&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;199 label a_c = "SC Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;200 a_g = "SG Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;201 a_f = "SF Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;202 a_h = "SH Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;203 a_e = "SE Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;204 a_s = "SS Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;205 gcc = "SC C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;206 gcg = "SC G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;207 gcf = "SC F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;208 gch = "SC H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;209 gce = "SC E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;210 gcs = "SC S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;211 gcy = "SC Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;212 ggc = "SG C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;213 ggg = "SG G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;214 ggf = "SG F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;215 ggh = "SG H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;216 gge = "SG E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;217 ggs = "SG S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;218 ggy = "SG Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;219 gfc = "SF C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;220 gfg = "SF G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;221 gff = "SF F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;222 gfh = "SF H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;223 gfe = "SF E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;224 gfs = "SF S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;225 gfy = "SF Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;226 ghc = "SH C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;227 ghg = "SH G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;228 ghf = "SH F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;229 ghh = "SH H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;230 ghe = "SH E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;231 ghs = "SH S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;232 ghy = "SH Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;233 gec = "SE C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;234 geg = "SE G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;235 gef = "SE F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;236 geh = "SE H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;237 gee = "SE E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;238 ges = "SE S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;239 gey = "SE Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;240 gsc = "SS C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;241 gsg = "SS G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;242 gsf = "SS F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;243 gsh = "SS H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;244 gse = "SS E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;245 gss = "SS S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;246 gsy = "SS Output";&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;247&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;248&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;249 test "Homogeneity"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;250 gcc+gcg+gcf+gch+gce+gcs=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;251 ggc+ggg+ggf+ggh+gge+ggs=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;252 ghc+ghg+ghf+ghh+ghe+ghs=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;253 gec+geg+gef+geh+gee+ges=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;254 gsc+gsg+gsf+gsh+gse+gss=0, / lr;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;255&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;256 test "Symmetry"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;257 gcg=ggc,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;258 gch=ghc,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;259 gce=gec,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;260 gcs=ges,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;261 ggh=ghg,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;262 gge=geg,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;263 ggs=gsg,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;264 ghe=geh,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;265 ghs=gsh,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;266 ges=gse, / lr;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;267&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;268 test "Joint Homogeneity and Symmetry"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;269 gcc+gcg+gcf+gch+gce+gcs=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;270 ggc+ggg+ggf+ggh+gge+ggs=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;271 ghc+ghg+ghf+ghh+ghe+ghs=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;272 gec+geg+gef+geh+gee+ges=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;273 gsc+gsg+gsf+gsh+gse+gss=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;274 gcg=ggc,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;275 gch=ghc,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;276 gce=gec,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;277 gcs=ges,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;278 ggh=ghg,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;279 gge=geg,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;280 ggs=gsg,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;281 ghe=geh,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;282 ghs=gsh,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;283 ges=gse, / lr;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;284 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable a_f is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfc is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfg is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gff is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfh is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfe is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfs is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfy is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: A l'itération ITSUR 2 CONVERGE=0.001 Criteria Met.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE MODEL used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 4.54 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 2.73 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.29 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 38898.78k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 89336.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:31 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 73 Switch Count 140&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 125004&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 6419&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 13&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 13440&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;285 proc model data = WORK.ER;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;286 parameters a_c gcc gcg gcf gch gce gcs gcy&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;287 a_g ggc ggg ggf ggh gge ggs ggy&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;288 a_h ghc ghg ghf ghh ghe ghs ghy&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;289 a_e gec geg gef geh gee ges gey&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;290 a_s gsc gsg gsf gsh gse gss gsy;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;291 endogenous sc sg se ss;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;292 exogenous pc pg pf ph pe ps y;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;293 restrict /*Homogeneity Restrictions*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;294 gcf=0-gcc-gcg-gch-gce-gcs,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;295 ggf=0-gcg-ggg-ggh-gge-ggs,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;296 ghf=0-gch-ghg-ghh-ghe-ghs,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;297 gef=0-gce-geg-geh-gee-ges,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;298 gsf=0-gcs-gsg-gsh-gse-gss,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;299 /*Symmetry Restrictions*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;300 gcg=ggc, gch=ghc, gce=gec, gcs=ges, ggh=ghg, gge=geg, ggs=gsg, ghe=geh, ghs=gsh, ges=gse;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;301&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;302&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;303 /*System of Derived Demand Equations*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;304 sc = a_c + gcc*log(pc) + gcg*log(pg) + gcf*log(pf) + gch*log(ph) + gce*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;305 + gcs*log(ps) + gcy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;306 sg = a_g + ggc*log(pc) + ggg*log(pg) + ggf*log(pf) + ggh*log(ph) + gge*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;307 + ggs*log(ps) + ggy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;308 sh = a_h + ghc*log(pc) + ghg*log(pg) + ghf*log(pf) + ghh*log(ph) + ghe*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;309 + ghs*log(ps) + ghy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;310 se = a_e + gec*log(pc) + geg*log(pg) + gef*log(pf) + geh*log(ph) + gee*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;311 + ges*log(ps) + gey*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;312 ss = a_s + gsc*log(pc) + gsg*log(pg) + gsf*log(pf) + gsh*log(ph) + gse*log(pe)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;313 + gss*log(ps) + gsy*log(y);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;314&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;315&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;316 fit sc sg sh se ss / itsur chow = (35) outest=est;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;317&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;318 label a_c = "SC Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;319 a_g = "SG Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;320 a_f = "SF Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;321 a_h = "SH Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;322 a_e = "SE Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;323 a_s = "SS Intercept"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;324 gcc = "SC C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;325 gcg = "SC G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;326 gcf = "SC F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;327 gch = "SC H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;328 gce = "SC E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;329 gcs = "SC S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;330 gcy = "SC Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;331 ggc = "SG C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;332 ggg = "SG G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;333 ggf = "SG F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;334 ggh = "SG H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;335 gge = "SG E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;336 ggs = "SG S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;337 ggy = "SG Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;338 gfc = "SF C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;339 gfg = "SF G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;340 gff = "SF F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;341 gfh = "SF H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;342 gfe = "SF E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;343 gfs = "SF S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;344 gfy = "SF Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;345 ghc = "SH C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;346 ghg = "SH G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;347 ghf = "SH F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;348 ghh = "SH H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;349 ghe = "SH E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;350 ghs = "SH S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;351 ghy = "SH Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;352 gec = "SE C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;353 geg = "SE G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;354 gef = "SE F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;355 geh = "SE H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;356 gee = "SE E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;357 ges = "SE S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;358 gey = "SE Output"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;359 gsc = "SS C Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;360 gsg = "SS G Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;361 gsf = "SS F Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;362 gsh = "SS H Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;363 gse = "SS E Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;364 gss = "SS S Price"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;365 gsy = "SS Output";&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;366&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;367 test "Constant Returns to Scale"&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;368 gcy=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;369 ggy=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;370 ghy=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;371 gey=0,&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;372 gsy=0,/ lr;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;373 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable a_f is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfc is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfg is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gff is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfh is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfe is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfs is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasWarning"&gt;WARNING: The variable gfy is not defined in the program.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: A l'itération ITSUR 85 CONVERGE=0.001 Criteria Met.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the RTF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.EST has 1 observations and 44 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE MODEL used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 4.39 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 2.75 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.29 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 36998.76k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 112108.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:36 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 74 Switch Count 147&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 124439&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 6411&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 4&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 14216&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;374 proc means data = WORK.ER noprint mean;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;375 variables sc sg sf sh se ss;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;376 output out = meanshares mean = sc sg sf sh se ss;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;377 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: There were 16 observations read from the data set WORK.ER.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The data set WORK.MEANSHARES has 1 observations and 8 variables.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE MEANS used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;user cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;system cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;memory 6382.31k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;OS Memory 106656.00k&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Timestamp 18/07/2019 10:49:36 AM&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Step Count 75 Switch Count 3&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Faults 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Reclaims 1409&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Page Swaps 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Voluntary Context Switches 30&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Involuntary Context Switches 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Input Operations 0&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;Block Output Operations 264&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;378&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;379 proc iml;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: IML Ready&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;380 /*Read in parameter estimates*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;381 use est;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;382 read all var {gcc gcg gcf gch gce gcs ggc ggg ggf ggh gge ggs ghc ghg ghf ghh ghe ghs gec geg gef geh gee ges gsc&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;382 ! gsg gsf gsh gse gss};&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;383 read all var _NUM_ into gij;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;384 close est;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;385&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;386 /*Calculate S parameter based on homogeneity constraint*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;387 gff=0-gcf-ggf-ghf-gef-gsf;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;388&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;389&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;390&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;391 /*Read in mean cost shares and construct vector*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;392 use meanshares;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;393 read all var {sc sg sf sh se ss};&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;394 show names;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;395 close meanshares;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;396&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;397 w = sc//sg//sf//sh//se//ss;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;398&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;399 print w;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;400&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;401 /*Construct matrix of parameter estimates*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;402 gij = (gcc||ggc||gcf||gch||gce||gsc)//&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;403 (ggc||ggg||ggf||ggh||gge||ggs)//&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;404 (gcf||ggf||gff||ghf||gef||gsf)//&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;405 (gch||ggh||ghf||ghh||ghe||ghs)//&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;406 (gce||gge||gef||ghe||gee||ges)//&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;407 (gsc||ggs||gsf||ghs||ges||gss) ;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;408&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;409 print gij;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;410&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;411&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;412 nk=ncol(gij);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;413 mi = -1#I(nk);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;413 ! /*Initialize negative identity matrix*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;414 eos = j(nk,nk,0);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;414 ! /*Initialize Marshallian EOS Matrix*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;415 mos = j(nk,nk,0);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;415 ! /*Initialize Morishima EOS Matrix*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;416 ep = j(nk,nk,0);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;416 ! /*Initialize Price EOD Matrix*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;417&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;418 /*Calculate Marshallian EOS and Price EOD Matrices*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;419 i=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;420 do i=1 to nk;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;421 j=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;422 do j=1 to nk;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;423 eos[i,j] = (gij[i,j]+w[i]#w[j]+mi[i,j]#w[i])/(w[i]#w[j]);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;424 ep[i,j] = w[j]#eos[i,j];&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;425 end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;426 end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;427&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;428 /*Calculate Morishima EOS Matrix*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;429 i=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;430 do i=1 to nk;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;431 j=1;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;432 do j=1 to nk;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;433 mos[i,j] = ep[i,j]-ep[j,j];&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;434 end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;435 end;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;436 /*Print Elasticity Matrices*/&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;437 factors = {"Coal" "Gas" "Fuel" "Hydraulic" "Wind" "Solar"};&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;438 print&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;439 ep[label="Price Elasticities of Demand" rowname=factors colname=factors&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;440 format=d7.3],&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;441 eos[label="Hicks-Allen Elasticities of Substitution" rowname=factors colname=factors&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;442 format=d7.3],&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;443 mos[label="Morishima Elasticities of Substitution" rowname=factors colname=factors&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;444 format=d7.3];&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;445&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;446 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Module MAIN is undefined in IML; cannot be RUN.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;447&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;448&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;449&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;450 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;463&lt;/DIV&gt;</description>
      <pubDate>Thu, 18 Jul 2019 11:00:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574515#M3587</guid>
      <dc:creator>nassimsa</dc:creator>
      <dc:date>2019-07-18T11:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574516#M3588</link>
      <description>&lt;P&gt;This log is from running more code than you initially posted. So I have not read it thoroughly.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, you have a PROC IML step at the bottom. PROC IML must be terminated by a QUIT; statement and not RUN;.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 11:21:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574516#M3588</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-07-18T11:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574520#M3589</link>
      <description>&lt;P&gt;There are many notes about uninitialized variables. Please verify that those variable are intentionally not initialized.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 11:36:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574520#M3589</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-07-18T11:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574670#M3590</link>
      <description>&lt;P&gt;All the warnings of uninitializedvariables make me suspect this is the issue:&lt;/P&gt;
&lt;PRE&gt;75 PROC IMPORT DATAFILE="/home/nassimsa0/ER.xlsx"
76 OUT=WORK.ER
77 DBMS=XLSX
78 REPLACE;
79 RUN;
&lt;/PRE&gt;
&lt;P&gt;Check that the 1) column headings were the same this XLSX file&lt;/P&gt;
&lt;P&gt;2) the values look similar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many people creating spreadsheets aren't consistent about keeping column names the same, which means that your imported data could well have different variable names. Similar with the values, you can get different variable types for the same named column which often causes problems with code expecting the previous data type.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 16:35:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574670#M3590</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-07-18T16:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574887#M3591</link>
      <description>&lt;P&gt;Thank you all for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried all your advices but the problem still the same. when i rn the code, the execution keeps running very very long time and nothing happens at the end. I tried with codes already done from sas with no error and still nothing happen.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 09:23:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574887#M3591</guid>
      <dc:creator>nassimsa</dc:creator>
      <dc:date>2019-07-19T09:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: No output and no error in the code</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574897#M3592</link>
      <description>&lt;P&gt;Run step by step and check the results.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2019 10:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/No-output-and-no-error-in-the-code/m-p/574897#M3592</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-07-19T10:02:39Z</dc:date>
    </item>
  </channel>
</rss>

