Это видео недоступно.
Сожалеем об этом.

Multiple Linear Regression using python ( Regression Analysis )

Поделиться
HTML-код
  • Опубликовано: 9 апр 2023
  • ​‪@MLwithme1617‬ Multi Linear Regression with python | Machine Learning Lectures | what is feature engineering? how to do feature selection ?
    Topics covered:
    TIMESTAMPS
    01:45 Data Collection
    02:17 Exploratory Data Analysis (EDA)
    06:40 Distribution of data
    08:27 Feature Engineering
    10:20 Feature selection
    03:59 Model Building and evaluation
    data : www.kaggle.com/datasets/miric...
    code : github.com/mlengineer007/MLR/...
    Twitter: / mlwithme1617
    Instagram: machinelearning...
    Install python : www.python.org/
    Intall Jupyter Notebooks: jupyter.org/install
    Learn Python Basics : www.w3schools.com/python/defa...
    statistics, regression, probability, t statistics,z scores
    #machinelearning #datascience #linearregression #simplelinearregression #multilinearregression #python #pythonprogramming #MSE #meansquarederror #sklearn #pandas #regression #regressionanalysis #chatgpt #basics #beginner

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

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

    Hi Sir, for the region can we use get_dummies instead of the ordinal way(0,1,2,3)? Thank you.

    • @MLwithme1617
      @MLwithme1617  Год назад +2

      Region is actually considered as nominal because regions don’t really have any ranks. But using get dummies we have chances to end-up with multicollinearity. Instead i converted them to 0,1,2,3. You can try using dummies and check the correlation matrix to see if there is any multicollinearity.

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

      @@MLwithme1617 thanks Sir, I will try it. Thanks for the video, it is great!

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

      @@MLwithme1617 I think we can use dummies method and remove any one column that will work right?

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

    👍

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

    Hi Sir, can you do a video tutorial on how can you improve the r2 score? Thank you

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

    How do we calculate Mean Square Error (MSE) for this. after all the calculation?

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

      Use MSE from sklearn, or for better understanding the math you can have a look at my explanation video on MSE.