Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • How to increase standard deviation by 1?

    Holding other variables constant, how do you know how much you need to increase 1 independent variable to increase the dependent variable by 1 standard deviation?

  • #2
    You could standardize the dependent variable, e.g.

    Code:
    egen dv_std = std(dv)
    then re-run your regression, and the betas you get now have the interpretation that a one unit change in the IV increases the DV by beta standard deviations. Otherwise, you could obtain the SD of the DV from summary statistics, and do the math manually.
    Be aware that it can be very hard to answer a question without sample data. You can use the dataex command for this. Type help dataex at the command line.

    When presenting code or results, please use the code delimiters format them. Use the # button on the formatting toolbar, between the " (double quote) and <> buttons.

    Comment

    Working...
    X