<?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: Marginal Effects with Proc glimmix in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108771#M5753</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am afraid that is my fault.&amp;nbsp; To include the separate slopes models for communes, I suggested adding the interactions.&amp;nbsp; Since this is all about marginal effects, those interactions should be deleted.&amp;nbsp; Try instead:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;proc glimmix data=candidates;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;nloptions maxiter=100;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; class commune ;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP commune&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=kenwardrogers ; /* Addresses individual commune levels, and adds the Kenward-Rogers adjustment for repeated measures designs.&amp;nbsp; &lt;STRONG&gt;This also applies the averaged effects of the continuous covariates across all communes &lt;/STRONG&gt;*/&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; random intercept / subject= commune solution &lt;STRONG&gt;residual&lt;/STRONG&gt;; /* Converts to a repeated measures design.&amp;nbsp; Even though this is a RANDOM statement, the residual option means treat the values within a commune as correlated.&amp;nbsp; */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;lsmeans commune/ilink ci; /* Outputs the estimates for each level of commune, on both the logit and original scale */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this addresses the column issue, which should in turn address the "can't get started" problem.&amp;nbsp; All thanks should go to &lt;A __default_attr="810813" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; for pointing out the (what should have been) obvious source of the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Jun 2013 17:04:59 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2013-06-20T17:04:59Z</dc:date>
    <item>
      <title>Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108757#M5739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Hi everybody!&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I'm quite new with SAS procedures, so my question might be sounds easy for a lot of you but I couldn't find the answer so far....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Here is my problem, I'm trying to calculate the marginal effects at the means of my independent variables. For this research, it was indeed decided not to use odds ratio but the marginal effects.&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;I'm using the proc glimmix to integrate the multi-level dimension of my data. Here is the code I wrote:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc glimmix data=candidates;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; class commune ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP &lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=satterth ;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&amp;nbsp; random intercept / subject= commune solution;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Based on this, what would be the easiest procedure to calculated the marginal effects?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Many thanks for your insights!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;Jerem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Jun 2013 14:39:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108757#M5739</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-16T14:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108758#M5740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code you have gives the conditional effects.&amp;nbsp; I assume that there are multiple measurements for each level of the variable 'commune'.&amp;nbsp; If so, then the marginal values may be obtained by treating this as a repeated measures design using the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;proc glimmix data=candidates;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; class commune ;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP &lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=satterth ;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; random intercept / subject= commune solution &lt;STRONG&gt;residual&lt;/STRONG&gt;; /* Converts to a repeated measures design */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Do you wish to get marginal estimates for each level of commune?&amp;nbsp; If so, then I would suggest:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;proc glimmix data=candidates;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; class commune ;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP commune commune*EurostatA commune*EurostatC commune*sizelog commune*ENP&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=kenwardrogers ; /* Addresses individual commune levels, and adds the Kenward-Rogers adjustment for repeated measures designs */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; random intercept / subject= commune solution &lt;STRONG&gt;residual&lt;/STRONG&gt;; /* Converts to a repeated measures design */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;lsmeans commune/ilink ci; /* Outputs the estimates for each level of commune, on both the logit and original scale */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I hope this is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 13:10:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108758#M5740</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-17T13:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108759#M5741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much for your quick response! It already helps although I'm not familiar enough with multi-level regression to be sure that I'm on the good tracks.&lt;/P&gt;&lt;P&gt;So, just to be sure, here is my intention:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-I've got 1012 observations (=1012 electoral lists). Those 1012 were present in 262 different 'communes'. In other words, in each municipality(=communes), you have a certain amount of electoral lists: sometimes only a couple, sometimes more. I'm seeking to use a logistic regression explaining whether or not these electoral lists include a certain kind of candidates (If yes=1; no=0). My independent variables are : &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;EurostatA EurostatC sizelog ENP&lt;/SPAN&gt; as written in the model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because lists are embedded in distinct communes. I want to include the multi-level structure of my data. For that purpose, I was told to use a fixed effects model.&lt;/P&gt;&lt;P&gt;Furthermore, to report my results, I'm asked to present the marginal effects of the independent variables on the dependent variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that possible with the solution you proposed?&lt;/P&gt;&lt;P&gt;Many thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeremy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 14:14:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108759#M5741</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-17T14:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108760#M5742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So an individual record would look something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;commune list binouverture eurostata eurostatc sizelog enp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The list variable ranges from one or two to some larger number, commune is indexed so that there are 262 different municipalities.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now comes the question, with several possiblities:&amp;nbsp; Are the municipalities a sample that you wish to use to infer to an entire population where you know how many sampling units exist?&amp;nbsp; Are the municipalities a sample that represent a population that could be considered infinite in some sense (i.e., a population of all POSSIBLE units?&amp;nbsp; Are the municipalities the ONLY ones for which you wish to draw conclusions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of these is where your research question is directed, and each would be addressed by a different kind of analysis in SAS.&amp;nbsp; I await your answer.&amp;nbsp; If the second scenario is the most likely, then the model I presented earlier is appropriate for obtaining marginal estimates.&amp;nbsp; If either of the other scenarios applies, then the analysis should be changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 14:42:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108760#M5742</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-17T14:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108761#M5743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, the observation is the electoral list itself (I did not code individual candidates). So for each of 1012 lists, I coded the information for : &lt;/P&gt;&lt;P&gt;-&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;commune (one of the 262 municipalities), &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;-Eurostat (the municipality is either eurostatA, eurostatB, eurostatC. Reference used is EurostatB)&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;,&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;-sizelog (log of the population of the municipality), &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;-enp (effective number of parties in the municipality).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;-binouverture of the list (Yes/no),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;In other words, for each list from the same municipality, the variables 'commune' (that identifies the municipality), 'EurostatA', EurostatC', 'ENP', '&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;sizelog' is always the same while the dependent variable 'binouverture' varies for each list.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regarding the key questions you asked: t&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;he 262 municipalities is the population. Actually, we coded information for all the 1012 lists presented in all the 262 municipalities at the last local elections. I don't want to infer my results to other case studies but evaluate the impact of independent variables on 'binouverture' for that particular election. To some extent, it's an electoral report, not theory-building. Thus statistical significance is not important because my sample is my population of interest in that paper.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;The goal is thus to assess the marginal effect of each of the independent variables&amp;nbsp; 'E&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;urostata' 'Eurostatc' 'Sizelog' 'Enp'&amp;nbsp; on the dependent variable 'binouverture' but taking into account the fact that lists are presented in 262 municipalities.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it make clearer? Thanks for your help Steve!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeremy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 15:48:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108761#M5743</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-17T15:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108762#M5744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent answers.&amp;nbsp; OK, everything is a fixed effect, and you have multiple measurements on the 262 municipalities.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;proc glimmix data=candidates;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; class commune ;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP commune commune*EurostatA commune*EurostatC commune*sizelog commune*ENP&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=kenwardrogers ; /* Addresses individual commune levels, and adds the Kenward-Rogers adjustment for repeated measures designs */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; random intercept / subject= commune solution &lt;STRONG&gt;residual&lt;/STRONG&gt;; /* Converts to a repeated measures design.&amp;nbsp; Even though this is a RANDOM statement, the residual option means treat the values within a commune as correlated.&amp;nbsp; Note also the inclusion of commune and commune by covariate interactions in the model statement. */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;lsmeans commune/ilink ci; /* Outputs the estimates for each level of commune, on both the logit and original scale */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Be careful about the interpretation of the solution.&amp;nbsp; The values under commune*eurostatA for instance are deviations from the slope estimated by the value under EurostatA, for each commune.&amp;nbsp; The standard reference level is the last level of commune, so these values are the differences in slopes between each commune and the reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;The least squares means here are the expected marginal means, at the mean level of EurostatA, EurostatC, sizelog, and ENP.&amp;nbsp; You may want to estimate marginal means for specific values of these four continuous covariates.&amp;nbsp; For that, see the documentation of the LSMEANS statement and the AT= option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 16:05:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108762#M5744</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-17T16:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108763#M5745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've got my answers regarding the model now, thanks!&lt;/P&gt;&lt;P&gt;I submitted the model but it is still charging. Is &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;proc glimmix&lt;/SPAN&gt; a time-consuming procedure?&lt;/P&gt;&lt;P&gt;By the way, for the line &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;lsmeans commune/ilink ci&lt;/SPAN&gt; SAS proposed to change ci by cl. Is that correct in your opinion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll keep you updated! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeremy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 19:11:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108763#M5745</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-17T19:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108764#M5746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, just got the answer in the meantime:&amp;nbsp; after the Iteration History it is mentioned "Did not converge"...&lt;/P&gt;&lt;P&gt;I've to mention that I used only 691 observations out of the 1012 (for reasons specific to the subject under investigation).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I integrate all observations, then there is the results which 'stop' after the descriptions of the dimensions of the model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" summary="Procedure Glimmix: Number of Observations"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Number of Observations Read&lt;/TH&gt;&lt;TD class="r Data"&gt;1013&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Number of Observations Used&lt;/TH&gt;&lt;TD class="r Data"&gt;1012&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX73"&gt;&lt;/A&gt; &lt;/P&gt;&lt;DIV align="center"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" summary="Procedure Glimmix: Response Profiles"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row"&gt;1&lt;/TH&gt;&lt;TH class="l Data"&gt;0&lt;/TH&gt;&lt;TD class="r Data"&gt;614&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row"&gt;2&lt;/TH&gt;&lt;TH class="l Data"&gt;1&lt;/TH&gt;&lt;TD class="r Data"&gt;398&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX74"&gt;&lt;/A&gt; &lt;/P&gt;&lt;DIV align="center"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" summary="Procedure Glimmix: Dimensions"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;R-side Cov. Parameters&lt;/TH&gt;&lt;TD class="r Data"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Columns in X&lt;/TH&gt;&lt;TD class="r Data"&gt;2104&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Columns in Z per Subject&lt;/TH&gt;&lt;TD class="r Data"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Subjects (Blocks in V)&lt;/TH&gt;&lt;TD class="r Data"&gt;262&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row"&gt;Max Obs per Subject&lt;/TH&gt;&lt;TD class="r Data"&gt;14&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jun 2013 19:57:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108764#M5746</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-17T19:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108765#M5747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome to the fine tuning part of GLIMMIX.&amp;nbsp; It really is not much fun.&amp;nbsp; It involves the use of the NLOPTIONS statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it looks like the objective function is closing in on some value, it may be that all you need to do is add:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;nloptions maxiter=100;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to the code.&amp;nbsp; GLIMMIX has a default of 20 iterations, which is very often not enough for a complex binary model to reach convergence.&amp;nbsp; Try inserting this line, and see if results are obtained.&amp;nbsp; If not, we will need to fine tune the convergence criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 15:08:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108765#M5747</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-18T15:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108766#M5748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, at least I could handle GLIMMIX in the future thanks to your help &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The only thing that I do not understand is that it does not show the results. Here is the only result given by SAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Results of the The GLIMMIX Procedure&lt;/STRONG&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Number of Observations Read&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1013&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Number of Observations Used&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1012&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Response Profile&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Ordered&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Total&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&amp;nbsp;&amp;nbsp;&amp;nbsp; binouverture&amp;nbsp;&amp;nbsp;&amp;nbsp; Frequency&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 614&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 398&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The GLIMMIX procedure is modeling the probability that binouverture='1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dimensions&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; R-side Cov. Parameters&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Columns in X&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1315&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Columns in Z per Subject&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Subjects (Blocks in V)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 262&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max Obs per Subject&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix data=candidats_ouverture;&lt;/P&gt;&lt;P&gt;nloptions maxiter=100;&lt;/P&gt;&lt;P&gt;class commune ;&lt;/P&gt;&lt;P&gt;model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP commune commune*EurostatA commune*EurostatC commune*sizelog commune*ENP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=kenwardroger&amp;nbsp; ; /* Addresses individual commune levels, and adds the Kenward-Rogers adjustment for repeated measures designs */&lt;/P&gt;&lt;P&gt;&amp;nbsp; random intercept / subject= commune solution residual; /* Converts to a repeated measures design.&amp;nbsp; Even though this is a RANDOM statement, the residual option means treat the values within a commune as correlated.&amp;nbsp; Note also the inclusion of commune and commune by covariate interactions in the model statement. */&lt;/P&gt;&lt;P&gt;lsmeans commune/ilink cl ; /* Outputs the estimates for each level of commune, on both the logit and original scale */&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 15:51:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108766#M5748</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-18T15:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108767#M5749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If there is no Iteration History in the output, the log must have something indicating a problem.&amp;nbsp; What NOTEs and WARNINGs might be showing up?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is an Iteration History, could you please post it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 16:42:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108767#M5749</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-18T16:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108768#M5750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, sorry Steve. There is indeed a note:&lt;/P&gt;&lt;P&gt;AVERTISSEMENT: Obtaining minimum variance quadratic unbiased estimates as starting values for the covariance parameters failed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 18:13:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108768#M5750</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-18T18:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108769#M5751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And so it goes...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the full dataset, it can't get good starting values.&amp;nbsp; It looks like the reduced set (691 records) did something but didn't converge.&amp;nbsp; Maybe we can use the parameters from that as starting points.&amp;nbsp; There should be something in the output that looks like Parameter Values at the Last Iteration.&amp;nbsp; Making sure that the order is maintained, try adding a PARMS statement.&amp;nbsp; Check the documentation for its use, but it will look something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parms (value1) (value2); /* Where value1 and value2 are from the output parameter values at the last iteration */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this doesn't help, then simplifying the model is the next option, or going to a conditional model (G side repeated effects rather than R side).&amp;nbsp; Estimates will be conditional (subject specific) instead of marginal (population averaged).&amp;nbsp; I hope that the PARMS statement will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 17:33:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108769#M5751</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-19T17:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108770#M5752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One problem could be that the number of columns in X [=fixed effects], 1315, exceeds the number of observations, 1012.&amp;nbsp; Reduce the number of fixed-effect parameters in your MODEL statement to be less than the number of observations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2013 12:57:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108770#M5752</guid>
      <dc:creator>1zmm</dc:creator>
      <dc:date>2013-06-20T12:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108771#M5753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am afraid that is my fault.&amp;nbsp; To include the separate slopes models for communes, I suggested adding the interactions.&amp;nbsp; Since this is all about marginal effects, those interactions should be deleted.&amp;nbsp; Try instead:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;proc glimmix data=candidates;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;nloptions maxiter=100;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; class commune ;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP commune&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=kenwardrogers ; /* Addresses individual commune levels, and adds the Kenward-Rogers adjustment for repeated measures designs.&amp;nbsp; &lt;STRONG&gt;This also applies the averaged effects of the continuous covariates across all communes &lt;/STRONG&gt;*/&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp; random intercept / subject= commune solution &lt;STRONG&gt;residual&lt;/STRONG&gt;; /* Converts to a repeated measures design.&amp;nbsp; Even though this is a RANDOM statement, the residual option means treat the values within a commune as correlated.&amp;nbsp; */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;lsmeans commune/ilink ci; /* Outputs the estimates for each level of commune, on both the logit and original scale */&lt;/P&gt;&lt;P style="background-color: #ffffff; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this addresses the column issue, which should in turn address the "can't get started" problem.&amp;nbsp; All thanks should go to &lt;A __default_attr="810813" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; for pointing out the (what should have been) obvious source of the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Jun 2013 17:04:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108771#M5753</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-20T17:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108772#M5754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks to both of you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've been extremely busy over the last days so I couldn't work that much on the model. I've thus need to have a closer look at this later.&lt;/P&gt;&lt;P&gt;Now the model do not converge....I tried different dependent variable and this is always the same problem: "did not converge".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it a problem in the modelling or the data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jérémy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 16:17:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108772#M5754</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-24T16:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108773#M5755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"Did not converge" isn't the same as "Will not noverge".&amp;nbsp; We can address the first with the NLOPTIONS statement, and by adjusting the convergence criterion in the PROC GLIMMIX statement.&amp;nbsp; In order to be of assistance, though, I need to see code and output for that code, especially the iteration history&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 16:23:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108773#M5755</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-24T16:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108774#M5756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I included the code as well as the SAS output. Is that all you need?&lt;/P&gt;&lt;P&gt;I'm really grateful for your help here!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc glimmix data=candidates;&lt;/P&gt;&lt;P&gt;nloptions maxiter=100;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class commune ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model&amp;nbsp; binouverture (event='1') = EurostatA EurostatC sizelog ENP commune&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; / solution dist=binary link=logit ddfm=kenwardrogers ; /* Addresses individual commune levels, and adds the Kenward-Rogers adjustment for repeated measures designs.&amp;nbsp; This also applies the averaged effects of the continuous covariates across all communes */&lt;/P&gt;&lt;P&gt;&amp;nbsp; random intercept / subject= commune solution residual; /* Converts to a repeated measures design.&amp;nbsp; Even though this is a RANDOM statement, the residual option means treat the values within a commune as correlated.&amp;nbsp; */&lt;/P&gt;&lt;P&gt;lsmeans commune/ilink cl; /* Outputs the estimates for each level of commune, on both the logit and original scale */&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jérémy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="1" cellspacing="1" class="SysTitleAndFooterContainer" frame="void" rules="none" style="font-family: Arial, Helvetica, sans-serif; font-size: small; color: #0000ff; background-color: #ffffff; border-width: 0px;" summary="Page Layout" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="c SystemTitle" style="font-size: medium; font-weight: bold; text-align: center;"&gt;Le Système SAS&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="c ProcTitle" style="font-family: Arial, Helvetica, sans-serif; font-size: small; font-weight: bold; font-style: italic; color: #0000ff; background-color: #ffffff; text-align: center;"&gt;The GLIMMIX Procedure&lt;/P&gt;&lt;P style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Model Information"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Data Set&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;WORK.CANDIDATES&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Response Variable&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;binouverture&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Response Distribution&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Binary&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Link Function&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Logit&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Variance Function&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Default&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Variance Matrix Blocked By&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Commune&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Estimation Technique&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Residual PL&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Degrees of Freedom Method&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Kenward-Roger&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Fixed Effects SE Adjustment&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Prasad-Rao-Kackar-Harville-Jeske&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX1" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Class Level Information"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Commune&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;252&lt;/TD&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Aiseau-Presles Amay Amel Andenne Anderlues Anhée Ans Anthisnes Antoing Arlon Assesse Ath Attert Aubange Aubel Awans Aywaille Baelen Bassange Bastogne Beaumont Beauraing Beauvechain Beloeil Berloz Bernissart Bertogne Bertrix Beyne-Heusay Binche Bièvre Blegny Bouillon Boussu Braine-l'Alleud Braine-le-Château Braine-le-Comte Braives Brugelette Brunehaut Burdinne Burg-Reuland Büllingen Bütgenbach Celles Cerfontaine Chapelle-Lez-Herlaimont Charleroi Chastre Chaudfontaine Chaumont-Gistoux Chimay Chiny Chièvres Châtelet Ciney Colfontaine Comblain-au-Pont Comines-Warneton Courcelles Court-St-Etienne Couvin Crisnée Dalhem Dinant Dison Doische Donceel Dour Durbuy Ecaussinnes Eghezée Ellezelles Enghien Engis Erezée Erquelinnes Esneux Estaimpuis Estinnes Etalle Eupen Faimes Farciennes Fauvillers Fernelmont Ferrières Fexhe-le-Haut-Clocher Flemalle Fleurus Flobecq Floreffe Florennes Florenville Fléron Fontaine-l'Evêque Fosses-la-Ville Frameries Frasnes-lez-Anvaing Froidchapelle Gedinne Geer Gembloux Genappe Gerpinnes Gesves Gouvy Grace-Hollogne Grez-Doiceau Habay Ham-sur-Heure-Nalinnes Hamois Hannut Hastière Havelange Hensies Herbeumont Herstal Herve Honnelles Hotton Houffalize Houyet Huy Hélecine Héron Incourt Ittre Jalhay Jemeppe-sur-Sambre Jodoigne Juprelle Jurbise Kelmis La Bruyère La Hulpe La Louvière La Roche-en-Ardenne Lasne Le Roeulx Lens Les-Bons-Villers Lessines Leuze-en-Hainaut Libramont-Chevigny Lierneux Limbourg Lincent Liège Lobbes Lontzen Malmedy Manage Manhay Marche-en-Famenne Marchin Martelange Meix-devant-Virton Merbes-le-Château Messancy Mettet Modave Momignies Mons Mont-St-Guibert Mont-de-l'Enclus Montigny-le-Tilleul Morlanwelz Mouscron Musson Namur Nandrin Nassogne Neufchâteau Neupré Nivelles Ohey Olne Onhaye Oreye Orp-Jauche Ottignies-LLN Ouffet Oupeye Paliseul Pecq Pepinster Perwez Philippeville Plombières Pont-à-Celles Profondeville Péruwelz Quaregnon Quiévrain Quévy Raeren Ramilies Rebecq Remicourt Rixensart Rochefort Rouvroy Rumes Saint Nicolas Saint-Georges-sur-Meuse Saint-Ghislain Saint-Hubert Sainte-Ode Sambreville Sankt Vith Seneffe Seraing Silly Sivry-Rance Soignies Sombreffe Somme-Leuze Soumagne Spa Sprimont Stavelot Stoumont Tellin Theux Thimister-Clermont Thuin Tinlot Tintigny Tournai Trooz Tubize Vaux-sur-Sûre Verlaine Verviers Vielsalm Villers-la-Ville Villers-le-Bouillet Viroinval Virton Visé Vresse-sur-Semois Walcourt Walhain Wanze Waremme Wasseiges Waterloo Wavre Welkenraedt Wellin Yvoir&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX2" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Number of Observations"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Number of Observations Read&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;804&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Number of Observations Used&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;803&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX3" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Response Profiles"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;1&lt;/TH&gt;&lt;TH class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;476&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;2&lt;/TH&gt;&lt;TH class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;1&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;327&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX4" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Dimensions"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;R-side Cov. Parameters&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Columns in X&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;257&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Columns in Z per Subject&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Subjects (Blocks in V)&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;252&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Max Obs per Subject&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;14&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX5" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Optimization Information"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Optimization Technique&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;None&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Parameters&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Lower Boundaries&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Upper Boundaries&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Fixed Effects&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Profiled&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Residual Variance&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Profiled&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Starting From&lt;/TH&gt;&lt;TD class="l Data" style="color: #000000; background-color: #e7e3e7;"&gt;Data&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX6" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Iteration History"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;1&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.13896683&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;2&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;3&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;4&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.91900698&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;5&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3460.7243613&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;6&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;7&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3728.5751363&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;8&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;9&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3993.8654206&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;10&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4127.2354391&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;11&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;12&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4394.1129597&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;13&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4525.2340423&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;14&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4658.3500927&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;15&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4791.7156&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;16&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4924.1913727&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;17&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5059.8010277&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;18&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5191.3961115&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;19&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5324.1823992&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;20&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;21&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;22&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;23&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;24&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;25&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.99810273&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;26&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.81393176&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;27&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;28&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3148.7088811&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;29&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3281.2624666&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;30&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;31&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3547.6660221&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;32&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3677.9846413&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;33&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3814.0718304&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;34&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;35&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.14868120&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;36&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4210.5072254&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;37&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4346.0003696&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;38&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;39&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.09425822&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;40&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.09072392&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;41&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4877.3197427&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;42&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5009.6182614&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;43&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;44&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.06120650&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;45&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5409.7912614&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;46&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;47&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;48&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;16935.289247&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;49&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;50&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;51&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.99810273&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;52&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.81393176&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;53&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;54&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3148.7088811&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;55&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3281.2624666&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;56&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;57&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3547.6660221&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;58&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3677.9846413&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;59&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3814.0718304&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;60&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;61&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.14868120&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;62&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4210.5072254&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;63&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4346.0003696&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;64&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;65&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.09425822&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;66&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.09072392&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;67&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4877.3197427&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;68&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5009.6182614&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;69&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;70&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.06120650&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;71&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5409.7912614&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;72&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;73&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;74&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;16935.289247&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;75&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;76&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;77&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.99810273&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;78&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.81393176&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;79&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;80&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3148.7088811&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;81&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3281.2624666&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;82&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;83&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3547.6660221&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;84&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3677.9846413&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;85&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;3814.0718304&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;86&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;87&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.14868120&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;88&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4210.5072254&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;89&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4346.0003696&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;90&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;91&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.09425822&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;92&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.09072392&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;93&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;4877.3197427&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;94&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5009.6182614&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;95&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;96&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;0.06120650&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;97&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;5409.7912614&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;98&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;99&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TH class="r RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace; text-align: right;"&gt;0&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.340781E154&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;2.00000000&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX7" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Convergence Status"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="c Data" style="color: #000000; background-color: #e7e3e7; text-align: center;"&gt;Did not converge.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A name="IDX8" style="color: #0000ff; font-family: Arial, Helvetica, sans-serif; font-size: small; background-color: #ffffff;"&gt;&lt;/A&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="5" class="Table" frame="void" rules="none" style="border-width: 0px; border-color: #000000;" summary="Procedure Glimmix: Covariance Parameter Estimates"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH class="l RowHeader" scope="row" style="font-weight: bold; color: #ffffff; background-color: #639ace;"&gt;Residual (VC)&lt;/TH&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;1.0328&lt;/TD&gt;&lt;TD class="r Data" style="color: #000000; background-color: #e7e3e7; text-align: right;"&gt;.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 16:42:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108774#M5756</guid>
      <dc:creator>Jerem</dc:creator>
      <dc:date>2013-06-24T16:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Marginal Effects with Proc glimmix</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108775#M5757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I may have spoken too hastily.&amp;nbsp; This has all the symptoms of quasi-separation--for at least some of the communes, all of the values are either 1 or zero, and all of the continuous covariates are identical.&amp;nbsp; I think you will either have to relinquish the hope of finding marginal estimates (i.e., consider commune to be a random effect), or find a way to collapse the communes into some larger categorization that eliminates the quasi-separation.&amp;nbsp; There is a major problem in trying to estimate 258 parameters from only 803 observations.&amp;nbsp; A rule of thumb for getting decent estimates is at least 5, and preferably 10, observations per parameter.&amp;nbsp; I think you may be able to build a respectable model if you could collapse the commune variable into 70 or 80 "super-commune" levels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jun 2013 17:02:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Marginal-Effects-with-Proc-glimmix/m-p/108775#M5757</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2013-06-24T17:02:35Z</dc:date>
    </item>
  </channel>
</rss>

