<?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: Estimate &amp;amp; Contrast Commands in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812036#M40042</link>
    <description>&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heejeong_0-1652045454971.png" style="width: 462px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71213iBDBACBFF5A5B1B1C/image-dimensions/462x347?v=v2" width="462" height="347" role="button" title="Heejeong_0-1652045454971.png" alt="Heejeong_0-1652045454971.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would the below syntax be the correct way to write the code? When I run this code, I get a figure (which I've copy-pasted below), but I have a weird shape of the confidence interval between the MEAN and 1+SD of the predictor variable. Could this be something wrong with my laptop pixels or would it actually be something that's going on in the data that I would have to address?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt; proc means data=JH.Final3;
      var cPAreactpost; 
      output out=out mean=mean std=sd;
      run;
    data mdat;
      set out;
      keep cPAreactpost;
      do cPAreactpost = mean-sd, mean, mean+sd;
        output;
      end;
      run;
    %Margins(data=JH.Final3, response=B4BNOCRE, model=cage ClinicSex marriedmidus work race_orig  cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism  cChronCondNumb  cAnyStressWide_sum cpa_mlm2 cPAreactpost,
             margins=cPAreactpost, margindata=mdat,
             options=diff reverse cl)

proc sgplot data=_margins noautolegend;
band upper=UPPER lower=LOWER x=cPAreactpost ;
series y=ESTIMATE x=cPAreactpost;
xaxis values=(-0.0627 0 0.0627) grid offsetmin=.05 offsetmax=.05
label="Positive Affective Responsivity";
yaxis values=(10 to 40  by 5) grid offsetmin=.05 offsetmax=.05 
label="Norepinephrine";
title "Effects of Positive Affective Responsivity on Norepinephrine";
run;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 08 May 2022 21:31:19 GMT</pubDate>
    <dc:creator>Heejeong</dc:creator>
    <dc:date>2022-05-08T21:31:19Z</dc:date>
    <item>
      <title>Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811985#M40024</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running a simple proc glm with one continuous predictor. I wanted to calculate the estimates of Norepinephrine at 1 SD below the mean, mean, and 1 SD above the mean of the continuous predictor (centered value of stress reactivity).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc glm data=JH.Final3 ;
model Norepinephrine= cPAreactpost;
estimate 'Centered Stress reactivity (1-SD)' intercept 1  cPAreactpost-0.0627096 ;
estimate 'Centered Stress reactivity (Mean)' intercept 1 cPAreactpost 0;
estimate 'Centered  Stress reactivity (1+SD)' intercept 1  cPAreactpost0.0627096;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;I have 2 quick questions:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1) Could you please confirm that the estimate syntax is correctly written for me to compare the predicted values of Norepinephrine at 1-SD, mean, and 1+SD of the predictor variables? I see the following output when I run this syntax.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heejeong_1-1651994472660.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71203i91F6D78B61E77E9C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Heejeong_1-1651994472660.png" alt="Heejeong_1-1651994472660.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) If I wanted to see if these three parameters were significantly different from each other, I would I write the syntax? I have been using both estimate and contrast syntax for categorical variables but wasn't sure how I would write a "contrast" syntax when I have a continuous predictor.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much in advance for all your help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the Best,&lt;/P&gt;&lt;P&gt;Joanna&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 07:23:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811985#M40024</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T07:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811990#M40029</link>
      <description>&lt;P&gt;Let me throw the question back to you. If the mean is 17.626 and 1 SD is 0.0627096, then what should the value of Mean – 1SD be? Does that equal the number in the output?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get confidence intervals for the mean, you would use the &lt;A href="https://documentation.sas.com/doc/en/pgmmvacdc/9.4/statug/statug_glm_syntax15.htm" target="_self"&gt;MEANS statement&lt;/A&gt; in PROC GLM. Of course, confidence intervals do not use 1SD. If you really want 1SD, you should modify the ALPHA= option in the MEANS statement.&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 11:08:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811990#M40029</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-05-08T11:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811994#M40031</link>
      <description>&lt;P&gt;Hello &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/424897"&gt;@Heejeong&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As stated by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;, you do not need ESTIMATE nor CONTRAST statements for this.&lt;/P&gt;
&lt;P&gt;This is most easily done using the MEANS, LSMEANS ( , SLICE, and | or LSMESTIMATE statement ).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But for the sake of writing good ESTIMATE and CONTRAST statements, I put some references to blogs here that can serve as an inspiration for you and others :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usage Note 67024: Using the ESTIMATE or CONTRAST statement or Margins macro to assess continuous variable effects in interactions and splines&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/67/024.html" target="_blank" rel="noopener"&gt;67024 - Using the ESTIMATE or CONTRAST statement or Margins macro to assess continuous variable effects in interactions and splines (sas.com)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The magical ESTIMATE (and CONTRAST) statements&lt;/P&gt;
&lt;P&gt;By Chris Daman on SAS Learning Post April 23, 2012&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2012/04/23/the-magical-estimate-and-contrast-statements/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sastraining/2012/04/23/the-magical-estimate-and-contrast-statements/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"Easy button" for ESTIMATE statements&lt;/P&gt;
&lt;P&gt;By Chris Daman on SAS Learning Post April 25, 2012&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2012/04/25/easy-button-for-estimate-statements/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sastraining/2012/04/25/easy-button-for-estimate-statements/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ESTIMATE Statements - the final installment&lt;/P&gt;
&lt;P&gt;By Chris Daman on SAS Learning Post May 2, 2012&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2012/05/02/estimate-statements-the-final-installment/" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/sastraining/2012/05/02/estimate-statements-the-final-installment/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to write CONTRAST and ESTIMATE statements in SAS regression procedures?&lt;/P&gt;
&lt;P&gt;By Rick Wicklin on The DO Loop June 6, 2016&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2016/06/06/write-contrast-estimate-statements-sas-regression-procedures.html" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/iml/2016/06/06/write-contrast-estimate-statements-sas-regression-procedures.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usage Note 24447: Examples of writing CONTRAST and ESTIMATE statements&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/kb/24/447.html" target="_blank" rel="noopener"&gt;https://support.sas.com/kb/24/447.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 13:41:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811994#M40031</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-05-08T13:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811995#M40032</link>
      <description>&lt;P&gt;Thank you so much for your fast response to my question&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I apologize, but couldn't quite understand what you were trying to convey with your question back to me. The answer to your question (my train of thought is that I would calculate "&lt;SPAN&gt;17.626-0.0627096") is that the output does not equal this calculation?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And thank you so much for directing me to the Means Statement! My only concern is that my predictor is a "continuous variable" so when I tried to run the means statement, I received an error message ("ERROR: Only CLASS variables allowed in this effect") that a continuous variable is not allowed.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And thank you, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;for all your helpful links to writing ESTIMATE and CONTRAST statements, I am looking forward to reviewing them! I have the same problem as the above when trying to use "MEANS, LSMEANS (SLICE, and | or LSMESTIMATE statement)." Since my predictor is a continuous variable and I am unable to run use these helpful statements.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In another analysis, I did use the Proc Rank syntax to create quartiles of my predictor and ran a proc glm with a categorical predictor variable (the same variable as above), which I think is a more straightforward analysis. However, my result is not significant when my predictor is transformed into a categorical variable so I had to stick with my method of running the main analysis with a continuous predictor first then following up with additional analyses at different levels of the predictor variable.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you both SO much for your help and support, I really appreciate it!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 14:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811995#M40032</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T14:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811996#M40033</link>
      <description>&lt;P&gt;Sorry, I didn't notice your predictor is a continuous variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use these methods to get predicted value at any X value (including the mean of X, including mean(x) + 1SD and mean(X) – 1SD).&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2014/02/17/the-missing-value-trick-for-scoring-a-regression-model.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2014/02/17/the-missing-value-trick-for-scoring-a-regression-model.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 14:31:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811996#M40033</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-05-08T14:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811997#M40034</link>
      <description>&lt;P&gt;Sorry,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/424897"&gt;@Heejeong&lt;/a&gt;&amp;nbsp;, I hadn't read your original post thoroughly enough either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In fact, you are doing a simple linear regression.&lt;/P&gt;
&lt;P&gt;You can also do that with PROC REG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And here are two examples on how to score new observations with PROC REG ( on top of the missing value trick, already suggested by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;). &lt;STRONG&gt;PROC SCORE&lt;/STRONG&gt; and &lt;STRONG&gt;PROC PLM&lt;/STRONG&gt; :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL class="lia-list-style-type-disc"&gt;
&lt;LI&gt;The SCORE Procedure&lt;BR /&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_score_examples02.htm" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_score_examples02.htm&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;4 reasons to use PROC PLM for linear regression models in SAS&lt;BR /&gt;By Rick Wicklin on The DO Loop February 11, 2019&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2019/02/11/proc-plm-regression-models-sas.html" target="_blank" rel="noopener"&gt;https://blogs.sas.com/content/iml/2019/02/11/proc-plm-regression-models-sas.html&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;The PLM Procedure : Scoring with PROC PLM&lt;BR /&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_plm_examples01.htm" target="_blank" rel="noopener"&gt;https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/statug/statug_plm_examples01.htm&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Also, instead of using PROC RANK to categorize / discretize your continuous predictor into equal-sized groups, there are methods that optimize the location of the boundaries between the groups such that the predictive-ness of the resulting discretized predictor is maximal.&lt;BR /&gt;Weights of Evidence (WOE) is such a method. You can also do it with a decision tree (allowing for one split and multiple branches).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 15:49:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/811997#M40034</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2022-05-08T15:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812004#M40035</link>
      <description>&lt;P&gt;Do not categorize your predictor if that is not needed. Doing so only throws away information which is can be used in the model. Note that your model assumes that the effect of the predictor on the response mean is linear.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Similarly to what is shown in the first part of &lt;A href="https://support.sas.com/kb/67/024.html" target="_self"&gt;this note&lt;/A&gt;, this can be easily done in the Margins macro whether the predictor is centered or not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;    proc means data=JH.Final3;
      var cPAreactpost; 
      output out=out mean=mean std=sd;
      run;
    data mdat;
      set out;
      keep cPAreactpost;
      do cPAreactpost = mean-sd, mean, mean+sd;
        output;
      end;
      run;
    %Margins(data=JH.Final3, response=Norepinephrine, model=cPAreactpost,
             margins=cPAreactpost, margindata=mdat,
             options=diff reverse cl)
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Alternatively, if the ESTIMATE statement is to be used, then as discussed in &lt;A href="https://support.sas.com/kb/24/447.html" target="_self"&gt;this note&lt;/A&gt;, you can write your hypotheses in terms of the model to determine the coefficients for the ESTIMATE or CONTRAST statement. Following that process, and assuming that the predictor mean and standard deviation are really zero and 0.0627, then that produces the coefficients as below. As detailed in the note, the coefficients for the difference are determined by subtracting the coefficient vectors for the two means to be compared.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=JH.Final3;
model Norepinephrine=cPAreactpost;
estimate "mean" intercept 1 cPAreactpost 0;
estimate "mean-sd" intercept 1 cPAreactpost -0.0627;
estimate "mean+sd" intercept 1 cPAreactpost 0.0627;
estimate "1 sd change" cPAreactpost 0.0627;
estimate "2 sd change" cPAreactpost 0.1254;
run; quit;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 16:13:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812004#M40035</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-05-08T16:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812024#M40036</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;, wow, thank you so much for your helpful response and for taking the time to write out the syntax for me!&lt;/P&gt;&lt;P&gt;Sometimes, I will understand the concept of things but can't get the syntax to run or don't feel 100% confident that I got it right, so I am really grateful for your time and help! I'm sorry for another set of questions but I promise that these will be the last ones. I am learning so much and so thankful for this opportunity, so thank you so much again! And if you need any clarification, please let me know!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;I had a few follow-up questions:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;1) When I run the Proc Means syntax that you wrote for me, below is the ouput I see. Although the mean reads as "1.3591194E-8," I wanted to confirm with you that it's safe to use "0" as the mean value for my Estimate statements.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heejeong_0-1652033338525.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71209i38951E33F50E6E14/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Heejeong_0-1652033338525.png" alt="Heejeong_0-1652033338525.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2) I actually had a long list of covariates that I didn't show before to simplify my model. But now that I've found an answer to my original question, I just wanted to confirm with you that&amp;nbsp; I can add my long list of covariates in both the MACRO and ESTIMATE models? Below is my syntax where I've added in my covariates to both the MACRO &amp;amp; ESTIMATE statements:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt; proc means data=JH.Final3;
      var cPAreactpost; 
      output out=out mean=mean std=sd;
      run;
    data mdat;
      set out;
      keep cPAreactpost;
      do cPAreactpost = mean-sd, mean, mean+sd;
        output;
      end;
      run;
    %Margins(data=JH.Final3, response=Norepinephrine, model=cage ClinicSex marriedmidus work race_orig  cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism  cChronCondNumb  cAnyStressWide_sum cpa_mlm2 cPAreactpost,
             margins=cPAreactpost, margindata=mdat,
             options=diff reverse cl)&lt;BR /&gt;&lt;BR /&gt;proc glm data=JH.Final3;&lt;BR /&gt;model Norepinephrine=cage ClinicSex marriedmidus work race_orig cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism cChronCondNumb cAnyStressWide_sum cpa_mlm2 cPAreactpost;&lt;BR /&gt;estimate "mean" intercept 1 cPAreactpost 0;&lt;BR /&gt;estimate "mean-sd" intercept 1 cPAreactpost -0.0627;&lt;BR /&gt;estimate "mean+sd" intercept 1 cPAreactpost 0.0627;&lt;BR /&gt;estimate "1 sd change" cPAreactpost 0.0627;&lt;BR /&gt;estimate "2 sd change" cPAreactpost 0.1254;&lt;BR /&gt;run; quit;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;3) In the Margins syntax, there isn't a PROC GLM or a PROC REG, and I was wondering if I was supposed to run a PROC GLM first then run the Macro? Or does the below part of the MARGIN syntax replace the PROC GLM syntax?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;response=Norepinephrine, model=cage ClinicSex marriedmidus work race_orig  cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism  cChronCondNumb  cAnyStressWide_sum cpa_mlm2 cPAreactpost,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;4) Below are my outputs for the MACRO and ESTIMATE commands. My initial understanding is that the Predictive Margins (from the MACRO) and Estimate Parameters (from the ESTIMATE) should generate the same values. But I got a bit confused because they are different. Could you please let me know why that might be and which numbers I should be using when I want to discuss how different levels of stress reactivity are differentially related to levels of Norepinephrine? I am currently using the below syntax for graphing my results, so I'm assuming that I should be using the results from the ESTIMATE command?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc glm data=JH.Final3;
model Norepinephrine=cage ClinicSex marriedmidus work race_orig  cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism  cChronCondNumb  cAnyStressWide_sum cpa_mlm2 cPAreactpost;
estimate "mean" intercept 1 cPAreactpost 0;
estimate "mean-sd" intercept 1 cPAreactpost -0.0627;
estimate "mean+sd" intercept 1 cPAreactpost 0.0627;
estimate "1 sd change" cPAreactpost 0.0627;
estimate "2 sd change" cPAreactpost 0.1254;
store graph5;run;
run; quit;
proc plm restore=graph5 noinfo;
			effectplot fit (x=cPAreactpost);
			run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;MACRO&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heejeong_1-1652034098207.png" style="width: 475px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71211i36E215E32D64758D/image-dimensions/475x285?v=v2" width="475" height="285" role="button" title="Heejeong_1-1652034098207.png" alt="Heejeong_1-1652034098207.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;ESTIMATE&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heejeong_2-1652034108869.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71212i874C1851CAC931C0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Heejeong_2-1652034108869.png" alt="Heejeong_2-1652034108869.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;5) Lastly, I just wanted to confirm that "&lt;STRONG&gt;1 sd change&lt;/STRONG&gt;" estimate is testing the difference between "1-SD estimate value" and "mean." Also that&amp;nbsp;"&lt;STRONG&gt;2 sd change&lt;/STRONG&gt;" estimate command is comparing&amp;nbsp;"1-SD estimate value" and "1+SD estimate value." So if I wanted to compare the estimates of "mean" and&amp;nbsp;"1+SD estimate value," what syntax should I be using?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 18:31:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812024#M40036</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T18:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812025#M40037</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for continuing to share so many helpful links with me! Also, I'm finding the&amp;nbsp;&lt;SPAN&gt;Weights of Evidence (WOE) method to be extremely helpful too, so THANK YOU!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 18:33:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812025#M40037</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T18:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812028#M40038</link>
      <description>Yes, that 1E-8 value is effectively zero. And yes, you can add covariates as you did in MODEL= in the Margins macro call as you did. As noted in the documentation of the macro, it fits the model (using PROC GENMOD) as well as estimates the margins, so you don't need to fit the model beforehand. The values from the macro and from the ESTIMATE statements differ because the ESTIMATE statements use zero values for all of your covariates (add the E option to display the values) while the macro uses the actual observed values in each observation in its computations. That is, the macro by default does not set each covariate at a fixed value. This is one advantage of using margins. The values from the first three ESTIMATE statements are estimated means at the mean, mean-sd, and mean+sd of the predictor when all of the covariates are fixed at zero. The values from the macro don't assume the covariates are fixed. And yes, the "1 (and 2) sd change" estimates are the changes from the mean... again with the covariates fixed at zero.  The 1 sd change applies equally to a comparison of the mean to +1sd or the mean to -1sd since the predictor is assumed to have a linear effect.</description>
      <pubDate>Sun, 08 May 2022 19:11:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812028#M40038</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-05-08T19:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812032#M40039</link>
      <description>&lt;P&gt;Thank you so much for yet another extremely helpful response,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I promise this is the last question. It's great to know that the MARGINS MACRO statement generates more accurate values with actual values of covariates (and not 0 values of covariates). I'm going to use the values from the&amp;nbsp;MARGINS MACRO in the final manuscript but struggling to find a way to graph the predicted margins values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thoroughly read through the two documents that you shared with me and I only see a way to graph the estimates using the PROC PLM method. Would there be a way for me to graph the PREDICTED MARGINS from the MACRO MARGINS STATEMENT?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 20:38:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812032#M40039</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T20:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812033#M40040</link>
      <description>&lt;P&gt;In case it might be helpful, below is the syntax I have been using to plot the model at SD-1, Mean, SD+1 of the continuous variable. Would this already be plotting the Predicted Margins?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt;proc glm data=JH.Final3 ;
model Norepinephrine= cage ClinicSex marriedmidus work race_orig  cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism  cChronCondNumb  cAnyStressWide_sum cpa_mlm2 cPAreactpost;
run;
store graph4;run;
proc plm restore=graph4 noinfo;
effectplot fit (x=cPAreactpost)  /clm;
ods output fitplot=Logfit;
run;

proc sgplot data=Logfit noautolegend;
band upper=_uclm lower=_lclm x=_xcont1 / transparency=.3;
series y=_predicted x=_xcont1;
xaxis values=(-0.0627 0 0.0627) grid offsetmin=.05 offsetmax=.05
label="Positive Affective Responsivity";
yaxis values=(10 to 40  by 5) grid offsetmin=.05 offsetmax=.05 
label="Norepinephrine";
title "Effects of Positive Affective Responsivity on Norepinephrine";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you so much,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;!!&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 21:02:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812033#M40040</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T21:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812034#M40041</link>
      <description>Yes. The Margins macro automatically creates the _MARGINS data set that contains the margin estimates and their confidence limits.in variables ESTIMATE, LOWER, and UPPER. So, you can use similar PROC SGPLOT code to produce the desired plot. &lt;BR /&gt;&lt;BR /&gt;Note that the Margins macro does not produce "more accurate" estimates than the ESTIMATE statement - it just computes predictive margins rather than a particular linear combination of model parameters which is basically what the ESTIMATE statement does. So, they compute different things.</description>
      <pubDate>Sun, 08 May 2022 21:15:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812034#M40041</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-05-08T21:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812036#M40042</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heejeong_0-1652045454971.png" style="width: 462px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71213iBDBACBFF5A5B1B1C/image-dimensions/462x347?v=v2" width="462" height="347" role="button" title="Heejeong_0-1652045454971.png" alt="Heejeong_0-1652045454971.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would the below syntax be the correct way to write the code? When I run this code, I get a figure (which I've copy-pasted below), but I have a weird shape of the confidence interval between the MEAN and 1+SD of the predictor variable. Could this be something wrong with my laptop pixels or would it actually be something that's going on in the data that I would have to address?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt; proc means data=JH.Final3;
      var cPAreactpost; 
      output out=out mean=mean std=sd;
      run;
    data mdat;
      set out;
      keep cPAreactpost;
      do cPAreactpost = mean-sd, mean, mean+sd;
        output;
      end;
      run;
    %Margins(data=JH.Final3, response=B4BNOCRE, model=cage ClinicSex marriedmidus work race_orig  cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism  cChronCondNumb  cAnyStressWide_sum cpa_mlm2 cPAreactpost,
             margins=cPAreactpost, margindata=mdat,
             options=diff reverse cl)

proc sgplot data=_margins noautolegend;
band upper=UPPER lower=LOWER x=cPAreactpost ;
series y=ESTIMATE x=cPAreactpost;
xaxis values=(-0.0627 0 0.0627) grid offsetmin=.05 offsetmax=.05
label="Positive Affective Responsivity";
yaxis values=(10 to 40  by 5) grid offsetmin=.05 offsetmax=.05 
label="Norepinephrine";
title "Effects of Positive Affective Responsivity on Norepinephrine";
run;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 21:31:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812036#M40042</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T21:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812037#M40043</link>
      <description>Remove the VALUES= option in the XAXIS statement. The actual values are computed values that will not be exactly equal to the rough values that you entered in that option.</description>
      <pubDate>Sun, 08 May 2022 21:45:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812037#M40043</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-05-08T21:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812038#M40044</link>
      <description>Actually, it is more likely that would result from the data not being in proper sorted order. Be sure that the values in the DATA= data set are sorted in increasing order of the X axis variable (cPAreactpost).</description>
      <pubDate>Sun, 08 May 2022 21:56:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812038#M40044</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-05-08T21:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812040#M40045</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;So I tried the code below to proc sort the data by the predictor but got the following error message:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Heejeong_0-1652050408986.png" style="width: 853px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/71214iFF3517B0F0323EB1/image-dimensions/853x82?v=v2" width="853" height="82" role="button" title="Heejeong_0-1652050408986.png" alt="Heejeong_0-1652050408986.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I also tried deleting the values statement but it didn't change the figure shape. Thank you so much for troubleshooting this with me!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=""&gt; proc means data=JH.Final3;
      var cPAreactpost; 
      output out=out mean=mean std=sd;
      run;
    data mdat;
      set out;
      keep cPAreactpost;
      do cPAreactpost = mean-sd, mean, mean+sd;
        output;
      end;
      run;
    %Margins(data=JH.Final3, response=B4BNOCRE, model=cage ClinicSex marriedmidus work race_orig  cedu cHHtotalIncome EverSmokeReg Exercise20mins CNSmeds cBMI cCESD cNeuroticism  cChronCondNumb  cAnyStressWide_sum cpa_mlm2 cPAreactpost,
             margins=cPAreactpost, margindata=mdat,
             options=diff reverse cl)&lt;BR /&gt;
proc sort data=_margins; 
by cPAreactpost;
run;&lt;BR /&gt;
proc sgplot data=_margins noautolegend;
band upper=UPPER lower=LOWER x=cPAreactpost ;*/ transparency=.3;
series y=ESTIMATE x=cPAreactpost;
xaxis values=(-0.0627 0 0.0627) grid offsetmin=.05 offsetmax=.05
label="Positive Affective Responsivity";
yaxis values=(10 to 40  by 5) grid offsetmin=.05 offsetmax=.05 
label="Norepinephrine";
title "Effects of Positive Affective Responsivity on Norepinephrine";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 May 2022 22:55:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812040#M40045</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-08T22:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812052#M40046</link>
      <description>Perhaps you have the _MARGINS data set open in a ViewTable window. If not, try adding an OUT= option in your PROC SORT step (proc sort data=_margins out=mymargins; ...) and then using the MYMARGINS data in PROC SGPLOT. If none of that works, close and restart SAS and rerun all of it (with the OUT= in PROC SORT).</description>
      <pubDate>Mon, 09 May 2022 01:49:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812052#M40046</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2022-05-09T01:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Estimate &amp; Contrast Commands</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812058#M40047</link>
      <description>&lt;P&gt;I closed everything and reran the syntax with the "&lt;SPAN&gt;with the OUT= in PROC SORT" and it worked! I can't be more thankful for all your help today! I learned so much and feel so much more confident with my analyses. Thank you so much,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13633"&gt;@StatDave&lt;/a&gt;&amp;nbsp;, for your helpful and fast responses even at night time! I really appreciate it.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 May 2022 02:40:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Estimate-amp-Contrast-Commands/m-p/812058#M40047</guid>
      <dc:creator>Heejeong</dc:creator>
      <dc:date>2022-05-09T02:40:00Z</dc:date>
    </item>
  </channel>
</rss>

