Coarsened Exact Matching and Entropy Balancing (The Effect, Videos on Causality, Ep 39)

Поделиться
HTML-код
  • Опубликовано: 9 сен 2024

Комментарии • 14

  • @Samantha-mf2io
    @Samantha-mf2io 11 месяцев назад +1

    You just saved me at least 2 hours of after hours reading - so concise and helpful!!

  • @luisan.4706
    @luisan.4706 Год назад

    Wow! This is the best series on matching techniques I've seen! Thank you!

  • @a_imalik
    @a_imalik 2 года назад +1

    Entropy balancing is such an interesting idea! Thank you for a great explanation, Nick 😊

  • @jamescutler428
    @jamescutler428 Год назад

    Wow this video gave a really helpful explanation of entropy balancing (and coarsened exact matching as well)! Thank you!

  • @AlexVoce-ck2ky
    @AlexVoce-ck2ky 5 месяцев назад

    Thank you for the video, and the book!! Very helpful :)

  • @cristobaljorquera9756
    @cristobaljorquera9756 Год назад

    Very helpful video, greetings from Chile!

  • @nickargyres1999
    @nickargyres1999 10 месяцев назад

    Very clear explanation!

  • @NickGhale
    @NickGhale Год назад

    Good explanation

  • @cheriseregier4729
    @cheriseregier4729 4 месяца назад

    Thank you. Do you know of an informative resource that lays out the R code for CEM?

    • @NickHuntingtonKlein
      @NickHuntingtonKlein  4 месяца назад

      Yep, the whole series is about my book, which contains code for most of the topics, including CEM. See near the end of this section of Chapter 14,. www.theeffectbook.net/ch-Matching.html

    • @cheriseregier4729
      @cheriseregier4729 4 месяца назад

      @@NickHuntingtonKlein Wonderful, thank you again.

    • @cheriseregier4729
      @cheriseregier4729 4 месяца назад

      @@NickHuntingtonKlein can you tell me what the 'w' in this code from the chapter you linked above represents? I am having trouble figuring out how to incorporate the CEM data into my regression analysis. In other words, once I have run the cem() code, what are the next steps? It looks like you re-weight your data based on CEM and then specify this weighting methodology in the regression?
      brcem %
      mutate(cem_weight = c$w)
      lm(responded~leg_black, data = brcem, weights = cem_weight).

    • @NickHuntingtonKlein
      @NickHuntingtonKlein  4 месяца назад +1

      @@cheriseregier4729 the w is the CEM weight. See further up the section to see how this is calculated.
      And yep, once you have the weight you can use it as a weight in your analysis to apply your CEM matching set/weights to any regression, means comparison, etc.

    • @cheriseregier4729
      @cheriseregier4729 4 месяца назад

      @@NickHuntingtonKlein Thank you🙏