Linear Regression in Python Jupyter Notebook - Part 2

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

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

  • @YiannisPi
    @YiannisPi  5 лет назад +5

    Hello everyone! Did you liked the video? Did you find the explanations clear enough? What should I do next? Let me know in the comments below!

    • @sarvanvik1835
      @sarvanvik1835 4 года назад +1

      next topic about neural networks

    • @sarvanvik1835
      @sarvanvik1835 4 года назад +2

      please make a continuation play list for machine learning and deep learning so that it will be easy for the beginners like me

    • @vishnuvardhan8827
      @vishnuvardhan8827 4 года назад

      sir please continue your playlist

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

    I chose you as my tutor Master on machine learning

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

    Dear Sir! I've never seen such tutorials. Simply the best. Congratulation my Professor!

  • @onlymusic2005
    @onlymusic2005 3 года назад

    You ask if I have liked it... I admire it... clear explanations, lovely English... truly thanks...

  • @nomadtraveller5863
    @nomadtraveller5863 3 года назад +1

    Best tutorial i found in youtube so far for beginners like me to get started on linear regression.. keep up the good work

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

    I wonder why yo have few subscribers. You deserve a million views. I will promote this channel

  • @trololollolololololl
    @trololollolololololl 4 года назад +2

    Truly great video, you have the best intro to machine learning I found, I wish u the best, especially more views and subs

    • @YiannisPi
      @YiannisPi  4 года назад

      Thank you so much 👍

  • @dudee420
    @dudee420 5 лет назад +3

    Nice . Please continue making new machine learning videos

  • @ayeshasuribas2460
    @ayeshasuribas2460 4 года назад

    Thank you for a comprehensive explanation, truly well done Yiannis!

    • @YiannisPi
      @YiannisPi  4 года назад

      Glad it was helpful!

  • @jongcheulkim7284
    @jongcheulkim7284 3 года назад

    Thank you, sir. This is great. Your approach is really helpful because it helps me understand a full scope of concepts and techniques to apply machine learning to real life cases. Way to go!! Thank you.

  • @andreasp.189
    @andreasp.189 5 лет назад +1

    Very informative tutorial!

  • @pursueweazmarecoverall486
    @pursueweazmarecoverall486 4 года назад

    In 12:44, what are the unique values?

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

    Nice stuff. Text was a bit small on screen, but a lesser detail;

  • @andreamarkos
    @andreamarkos 4 года назад

    Good stuff, thank you. So next: weighted regression, total regression and partial least squares rergression

    • @YiannisPi
      @YiannisPi  4 года назад

      Thanks Andrea! Good suggestions!

  • @susannegelarehamiri4497
    @susannegelarehamiri4497 4 года назад

    Amazing videos! I just finished the Seaborn tutorials and continuing with the rest. Do you have anything on how to properly perform a groupby() function too? I am trying to create a groupby within a groupby (more basic stuff for beginners).

    • @YiannisPi
      @YiannisPi  4 года назад +1

      Hey Susan, check my pandas tutorials where I go through the groupby function. Thanks!

  • @josephmart7528
    @josephmart7528 3 года назад

    Hi @Data 360 YP
    I am loving your tutorials
    I guess you did not take care of dummy variable trap here
    I supposed it look like this
    raw_data_dummy = pd.get_dummies(raw_data[['Promo', 'Day_Name']], drop_first=True)
    new_raw_data = pd.concat([raw_data, raw_data_dummy], axis=1)

  • @brittnyfreeman3650
    @brittnyfreeman3650 4 года назад

    Yiannis, I have a question regarding how to deal with outliers in a data set.
    I recently made box plots of the features in my data set and noticed that I had instances that were considered to be outliers because they were beyond the range of the quartiles. I read online that a good way to deal with outliers is to replace the outlier values with the median value of the column. However, in one of your videos (don't remember which one,) you said that sometimes leaving the outliers in your training data set is ok because it helps to prevent you from over fitting your data. How do you usually go about handling outliers when you run across them?

    • @YiannisPi
      @YiannisPi  4 года назад

      Hey Brittny. First, investigate if those points are actually outliers or not. For example, if you are comparing store sales and you have 1 store that looks to be way off, go and investigate which store is that and why. Maybe it's a mistake or maybe it's a store in the most popular area. Then you decide if you want to keep or remove

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

    if you want to represent promotion by color use this line here inside the plot
    palette={"No Promo": "black", "Promotion Red": "red", "Promotion Blue":'blue'}