Тёмный

Linear Regression in Python - Full Project for Beginners 

Alejandro AO - Software & Ai
Подписаться 43 тыс.
Просмотров 24 тыс.
50% 1

Опубликовано:

 

30 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 67   
@khimyang1831
@khimyang1831 7 месяцев назад
Wonderful video! I was able to follow along happily until the scatterplot command, for which I got the error, "TypeError: scatterplot() takes from 0 to 1 positional arguments but 2 were given". Had to change the command to sns.scatterplot(x=predictions, y=y_test). Everything else was perfect, and I learned a lot - THANK YOU!!!
@meggy5
@meggy5 5 месяцев назад
i got at that point too, thanks for the fix :))
@itstanjorepainting
@itstanjorepainting 2 месяца назад
Yeah me too then I searched and fixed it
@rodrigoribeiro8700
@rodrigoribeiro8700 Месяц назад
Thank you!
@menakodjaodo8176
@menakodjaodo8176 День назад
I've given you the 1000th thumbs up today, If I could I would have given you another 10000. You deserve more than that for your video really easy to follow and to undesrtand. I can wait to watch other videos of you.Thanks a lot👍
@muhdariz9264
@muhdariz9264 Год назад
You're really underrated dude, this video was very well made especially for beginners interested in the field. Thank you so much!
@alejandro_ao
@alejandro_ao Год назад
thank you!!
@ZiyiZhang-b8j
@ZiyiZhang-b8j Месяц назад
Hii, at the end of the prediction part, a problem occurs saying ValueError: Per-column arrays must each be 1-dimensional. Can somebody help me pls.
@David-cx3fc
@David-cx3fc Год назад
I have watched endless Regression videos. I graduated with a math degree a couple years ago, and my programming skills are beginner level. I've done Datacamp stuff, youtube guided projects, you name it. This is by far the most concise, easy to follow, welcoming, calming video I have ever watched explaining how to do a regression project. I appreciate the quick definitions along the way, that help the audience including myself, not feel stupid lol. And explaining every small step really helps. Also the big picture explanation of how leverage this code and automate it, was helpful. Very few if any, ever talks about that step. I'm trying to get crack into the tech world and land a data job. Just this one video has truly given me the confidence, to not feel overwhelmed and that its obtainable. Sorry for the lengthy response haha Please keep making videos man, you rock!!
@vishalvarakhedkar8816
@vishalvarakhedkar8816 5 месяцев назад
So wholesome! Thanks for helping me find the best video.
@InsightIndiaraviverma
@InsightIndiaraviverma Месяц назад
Excellent video. Please keep doing such videos more and more. Just one thing was missing in the video, I guess. Finally, how to check the model with some random values. Here is the code: # Creating a DataFrame with random data random_data = pd.DataFrame({ 'Avg. Session Length': [33.8], # Example value 'Time on App': [12.0], # Example value 'Time on Website': [34.4], # Example value 'Length of Membership': [5.4] # Example value }) # Make predictions prediction = lm.predict(random_data) print(f"Predicted Yearly Amount Spent: ${prediction[0]:.2f}")
@elahehkhazaei4855
@elahehkhazaei4855 13 дней назад
How can l download dataset from kaggle
@navid7467
@navid7467 Месяц назад
I'm following 36:40 in the video but when I try to execute sns.scatterplot(predictions, y_test) I get an error: Scatterplot() takes from 0 to 1 positional arguments but 2 were given. Any solutions? I am using seaborn version 0.12.2 Could that be the issue?
@majdomari4761
@majdomari4761 26 дней назад
try this (sns.scatterplot(x=pridictions,y= y_test))
@AmitKumar-ou3cg
@AmitKumar-ou3cg 2 месяца назад
This is really awesome, it helped me to understand linear regression concept , love the way you teach through projects.
@sasuke95014
@sasuke95014 Год назад
It is very helpful. Keep up with the great work!
@guyzilberblum
@guyzilberblum 19 дней назад
thank you its great
@shaneshshukla
@shaneshshukla 2 месяца назад
the video I wanted to find..amazing content..keep working great things will happen.
@alejandro_ao
@alejandro_ao 2 месяца назад
i appreciate it!
@PietroCalafiore
@PietroCalafiore 9 месяцев назад
Thank you for this lesson, Alejandro: it helped me tremendously. Have a nice day and great holidays.
@alejandro_ao
@alejandro_ao 8 месяцев назад
thank you! i'm glad to hear it helped. i hope you had great holidays :)
@AamirMohamedThahirAli
@AamirMohamedThahirAli Месяц назад
Wonderful tutorial! Learning with my dad, and we both enjoyed it :)
@alejandro_ao
@alejandro_ao Месяц назад
glad to hear this :)
@davidcardenas9751
@davidcardenas9751 2 месяца назад
After watching a lot of videos for Linear Regression your video is by far THE BEST!!! thanks. Just one thing couldn't use scatterplot got a 'scatterplot() takes from 0 to 1 positional arguments but 2 were given' error.
@sakshamsharma708
@sakshamsharma708 2 месяца назад
yeah, I suggest you use the following instead : plt.scatter(predictions, y_test, alpha=0.5) it does the same thing, hope it helps
@abdulmughees9318
@abdulmughees9318 2 месяца назад
Put x= and y=. and it works
@IkerSanchez-kn5kf
@IkerSanchez-kn5kf 3 месяца назад
Hey. Nice video. There's just a thing I'm not sure about. Shouldn't normality, homoscedasticity and tests regarding residuals be done over y_train - predict, where predict is based on the training set? You verified the normality assumption on residuals of y_test - "predict_test". Which one is it?
@applepeel1662
@applepeel1662 Год назад
Amazing! Please keep doing these beginner friendly projects, theyre incredibly useful
@aether7186
@aether7186 Месяц назад
Absolutely amazing. I am in engineering undergrad and required exactly what this video offered. Everything is perfect, keep up the good work. Cheers🍹
@AkashS-zt1ue
@AkashS-zt1ue 14 дней назад
Thanks
@jedrekwas0314
@jedrekwas0314 19 дней назад
Such an underrated video. It was a pleasure to watch and follow along
@tsuna23-w5j
@tsuna23-w5j 3 месяца назад
looking forward to another END TO END video but for more intermediate level!
@lauriepoorie
@lauriepoorie 4 месяца назад
The coefficient does not determine the most important. The magnitude of each variable varies in the formula. A small coefficient applied to a variable with more magnitude can be the most variance on the model
@pubgclutch7719
@pubgclutch7719 6 месяцев назад
please make video on lasso,ridge,svm,knn,gradient boost etc..
@everythingispossible6310
@everythingispossible6310 5 месяцев назад
Can you tell me from where I can get this csv file ?
@techsnail8581
@techsnail8581 10 месяцев назад
Great video! Here's a quick tip: consider using distplot to display Yhat and Y_test in the same axis to evaluate your model's performance.
@TitoExpressionz
@TitoExpressionz 2 месяца назад
you explain so well. I have learnt so much in this video. Going to use this in my project for sure. Thank you
@alejandro_ao
@alejandro_ao 2 месяца назад
nice to hear that! keep it up!
@nonnisite1954
@nonnisite1954 3 месяца назад
I'm a math major with a minor in CS. I'm looking to break into data science. Your video was very informative and easy to follow. Thank you!
@alejandro_ao
@alejandro_ao 3 месяца назад
you are literally in the best position to start off in the world of AI. enjoy the ride!
@itstanjorepainting
@itstanjorepainting 2 месяца назад
Thank you so much sir ❤ please keep us updated in ml world like this ............
@alejandro_ao
@alejandro_ao 2 месяца назад
absolutely 🫡
@celsogonzalezlopez6488
@celsogonzalezlopez6488 2 месяца назад
very helpful, thank you
@ashleymolinadiaz3896
@ashleymolinadiaz3896 Месяц назад
you saved me with this, great job and thank you!!
@alejandro_ao
@alejandro_ao Месяц назад
you’re awesome 🙌
@yanis4135
@yanis4135 3 месяца назад
Amazing video i learned a lot from you thank you for the job
@alejandro_ao
@alejandro_ao 3 месяца назад
Glad to hear it!
@ThomasRoshan-nl2py
@ThomasRoshan-nl2py 5 месяцев назад
Dude your explanation is far more better than anyone else and simple to understand i do not comment actually but i can say that u explain really good.
@alejandro_ao
@alejandro_ao 5 месяцев назад
i really appreciate it! glad it was helpful :)
@smartearcleaner
@smartearcleaner Год назад
Amazing video ! for me as a beginner, that was very helpfull, thank you
@alejandro_ao
@alejandro_ao Год назад
Great to hear! Keep it up :)
@Izumichan-nw1zo
@Izumichan-nw1zo 25 дней назад
Today is Sept-5 and here we celebrate teachers day in india so I really want to thank you for making such videos and explaining every minute thing and complex things in such a simplistic way thank u so much dude
@rameezalipacific
@rameezalipacific 21 день назад
yo buddy,im also learning ml and just completed freecodecamp course but the sad thing is I learned theory mostly,not code so any suggestions?like how to start?i knew most of the things but in theory or you can say, i can understand code easily but couldnt write from scratch and for your knowledge, i havent watched this video yet...what should or where should I start now as I love ml,just having some trouble....
@Izumichan-nw1zo
@Izumichan-nw1zo 17 дней назад
@@rameezalipacific I am also new but i would say start doing or replicating real world projects from youtube
@salwamh2942
@salwamh2942 7 месяцев назад
this is such a good beginner-friendly tutorial! thank u sm
@alejandro_ao
@alejandro_ao 7 месяцев назад
hey there! it makes me very happy to hear that! keep it up ;)
@AnesuGandiwa
@AnesuGandiwa 3 месяца назад
It is very helpful brother, Keep up good work!
@alejandro_ao
@alejandro_ao 3 месяца назад
Thank you, I will!
@krystian_n6270
@krystian_n6270 8 месяцев назад
Great work ! Im waiting for others ML algorithms.
@alejandro_ao
@alejandro_ao 8 месяцев назад
thanks!! i’ll try to make more of this 💪
@shakilahammed1887
@shakilahammed1887 2 месяца назад
You are great brother.
@tsuna23-w5j
@tsuna23-w5j 3 месяца назад
big thanks for this video -- i learned a lot!!
@alejandro_ao
@alejandro_ao 3 месяца назад
Very welcome!
@rawanrezk7862
@rawanrezk7862 7 месяцев назад
Really thanks it is very helpful
@alejandro_ao
@alejandro_ao 7 месяцев назад
hey there, i'm glad it was helpful! keep it up :)
@AmineKhaled-eo4cx
@AmineKhaled-eo4cx 5 месяцев назад
u are the best
@alejandro_ao
@alejandro_ao 5 месяцев назад
you are
Далее
Linear Regression From Scratch in Python (Mathematical)
24:38
Teeth gadget every dentist should have 😬
00:20
Просмотров 940 тыс.
Se las dejo ahí.
00:10
Просмотров 5 млн
11 ming dollarlik uzum
00:43
Просмотров 1,2 млн
Exploratory Data Analysis with Pandas Python
40:22
Просмотров 476 тыс.
ML Was Hard Until I Learned These 5 Secrets!
13:11
Просмотров 309 тыс.
Multiple Linear Regression in Python - sklearn
10:35
Просмотров 82 тыс.
Introduction to LlamaIndex with Python (2024)
39:57
Просмотров 17 тыс.