<?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 Why do I get Type 3 Analysis of Effects in linear regression in SAS EM in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/835750#M41407</link>
    <description>&lt;P&gt;I change class target to "linear regression" for the regression node. But then when I run the node, I get "Type 3 Analysis of Effects" in the results. I looked it up and found that type 3 analysis is for logistic regression, not for linear regression. May I know what is type 3 analysis and why do I get this in the linear regression instead of logistic regression?&lt;/P&gt;</description>
    <pubDate>Thu, 29 Sep 2022 02:00:32 GMT</pubDate>
    <dc:creator>ycenycute</dc:creator>
    <dc:date>2022-09-29T02:00:32Z</dc:date>
    <item>
      <title>Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/835750#M41407</link>
      <description>&lt;P&gt;I change class target to "linear regression" for the regression node. But then when I run the node, I get "Type 3 Analysis of Effects" in the results. I looked it up and found that type 3 analysis is for logistic regression, not for linear regression. May I know what is type 3 analysis and why do I get this in the linear regression instead of logistic regression?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 02:00:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/835750#M41407</guid>
      <dc:creator>ycenycute</dc:creator>
      <dc:date>2022-09-29T02:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836350#M41419</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course you can get Type 3 Analysis of Effects (i.e.&amp;nbsp;Type III sum of squares) with linear regression !&lt;/P&gt;
&lt;P&gt;But I have to add the&amp;nbsp;&lt;SPAN&gt;Type 3 Analysis of Effects table (SS3) is&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;actually only useful when a predictor variable is used as a classification variable&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See below program that puts SS1 , SS2 , SS3 and SS4 in the results pane :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title 'Gasoline Mileage Experiment';
data mileage;
   input mph mpg @@;
   datalines;
20 15.4
30 20.2
40 25.7
50 26.2  50 26.6  50 27.4
55   .
60 24.8
;

ods graphics on;
proc glm data=mileage;
   model mpg=mph mph*mph / p clm SS1 SS2 SS3 SS4 ;
run;
QUIT;
ods graphics off;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Remark that p-values in Parameter Estimates table equal the p-values in SS3-table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"Type III" tests test for the significance of each explanatory variable, under the assumption that all other variables entered in the model equation are present.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want a lengthy explanation about Type I , Type II , Type III and Type IV,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;then go here :&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The Four Types of Estimable Functions&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://support.sas.com/documentation/onlinedoc/stat/930/introglmest.pdf" target="_blank"&gt;https://support.sas.com/documentation/onlinedoc/stat/930/introglmest.pdf&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want a quicker read, search the internet (a plethora of hits).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 08:47:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836350#M41419</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-10-02T08:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836362#M41420</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/393358"&gt;@ycenycute&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I change class target to "linear regression" for the regression node. But then when I run the node, I get "Type 3 Analysis of Effects" in the results. I looked it up and found that type 3 analysis is for logistic regression, not for linear regression. May I know what is type 3 analysis and why do I get this in the linear regression instead of logistic regression?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It is not true that Type III applies only for logistic regression. It applies to linear regression as well. It measures how much of the response variability is caused by changes in a predictor variable.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 11:10:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836362#M41420</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-02T11:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836365#M41421</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I have to add the&amp;nbsp;&lt;SPAN&gt;Type 3 Analysis of Effects table (SS3) is&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;actually only useful when a predictor variable is used as a classification variable&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I would not agree with that statement. It is useful for both classification predictor variables and continuous predictor variables.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 11:00:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836365#M41421</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-02T11:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836371#M41422</link>
      <description>Then what's the difference between type 3 analysis and maximum likelihood estimation results given by SAS output?</description>
      <pubDate>Sun, 02 Oct 2022 11:43:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836371#M41422</guid>
      <dc:creator>ycenycute</dc:creator>
      <dc:date>2022-10-02T11:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836373#M41423</link>
      <description>&lt;P&gt;Type III is a calculation of how much of the variability of the response variable is explained by the predictor variable. It has nothing to do with Maximum Likelihood, which is a method of estimating the regression coefficients (Least Squares is another method).&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 12:26:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836373#M41423</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-02T12:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836374#M41424</link>
      <description>Ok. But what does it mean by explaining the variability of Y variable? Similar to R square, but applies to each X variable? How is the p value obtained from the type 3 analysis? Any readings would be useful. I find SAS output something not commonly used....</description>
      <pubDate>Sun, 02 Oct 2022 12:30:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836374#M41424</guid>
      <dc:creator>ycenycute</dc:creator>
      <dc:date>2022-10-02T12:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836375#M41425</link>
      <description>&lt;P&gt;Type III is not an "analysis" or "analysis method" like least squares or maximum likelihood. It is simply a method of determining the sum of squares for a given predictor. The only Type III is sum of squares, that's it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes, it is similar to an R-squared for an individual predictor, but not identical either. In the case of multiple X variables, the sum of the Type III sum of squares across all x-variables may not sum to the total sum of squares because of the multi-collinearity between the X variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P-values are not obtained from the Type III sum of squares. They are obtained from the regression coefficient estimate and the estimate of the standard error.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I don't have specific readings to provide, but just about any text-book will explain.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 12:39:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836375#M41425</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-02T12:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836377#M41427</link>
      <description>&lt;P&gt;Thanks so much&amp;nbsp; for the explanation. This is helpful. Regarding this statement "&lt;SPAN&gt;They are obtained from the regression coefficient estimate and the estimate of the standard error.&lt;/SPAN&gt;", so is it obtained from the regression coefficients the estimate of the standard error from the maximum likelihood estimation? SAS output MLE estimates for coefficients for linear regression.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are the p-value the same as in type 3 analysis and MLE results? I don't think so.....&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 12:42:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836377#M41427</guid>
      <dc:creator>ycenycute</dc:creator>
      <dc:date>2022-10-02T12:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836380#M41429</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/393358"&gt;@ycenycute&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks so much&amp;nbsp; for the explanation. This is helpful. Regarding this statement "&lt;SPAN&gt;They are obtained from the regression coefficient estimate and the estimate of the standard error.&lt;/SPAN&gt;", so is it obtained from the regression coefficients the estimate of the standard error from the maximum likelihood estimation? SAS output MLE estimates for coefficients for linear regression.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Standard error and regression coefficients are computed by either Maximum Likelihood or Least Squares, depending on which SAS PROC you are using.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Are the p-value the same as in type 3 analysis and MLE results? I don't think so.....&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is &lt;STRONG&gt;no&lt;/STRONG&gt; such thing as Type 3 analysis. There is Type III sum of squares for each x-variable (which is computed after the regression is fit by either Maximum Likelihood or Least Squares). P-values are not determined by sum of squares for the x-variable.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 16:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836380#M41429</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-02T16:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836438#M41431</link>
      <description>&lt;P&gt;You are absolutely right , &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;.&lt;BR /&gt;I was out all day today and thought a few times : I'll have to correct that false statement of mine later.&lt;/P&gt;
&lt;P&gt;But you have done it already&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;.&lt;BR /&gt;I had confused myself this morning but it's too long a story to explain.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 21:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836438#M41431</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-10-02T21:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836499#M41437</link>
      <description>&lt;P&gt;Adding:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Are the p-value the same as in type 3 analysis and MLE results? I don't think so.....&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The question doesn't make sense, the Type 3 sum-of-squares does not have an associated p-value, and thus can't be compared to p-values from MLE. (Least squares and MLE will not necessarily produce the same p-value, but that is not what you asked).&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 11:45:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836499#M41437</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-10-03T11:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836532#M41438</link>
      <description>&lt;P&gt;This discussion is getting a bit confused. Maximum likelihood, least squares, GEE, and others are estimation methods for estimating the individual parameters of a specified model. Type 3 (as well as Types 1, 2, and 4) analyses are tests of specific hypotheses on linear combinations of the model parameters. This is discussed in detail (in the context of models estimated by least squares) in "The Four Types of Estimable Functions" chapter in the SAS/STAT User's Guide. However, you will also find some of these analyses in procedures that don't use least squares estimation, such as PROC GENMOD which can provide Type 1 and Type 3 analyses - see the Type 1 and Type 3 analysis subsections in the Details section of the GENMOD documentation. Type 3 analyses are commonly used as a way to assess the overall effect of a CLASS predictor in the model, over and above the presence of the other predictors in the model. Since a CLASS predictor has multiple individual parameters estimated by the model, each parameter is individually tested to see if it equals zero which makes it hard to know the overall effect of the predictor. The Type 3 test of the predictor provides a single test of the effect of the model. A Type 1 analysis is similar but tests the predictor's additional effect in a sequential way depending on its order in the model specification.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 15:17:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836532#M41438</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-10-03T15:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836690#M41442</link>
      <description>&lt;P&gt;I asked this because SAS outputs p-value for X variable in Type 3 analysis. This p-value is not the same as that in the MLE results for each individual X variable.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 12:35:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836690#M41442</guid>
      <dc:creator>ycenycute</dc:creator>
      <dc:date>2022-10-04T12:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836691#M41443</link>
      <description>&lt;P&gt;This makes sense. Type 3 analysis seems to work with categorical / nominal X variable. So it does not give the estimate for each category under the X variable, like the MLE does, but to give one estimate for the whole X variable.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 12:37:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836691#M41443</guid>
      <dc:creator>ycenycute</dc:creator>
      <dc:date>2022-10-04T12:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Why do I get Type 3 Analysis of Effects in linear regression in SAS EM</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836717#M41447</link>
      <description>&lt;P&gt;I'm not sure about your particular analysis, but depending on how it is done it is possible for the Type 3 test to differ from the individual parameter test for a variable that only has a single parameter (such as if it is continuous). This can be because a different type of test might be used for the two tests. This is the case with analyses done by PROC GENMOD or PROC GEE as described in &lt;A href="http://support.sas.com/kb/22576" target="_self"&gt;this note&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 14:11:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Why-do-I-get-Type-3-Analysis-of-Effects-in-linear-regression-in/m-p/836717#M41447</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-10-04T14:11:04Z</dc:date>
    </item>
  </channel>
</rss>

