Interpretation of linear regression interaction term plotNonsignificant interaction still causes main effect to flip?How does the interpretation of main effects in a Two-Way ANOVA change depending on whether the interaction effect is significant?How to determine the significance of an interaction?Interpretation of Coefficients in linear regression using 'fitlm'Why does sign of a main effect change in logistic regression when adding an interaction?Interpretation of interaction term with a logged dependent variableinterpretation of the main effect when interaction term is included and main effect changes signinterpretation of interaction term in regressionWhy and how does adding an interaction term affects the confidence interval of a main effect?Plotting correlation coefficient against regression coefficient

Is there a logarithm base for which the logarithm becomes an identity function?

What would be the most expensive material to an intergalactic society?

Why does a car's steering wheel get lighter with increasing speed

Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?

Why do phishing e-mails use faked e-mail addresses instead of the real one?

Unfamiliar notation in Diabelli's "Duet in D" for piano

I am the person who abides by rules but breaks the rules . Who am I

Paper published similar to PhD thesis

The (Easy) Road to Code

Does the US political system, in principle, allow for a no-party system?

Was it really inappropriate to write a pull request for the company I interviewed with?

Why isn't P and P/poly trivially the same?

Why is there an extra space when I type "ls" on the Desktop?

Why restrict private health insurance?

Unidentified signals on FT8 frequencies

Too soon for a plot twist?

How do you make a gun that shoots melee weapons and/or swords?

Can Witch Sight see through Mirror Image?

An Undercover Army

Book where society has been split into 2 with a wall down the middle where one side embraced high tech whereas other side were totally against tech

I am the light that shines in the dark

Draw this image in the TIKZ package

A vote on the Brexit backstop

A running toilet that stops itself



Interpretation of linear regression interaction term plot


Nonsignificant interaction still causes main effect to flip?How does the interpretation of main effects in a Two-Way ANOVA change depending on whether the interaction effect is significant?How to determine the significance of an interaction?Interpretation of Coefficients in linear regression using 'fitlm'Why does sign of a main effect change in logistic regression when adding an interaction?Interpretation of interaction term with a logged dependent variableinterpretation of the main effect when interaction term is included and main effect changes signinterpretation of interaction term in regressionWhy and how does adding an interaction term affects the confidence interval of a main effect?Plotting correlation coefficient against regression coefficient













2












$begingroup$


I am interested in looking at the relationship between plant productivity, temperature change and plant biomass change.



I have run a linear model in R using the below equation for this with plant productivity as an interaction term.



Plant biomass change = temperature change * plant productivity



The interaction is statistically significant (p-value = <0.01). I have plotted the estimated coefficient for temperature change from model above against the plant biomass figures and wanted to check I'm interpreting it right!



enter image description here



I think (hope) the plot tells me how the effect of temperature on biomass change changes as productivity changes.



The graph shows me the temperature coefficient becomes less negative as biomass increases. I interpret this to mean that temperature has a negative effect on the biomass change in plants with lower productivity.



Is my interpretation correct?










share|cite|improve this question









$endgroup$
















    2












    $begingroup$


    I am interested in looking at the relationship between plant productivity, temperature change and plant biomass change.



    I have run a linear model in R using the below equation for this with plant productivity as an interaction term.



    Plant biomass change = temperature change * plant productivity



    The interaction is statistically significant (p-value = <0.01). I have plotted the estimated coefficient for temperature change from model above against the plant biomass figures and wanted to check I'm interpreting it right!



    enter image description here



    I think (hope) the plot tells me how the effect of temperature on biomass change changes as productivity changes.



    The graph shows me the temperature coefficient becomes less negative as biomass increases. I interpret this to mean that temperature has a negative effect on the biomass change in plants with lower productivity.



    Is my interpretation correct?










    share|cite|improve this question









    $endgroup$














      2












      2








      2





      $begingroup$


      I am interested in looking at the relationship between plant productivity, temperature change and plant biomass change.



      I have run a linear model in R using the below equation for this with plant productivity as an interaction term.



      Plant biomass change = temperature change * plant productivity



      The interaction is statistically significant (p-value = <0.01). I have plotted the estimated coefficient for temperature change from model above against the plant biomass figures and wanted to check I'm interpreting it right!



      enter image description here



      I think (hope) the plot tells me how the effect of temperature on biomass change changes as productivity changes.



      The graph shows me the temperature coefficient becomes less negative as biomass increases. I interpret this to mean that temperature has a negative effect on the biomass change in plants with lower productivity.



      Is my interpretation correct?










      share|cite|improve this question









      $endgroup$




      I am interested in looking at the relationship between plant productivity, temperature change and plant biomass change.



      I have run a linear model in R using the below equation for this with plant productivity as an interaction term.



      Plant biomass change = temperature change * plant productivity



      The interaction is statistically significant (p-value = <0.01). I have plotted the estimated coefficient for temperature change from model above against the plant biomass figures and wanted to check I'm interpreting it right!



      enter image description here



      I think (hope) the plot tells me how the effect of temperature on biomass change changes as productivity changes.



      The graph shows me the temperature coefficient becomes less negative as biomass increases. I interpret this to mean that temperature has a negative effect on the biomass change in plants with lower productivity.



      Is my interpretation correct?







      r regression interaction






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked 3 hours ago









      Clare PClare P

      161




      161




















          2 Answers
          2






          active

          oldest

          votes


















          2












          $begingroup$

          That interpretation seems correct and that's an interesting way to graph it.



          What I usually do is have one IV on the x axis, the DV on the y axis and several lines for the other IV. Then I make the same plot with the IVs switched. That might be more interpretable.






          share|cite|improve this answer









          $endgroup$




















            1












            $begingroup$

            Not quite sure I follow your argument. If both predictor variables in your model are assumed continuous, then the model summary should report an estimated intercept (b0), an estimated coefficient for temperature change (b1), an estimated coefficient for plant productivity (b2) and an estimated coefficient for the interaction between temperature change and plant productivity (b3). The summary of the model output will report these values in the column titled Estimate - since I don't know what they are, I called them b0, b1, b2 and b3. Thus, the expected (or average) plant biomass change can be expressed as:



            Expected plant biomass change = b0 + b1*(temperature change) + b2*(plant productivity) + 
            b3*(temperature change)*(plant productivity).


            Because the model includes an interaction term, the effect of plant productivity on expected plant biomass change actually depends on temperature change. You can see this by re-arranging the above equation:



            Expected plant biomass change = [b0 + b1*(temperature change)] + [b2 + b3*(temperature change)]*(plant productivity).


            The intercept and slopes describing the relationship between plant productivity are given by:



            Intercept: [b0 + b1*(temperature change)] 

            Slope: [b2 + b3*(temperature change)]


            For example, if the temperature change is zero degrees (Celsius?), then:



            Expected plant biomass change = b0 + (b2 + b3)*(plant productivity).


            As Peter suggested, you can choose several representative values for temperature change and then plot the corresponding lines obtained by substituting those representative values in the expressions of the above Intercept and Slope. Those lines would describe how the expected plant biomass change varies as a function of plant productivity.



            To decide which representative values of temperature change to consider, you can plot the distribution of temperature changes observed in your study. If that distribution looks approximately normal, you can choose the average temperature change (m), as well as m - sd and m + sd, say, where sd is the standard deviation of that distribution. If the distribution is unimodal but skewed, you could replace m with the median and sd with the interquartile range of the distribution.



            Plotting lines with different intercepts and slopes would allow you to see how the effect of plant productivity on expected plant biomass change depends on particular, representative values of temperature change. It's possible that some slopes will be positive, while others will be negative. In that case, you can note that the effect changes direction, etc.



            Addendum:



            If I understand @gung correctly, I think what you did was to re-express the first equation I wrote like so:



            Expected plant biomass change = [b0 + b2*(plant productivity)] +
            [b1 + b3*(plant productivity)]*(temperature change)



            and then plot b1 + b3*(plant productivity) versus productivity to see how the rate of change in expected plant biomass change varies as a function of plant productivity. What is not clear to me though is how you computed the confidence band around b1 + b3*(plant productivity)? Did you compute the standard error (SE) of b1 + b3*(plant productivity) and then computed pointwise confidence bands via the formula b1 + b3*(plant productivity) +/- 1.96 SE? (The SE should take into account the correlation between b1 and b3). Or perhaps you used a critical value from a t-distribution instead of 1.96, with degrees of freedom given by the residual degrees of freedom?






            share|cite|improve this answer











            $endgroup$








            • 1




              $begingroup$
              I interpret the OP's plot as follows: Each point on that line is the slope on the simple effect of temperature at the level of productivity specified on the x-axis.
              $endgroup$
              – gung
              37 mins ago










            • $begingroup$
              @gung: Does my Addendum to the above capture what you think the OP's plot is showing? The OP stated that the coefficient plotted becomes more negative as biomass increases - but it should become more negative as plant productivity increases? That statement threw me off regarding what was actually being plotted.
              $endgroup$
              – Isabella Ghement
              16 mins ago






            • 1




              $begingroup$
              Yes. Confidence intervals for the slope of a simple effect can be computed at any point by the square root of the sum of the variances and 2*Cov(b1, b3), but I don't think that would address the simultaneity.
              $endgroup$
              – gung
              5 mins ago










            Your Answer





            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "65"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f396477%2finterpretation-of-linear-regression-interaction-term-plot%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2












            $begingroup$

            That interpretation seems correct and that's an interesting way to graph it.



            What I usually do is have one IV on the x axis, the DV on the y axis and several lines for the other IV. Then I make the same plot with the IVs switched. That might be more interpretable.






            share|cite|improve this answer









            $endgroup$

















              2












              $begingroup$

              That interpretation seems correct and that's an interesting way to graph it.



              What I usually do is have one IV on the x axis, the DV on the y axis and several lines for the other IV. Then I make the same plot with the IVs switched. That might be more interpretable.






              share|cite|improve this answer









              $endgroup$















                2












                2








                2





                $begingroup$

                That interpretation seems correct and that's an interesting way to graph it.



                What I usually do is have one IV on the x axis, the DV on the y axis and several lines for the other IV. Then I make the same plot with the IVs switched. That might be more interpretable.






                share|cite|improve this answer









                $endgroup$



                That interpretation seems correct and that's an interesting way to graph it.



                What I usually do is have one IV on the x axis, the DV on the y axis and several lines for the other IV. Then I make the same plot with the IVs switched. That might be more interpretable.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered 3 hours ago









                Peter FlomPeter Flom

                76k11107209




                76k11107209























                    1












                    $begingroup$

                    Not quite sure I follow your argument. If both predictor variables in your model are assumed continuous, then the model summary should report an estimated intercept (b0), an estimated coefficient for temperature change (b1), an estimated coefficient for plant productivity (b2) and an estimated coefficient for the interaction between temperature change and plant productivity (b3). The summary of the model output will report these values in the column titled Estimate - since I don't know what they are, I called them b0, b1, b2 and b3. Thus, the expected (or average) plant biomass change can be expressed as:



                    Expected plant biomass change = b0 + b1*(temperature change) + b2*(plant productivity) + 
                    b3*(temperature change)*(plant productivity).


                    Because the model includes an interaction term, the effect of plant productivity on expected plant biomass change actually depends on temperature change. You can see this by re-arranging the above equation:



                    Expected plant biomass change = [b0 + b1*(temperature change)] + [b2 + b3*(temperature change)]*(plant productivity).


                    The intercept and slopes describing the relationship between plant productivity are given by:



                    Intercept: [b0 + b1*(temperature change)] 

                    Slope: [b2 + b3*(temperature change)]


                    For example, if the temperature change is zero degrees (Celsius?), then:



                    Expected plant biomass change = b0 + (b2 + b3)*(plant productivity).


                    As Peter suggested, you can choose several representative values for temperature change and then plot the corresponding lines obtained by substituting those representative values in the expressions of the above Intercept and Slope. Those lines would describe how the expected plant biomass change varies as a function of plant productivity.



                    To decide which representative values of temperature change to consider, you can plot the distribution of temperature changes observed in your study. If that distribution looks approximately normal, you can choose the average temperature change (m), as well as m - sd and m + sd, say, where sd is the standard deviation of that distribution. If the distribution is unimodal but skewed, you could replace m with the median and sd with the interquartile range of the distribution.



                    Plotting lines with different intercepts and slopes would allow you to see how the effect of plant productivity on expected plant biomass change depends on particular, representative values of temperature change. It's possible that some slopes will be positive, while others will be negative. In that case, you can note that the effect changes direction, etc.



                    Addendum:



                    If I understand @gung correctly, I think what you did was to re-express the first equation I wrote like so:



                    Expected plant biomass change = [b0 + b2*(plant productivity)] +
                    [b1 + b3*(plant productivity)]*(temperature change)



                    and then plot b1 + b3*(plant productivity) versus productivity to see how the rate of change in expected plant biomass change varies as a function of plant productivity. What is not clear to me though is how you computed the confidence band around b1 + b3*(plant productivity)? Did you compute the standard error (SE) of b1 + b3*(plant productivity) and then computed pointwise confidence bands via the formula b1 + b3*(plant productivity) +/- 1.96 SE? (The SE should take into account the correlation between b1 and b3). Or perhaps you used a critical value from a t-distribution instead of 1.96, with degrees of freedom given by the residual degrees of freedom?






                    share|cite|improve this answer











                    $endgroup$








                    • 1




                      $begingroup$
                      I interpret the OP's plot as follows: Each point on that line is the slope on the simple effect of temperature at the level of productivity specified on the x-axis.
                      $endgroup$
                      – gung
                      37 mins ago










                    • $begingroup$
                      @gung: Does my Addendum to the above capture what you think the OP's plot is showing? The OP stated that the coefficient plotted becomes more negative as biomass increases - but it should become more negative as plant productivity increases? That statement threw me off regarding what was actually being plotted.
                      $endgroup$
                      – Isabella Ghement
                      16 mins ago






                    • 1




                      $begingroup$
                      Yes. Confidence intervals for the slope of a simple effect can be computed at any point by the square root of the sum of the variances and 2*Cov(b1, b3), but I don't think that would address the simultaneity.
                      $endgroup$
                      – gung
                      5 mins ago















                    1












                    $begingroup$

                    Not quite sure I follow your argument. If both predictor variables in your model are assumed continuous, then the model summary should report an estimated intercept (b0), an estimated coefficient for temperature change (b1), an estimated coefficient for plant productivity (b2) and an estimated coefficient for the interaction between temperature change and plant productivity (b3). The summary of the model output will report these values in the column titled Estimate - since I don't know what they are, I called them b0, b1, b2 and b3. Thus, the expected (or average) plant biomass change can be expressed as:



                    Expected plant biomass change = b0 + b1*(temperature change) + b2*(plant productivity) + 
                    b3*(temperature change)*(plant productivity).


                    Because the model includes an interaction term, the effect of plant productivity on expected plant biomass change actually depends on temperature change. You can see this by re-arranging the above equation:



                    Expected plant biomass change = [b0 + b1*(temperature change)] + [b2 + b3*(temperature change)]*(plant productivity).


                    The intercept and slopes describing the relationship between plant productivity are given by:



                    Intercept: [b0 + b1*(temperature change)] 

                    Slope: [b2 + b3*(temperature change)]


                    For example, if the temperature change is zero degrees (Celsius?), then:



                    Expected plant biomass change = b0 + (b2 + b3)*(plant productivity).


                    As Peter suggested, you can choose several representative values for temperature change and then plot the corresponding lines obtained by substituting those representative values in the expressions of the above Intercept and Slope. Those lines would describe how the expected plant biomass change varies as a function of plant productivity.



                    To decide which representative values of temperature change to consider, you can plot the distribution of temperature changes observed in your study. If that distribution looks approximately normal, you can choose the average temperature change (m), as well as m - sd and m + sd, say, where sd is the standard deviation of that distribution. If the distribution is unimodal but skewed, you could replace m with the median and sd with the interquartile range of the distribution.



                    Plotting lines with different intercepts and slopes would allow you to see how the effect of plant productivity on expected plant biomass change depends on particular, representative values of temperature change. It's possible that some slopes will be positive, while others will be negative. In that case, you can note that the effect changes direction, etc.



                    Addendum:



                    If I understand @gung correctly, I think what you did was to re-express the first equation I wrote like so:



                    Expected plant biomass change = [b0 + b2*(plant productivity)] +
                    [b1 + b3*(plant productivity)]*(temperature change)



                    and then plot b1 + b3*(plant productivity) versus productivity to see how the rate of change in expected plant biomass change varies as a function of plant productivity. What is not clear to me though is how you computed the confidence band around b1 + b3*(plant productivity)? Did you compute the standard error (SE) of b1 + b3*(plant productivity) and then computed pointwise confidence bands via the formula b1 + b3*(plant productivity) +/- 1.96 SE? (The SE should take into account the correlation between b1 and b3). Or perhaps you used a critical value from a t-distribution instead of 1.96, with degrees of freedom given by the residual degrees of freedom?






                    share|cite|improve this answer











                    $endgroup$








                    • 1




                      $begingroup$
                      I interpret the OP's plot as follows: Each point on that line is the slope on the simple effect of temperature at the level of productivity specified on the x-axis.
                      $endgroup$
                      – gung
                      37 mins ago










                    • $begingroup$
                      @gung: Does my Addendum to the above capture what you think the OP's plot is showing? The OP stated that the coefficient plotted becomes more negative as biomass increases - but it should become more negative as plant productivity increases? That statement threw me off regarding what was actually being plotted.
                      $endgroup$
                      – Isabella Ghement
                      16 mins ago






                    • 1




                      $begingroup$
                      Yes. Confidence intervals for the slope of a simple effect can be computed at any point by the square root of the sum of the variances and 2*Cov(b1, b3), but I don't think that would address the simultaneity.
                      $endgroup$
                      – gung
                      5 mins ago













                    1












                    1








                    1





                    $begingroup$

                    Not quite sure I follow your argument. If both predictor variables in your model are assumed continuous, then the model summary should report an estimated intercept (b0), an estimated coefficient for temperature change (b1), an estimated coefficient for plant productivity (b2) and an estimated coefficient for the interaction between temperature change and plant productivity (b3). The summary of the model output will report these values in the column titled Estimate - since I don't know what they are, I called them b0, b1, b2 and b3. Thus, the expected (or average) plant biomass change can be expressed as:



                    Expected plant biomass change = b0 + b1*(temperature change) + b2*(plant productivity) + 
                    b3*(temperature change)*(plant productivity).


                    Because the model includes an interaction term, the effect of plant productivity on expected plant biomass change actually depends on temperature change. You can see this by re-arranging the above equation:



                    Expected plant biomass change = [b0 + b1*(temperature change)] + [b2 + b3*(temperature change)]*(plant productivity).


                    The intercept and slopes describing the relationship between plant productivity are given by:



                    Intercept: [b0 + b1*(temperature change)] 

                    Slope: [b2 + b3*(temperature change)]


                    For example, if the temperature change is zero degrees (Celsius?), then:



                    Expected plant biomass change = b0 + (b2 + b3)*(plant productivity).


                    As Peter suggested, you can choose several representative values for temperature change and then plot the corresponding lines obtained by substituting those representative values in the expressions of the above Intercept and Slope. Those lines would describe how the expected plant biomass change varies as a function of plant productivity.



                    To decide which representative values of temperature change to consider, you can plot the distribution of temperature changes observed in your study. If that distribution looks approximately normal, you can choose the average temperature change (m), as well as m - sd and m + sd, say, where sd is the standard deviation of that distribution. If the distribution is unimodal but skewed, you could replace m with the median and sd with the interquartile range of the distribution.



                    Plotting lines with different intercepts and slopes would allow you to see how the effect of plant productivity on expected plant biomass change depends on particular, representative values of temperature change. It's possible that some slopes will be positive, while others will be negative. In that case, you can note that the effect changes direction, etc.



                    Addendum:



                    If I understand @gung correctly, I think what you did was to re-express the first equation I wrote like so:



                    Expected plant biomass change = [b0 + b2*(plant productivity)] +
                    [b1 + b3*(plant productivity)]*(temperature change)



                    and then plot b1 + b3*(plant productivity) versus productivity to see how the rate of change in expected plant biomass change varies as a function of plant productivity. What is not clear to me though is how you computed the confidence band around b1 + b3*(plant productivity)? Did you compute the standard error (SE) of b1 + b3*(plant productivity) and then computed pointwise confidence bands via the formula b1 + b3*(plant productivity) +/- 1.96 SE? (The SE should take into account the correlation between b1 and b3). Or perhaps you used a critical value from a t-distribution instead of 1.96, with degrees of freedom given by the residual degrees of freedom?






                    share|cite|improve this answer











                    $endgroup$



                    Not quite sure I follow your argument. If both predictor variables in your model are assumed continuous, then the model summary should report an estimated intercept (b0), an estimated coefficient for temperature change (b1), an estimated coefficient for plant productivity (b2) and an estimated coefficient for the interaction between temperature change and plant productivity (b3). The summary of the model output will report these values in the column titled Estimate - since I don't know what they are, I called them b0, b1, b2 and b3. Thus, the expected (or average) plant biomass change can be expressed as:



                    Expected plant biomass change = b0 + b1*(temperature change) + b2*(plant productivity) + 
                    b3*(temperature change)*(plant productivity).


                    Because the model includes an interaction term, the effect of plant productivity on expected plant biomass change actually depends on temperature change. You can see this by re-arranging the above equation:



                    Expected plant biomass change = [b0 + b1*(temperature change)] + [b2 + b3*(temperature change)]*(plant productivity).


                    The intercept and slopes describing the relationship between plant productivity are given by:



                    Intercept: [b0 + b1*(temperature change)] 

                    Slope: [b2 + b3*(temperature change)]


                    For example, if the temperature change is zero degrees (Celsius?), then:



                    Expected plant biomass change = b0 + (b2 + b3)*(plant productivity).


                    As Peter suggested, you can choose several representative values for temperature change and then plot the corresponding lines obtained by substituting those representative values in the expressions of the above Intercept and Slope. Those lines would describe how the expected plant biomass change varies as a function of plant productivity.



                    To decide which representative values of temperature change to consider, you can plot the distribution of temperature changes observed in your study. If that distribution looks approximately normal, you can choose the average temperature change (m), as well as m - sd and m + sd, say, where sd is the standard deviation of that distribution. If the distribution is unimodal but skewed, you could replace m with the median and sd with the interquartile range of the distribution.



                    Plotting lines with different intercepts and slopes would allow you to see how the effect of plant productivity on expected plant biomass change depends on particular, representative values of temperature change. It's possible that some slopes will be positive, while others will be negative. In that case, you can note that the effect changes direction, etc.



                    Addendum:



                    If I understand @gung correctly, I think what you did was to re-express the first equation I wrote like so:



                    Expected plant biomass change = [b0 + b2*(plant productivity)] +
                    [b1 + b3*(plant productivity)]*(temperature change)



                    and then plot b1 + b3*(plant productivity) versus productivity to see how the rate of change in expected plant biomass change varies as a function of plant productivity. What is not clear to me though is how you computed the confidence band around b1 + b3*(plant productivity)? Did you compute the standard error (SE) of b1 + b3*(plant productivity) and then computed pointwise confidence bands via the formula b1 + b3*(plant productivity) +/- 1.96 SE? (The SE should take into account the correlation between b1 and b3). Or perhaps you used a critical value from a t-distribution instead of 1.96, with degrees of freedom given by the residual degrees of freedom?







                    share|cite|improve this answer














                    share|cite|improve this answer



                    share|cite|improve this answer








                    edited 14 mins ago

























                    answered 44 mins ago









                    Isabella GhementIsabella Ghement

                    7,151320




                    7,151320







                    • 1




                      $begingroup$
                      I interpret the OP's plot as follows: Each point on that line is the slope on the simple effect of temperature at the level of productivity specified on the x-axis.
                      $endgroup$
                      – gung
                      37 mins ago










                    • $begingroup$
                      @gung: Does my Addendum to the above capture what you think the OP's plot is showing? The OP stated that the coefficient plotted becomes more negative as biomass increases - but it should become more negative as plant productivity increases? That statement threw me off regarding what was actually being plotted.
                      $endgroup$
                      – Isabella Ghement
                      16 mins ago






                    • 1




                      $begingroup$
                      Yes. Confidence intervals for the slope of a simple effect can be computed at any point by the square root of the sum of the variances and 2*Cov(b1, b3), but I don't think that would address the simultaneity.
                      $endgroup$
                      – gung
                      5 mins ago












                    • 1




                      $begingroup$
                      I interpret the OP's plot as follows: Each point on that line is the slope on the simple effect of temperature at the level of productivity specified on the x-axis.
                      $endgroup$
                      – gung
                      37 mins ago










                    • $begingroup$
                      @gung: Does my Addendum to the above capture what you think the OP's plot is showing? The OP stated that the coefficient plotted becomes more negative as biomass increases - but it should become more negative as plant productivity increases? That statement threw me off regarding what was actually being plotted.
                      $endgroup$
                      – Isabella Ghement
                      16 mins ago






                    • 1




                      $begingroup$
                      Yes. Confidence intervals for the slope of a simple effect can be computed at any point by the square root of the sum of the variances and 2*Cov(b1, b3), but I don't think that would address the simultaneity.
                      $endgroup$
                      – gung
                      5 mins ago







                    1




                    1




                    $begingroup$
                    I interpret the OP's plot as follows: Each point on that line is the slope on the simple effect of temperature at the level of productivity specified on the x-axis.
                    $endgroup$
                    – gung
                    37 mins ago




                    $begingroup$
                    I interpret the OP's plot as follows: Each point on that line is the slope on the simple effect of temperature at the level of productivity specified on the x-axis.
                    $endgroup$
                    – gung
                    37 mins ago












                    $begingroup$
                    @gung: Does my Addendum to the above capture what you think the OP's plot is showing? The OP stated that the coefficient plotted becomes more negative as biomass increases - but it should become more negative as plant productivity increases? That statement threw me off regarding what was actually being plotted.
                    $endgroup$
                    – Isabella Ghement
                    16 mins ago




                    $begingroup$
                    @gung: Does my Addendum to the above capture what you think the OP's plot is showing? The OP stated that the coefficient plotted becomes more negative as biomass increases - but it should become more negative as plant productivity increases? That statement threw me off regarding what was actually being plotted.
                    $endgroup$
                    – Isabella Ghement
                    16 mins ago




                    1




                    1




                    $begingroup$
                    Yes. Confidence intervals for the slope of a simple effect can be computed at any point by the square root of the sum of the variances and 2*Cov(b1, b3), but I don't think that would address the simultaneity.
                    $endgroup$
                    – gung
                    5 mins ago




                    $begingroup$
                    Yes. Confidence intervals for the slope of a simple effect can be computed at any point by the square root of the sum of the variances and 2*Cov(b1, b3), but I don't think that would address the simultaneity.
                    $endgroup$
                    – gung
                    5 mins ago

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Cross Validated!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f396477%2finterpretation-of-linear-regression-interaction-term-plot%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Magento 2 - Add success message with knockout Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

                    Fil:Tokke komm.svg

                    Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?