Multiple linear regression - explained with two simple examples

Поделиться
HTML-код
  • Опубликовано: 3 сен 2021
  • See all my videos at www.tilestats.com/
    In this video, we will see how multiple linear regression is computed. The focus is to understand how to interpret the coefficients in models with both categorical and numeric variables, and models with interaction terms.

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

  • @helenadesoba8894
    @helenadesoba8894 2 года назад +9

    Alas! I found a video I could relate with well when it comes to multiple linear regression. The examples you used gave more clarity. Thanks so much

  • @joyceks1882
    @joyceks1882 2 года назад +5

    i've been looking for this example! so clear and well explained. thank you!!!

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

    Best channel❤ but underrated ..
    Simple and intuitive explanation of complex concepts..

  • @tedransom8087
    @tedransom8087 2 года назад +2

    Thank you! I finally understood how to interpret the coefficients in a multiple linear regression model.

  • @hopelesssuprem1867
    @hopelesssuprem1867 Год назад +1

    thank u for a good explanation

  • @fazlfazl2346
    @fazlfazl2346 11 месяцев назад

    Great explanation for interaction term. Thank you.
    One question though. Here you explained the meaning of interaction between a continuous variable and a categoric variable. How can we interpret the interaction when both the terms in the interaction are Continuous variables and when both the terms are Categoric variables?

  • @dfdfgdfkih
    @dfdfgdfkih 2 года назад

    Well explained. Thanks a lot!

  • @nordanvinden5351
    @nordanvinden5351 9 месяцев назад +1

    Very good.

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

    Thank you

  • @MarinaOrgino
    @MarinaOrgino 3 месяца назад +1

    Can I ask... Where did you get that 30.57 and 3.55?

    • @tilestats
      @tilestats  3 месяца назад

      Have a look at this video
      ruclips.net/video/taPvVyJVc_A/видео.html

  • @tomgu1893
    @tomgu1893 8 месяцев назад

    if I had a category such as car dealer which has more than just two options (so I can't just put 0 and 1) how would I go about incorporating that?

    • @tomgu1893
      @tomgu1893 8 месяцев назад

      say we had dealer a, dealer b and dealer c, where the difference is noticeable between them

  • @OMARRAFIQUE-oz5td
    @OMARRAFIQUE-oz5td 11 месяцев назад

    Thank you for this. What if we code Gender as 'M' and 'F' and not 0 and 1. Then at 10.50, it will be 12.9xM and not 12.9x1. Then how can we include 12.9xM in the intercept? What I mean is that 0 and 1 in this case are factors, can we multiply 12.9 with a factor (treating factor as a numeric)?
    Also we can choose any other number instead of 0 and 1 e.g. 3 and 9. Then in this case the intercepts will be different. So, this seems arbitrary as the Gender intercepts depend on the way we choose the numbers?

    • @tilestats
      @tilestats  11 месяцев назад

      You should always use 0 and 1 to recode a categorical variable because they represent absent or present. However, if you use a software, it will do this automatically.

  • @khaingzar3136
    @khaingzar3136 2 месяца назад

    Which software is used to get the equation for model
    Price = constant + Age.Coefficient + Mileage.Coefficient ?

    • @tilestats
      @tilestats  Месяц назад

      You have to create the equation on your own and then use the software to estimate the parameter values for the equation. I use R but you can use any other statistical software to get the same parameter values.

  • @fazlfazl2346
    @fazlfazl2346 11 месяцев назад

    This is a great video.
    Does this mean we are actually analyzing men and women differently as we get two different regression lines: one for men and one for women. How will this compare if we run the model stratified by Gender?

    • @tilestats
      @tilestats  11 месяцев назад

      Yes, men and women are predicted differently by the model because they have separate regression lines.

  • @MsJaguarundi
    @MsJaguarundi 20 дней назад

    Why do you change the example midway? You didn't explain how you calculated the equations.

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

    do you have the data to to solve the coefficients in your example ?

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

      At minute 2:18, 7:03 and 12:38 you have all the data to reproduce the results, including estimating the coefficients.

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

      I still can't get it where the data is where you calculate the b0 and b1 and b2

    • @tilestats
      @tilestats  Год назад +1

      I do not show how to calculate the coefficients by hand. I simply plug in the data in a statistical software to compute these. In this video:
      ruclips.net/video/taPvVyJVc_A/видео.html
      I show how to calculate parameters by hand, but only for simple linear regression. For multiple linear regression it is a bit more calculations and I currently do not have a video on that.

  • @zu1fuqar
    @zu1fuqar 2 года назад

    but how to cumpute coefficients in multiple regression?

    • @tilestats
      @tilestats  2 года назад

      Use a software, or if you must do this by hand I would recommend this page:
      www.statology.org/multiple-linear-regression-by-hand/
      I also have a video on OLS for simple linear regression:
      ruclips.net/video/taPvVyJVc_A/видео.html

  • @SantiagoValdezRoy
    @SantiagoValdezRoy 5 месяцев назад

    How is the code “0” or “1” determined? What if you had a third category? Would it be “2”? Only part that I didn’t follow fully.

    • @tilestats
      @tilestats  5 месяцев назад

      No, then you add an extra term in the equation. If term 1 = 0 and term 2 = 0 it will represent the baseline group(group 1) If term 1 = 1 and term 2 = 0 it will represent group 2, if term 1 = 0 and term 2 = 1, it will represent group 3.