Multiple Linear Regression | Geometric Intuition & Code

  Рет қаралды 64,720

CampusX

CampusX

3 жыл бұрын

This video simplifies the concepts, providing a clear understanding of how to implement Multiple Linear Regression in Python. Enhance your regression skills with this hands-on tutorial.
Code used: github.com/campusx-official/1...
Plotly: • Plotly tutorial for be...
Hyperplane : • Equation of a Hyper-pl...
============================
Do you want to learn from me?
Check my affordable mentorship program at : learnwith.campusx.in/s/store
============================
📱 Grow with us:
CampusX' LinkedIn: / campusx-official
CampusX on Instagram for daily tips: / campusx.official
My LinkedIn: / nitish-singh-03412789
Discord: / discord
E-mail us at support@campusx.in

Пікірлер: 79
@krithwal1997
@krithwal1997 2 жыл бұрын
He is not a teacher , He is a Savior ❤
@iftikharahmad2481
@iftikharahmad2481 Жыл бұрын
wahoo amazing, I don't find such a great teacher in my life He was a gem. Look how he explains very simply and amazingly.
@suyashdongre
@suyashdongre Жыл бұрын
I Think I found a hidden gem on KZbin. THANK YOU SO MUCH for making such high quality videos :)
@bhaskargg6018
@bhaskargg6018 Жыл бұрын
your explanation is clear to understand the multiple linear regression topic, thankyou for sharing your knowledge to the data science community
@mylifeandfood
@mylifeandfood Жыл бұрын
Happy Teachers Day Sir.. I am fresher in Data Science from a non-coding background and I have learned a lot from your videos. Thanks a lot for such good and explanatory videos.
@subashri3707
@subashri3707 14 күн бұрын
Same nanum data science student
@aniketraut71
@aniketraut71 4 ай бұрын
The quality of these videos is way greater than the paid platforms. The patience with which he explains and the clarity of doubts that students might have is incredible. Thank you Sir.
@namansethi1767
@namansethi1767 2 жыл бұрын
Best channel on youtube to learn data science, Specially in hindi
@abhinagmal1940
@abhinagmal1940 2 жыл бұрын
CampusX having best content than others , Thank You Sir!!!
@SagarGupta-ue1dr
@SagarGupta-ue1dr 2 жыл бұрын
can someone pin the link of one note
@sachink1224
@sachink1224 Жыл бұрын
You are fantastic sir, you are really teach in-depth, Thank You so much sir👌👌
@manojchowdarypokuri9016
@manojchowdarypokuri9016 Жыл бұрын
Thank You so much for clear explanation.content is vey good than other channels
@mentalgaming2739
@mentalgaming2739 7 ай бұрын
Best Explanation Ever Love your Videos
@nishagera6051
@nishagera6051 Жыл бұрын
Thank uh so much sir for explaining so nicely 👍👍
@anubhavrai5612
@anubhavrai5612 2 ай бұрын
Hats off to you man👒, never learned 3d plane like this before...
@studentstruggle7450
@studentstruggle7450 5 ай бұрын
teaching manner is amazing tq great sir
@AkashKumar-bs9cv
@AkashKumar-bs9cv 2 жыл бұрын
you are awesome , i have never seen content like this . your teaching style is great
@SagarGupta-ue1dr
@SagarGupta-ue1dr 2 жыл бұрын
can someone pin the link of one note
@PiyushKumar-ku6yz
@PiyushKumar-ku6yz Жыл бұрын
Whoever is getting the 'final' name not defined error just move the "final = np.vstack((xGrid.ravel().reshape(1,100),yGrid.ravel().reshape(1,100))).T " right before "z_final = lr.predict(final).reshape(10,10)".
@mohammadaffan5001
@mohammadaffan5001 9 ай бұрын
Thanks man😂😂😂..
@vikashgupta-ec6wq
@vikashgupta-ec6wq 7 ай бұрын
truly a gem great teaching
@inspiredteaching4468
@inspiredteaching4468 2 жыл бұрын
Firstly the explanations are too good and one of the best that I have come across.Thank you! There is one small correction to the code in github. At line 224... the final data set is used before it has been created so it would throw an error. It should be as below. xGrid, yGrid = np.meshgrid(y, x) final = np.vstack((xGrid.ravel().reshape(1,100),yGrid.ravel().reshape(1,100))).T z_final = lr.predict(final).reshape(10,10) z = z_final
@SagarGupta-ue1dr
@SagarGupta-ue1dr 2 жыл бұрын
can someone pin the link of one note
@vivekmahajan3253
@vivekmahajan3253 Жыл бұрын
Thank very much bro you made my day
@keshavkarki7775
@keshavkarki7775 Жыл бұрын
Really thankful 👍👍👍👍 I was in trouble due to this error only from past 2 days
@mdmojiburbabu
@mdmojiburbabu Жыл бұрын
NameError: name 'final' is not defined: The issue in your focal cell is that the variable final is not defined before it is being used in the lr.predict() method. This is why you are getting a NameError stating that 'final' is not defined. To fix this issue, you need to move the line of code where final is defined before the line where lr.predict() is called. Here's the updated code: [By defining final before using it in the lr.predict() method, the error should be resolved.] x = np.linspace(-5, 5, 10) y = np.linspace(-5, 5, 10) xGrid, yGrid = np.meshgrid(y, x) final = np.vstack((xGrid.ravel().reshape(1,100),yGrid.ravel().reshape(1,100))).T z_final = lr.predict(final).reshape(10,10) z = z_final
@sanskaripatrick7191
@sanskaripatrick7191 11 ай бұрын
thanks a lot man. Saved a lot of time
@Ajay_Verma45
@Ajay_Verma45 9 ай бұрын
Very nice explanation. Thank you sir
@balrajprajesh6473
@balrajprajesh6473 2 жыл бұрын
greatest teacher ever!
@todaystrending1992
@todaystrending1992 3 жыл бұрын
Thank you sir , god bless you ❤️❤️❤️ you are great .
@narendraparmar1631
@narendraparmar1631 7 ай бұрын
Really helpful lecture. Thanks sir😀
@ritikkumar876
@ritikkumar876 Жыл бұрын
aap bhut aacha padhate h
@gauravpundir97
@gauravpundir97 Жыл бұрын
Great Explanation
@something_went_wrong167
@something_went_wrong167 9 ай бұрын
Thankyou sir for this informative video
@Vipulghadi
@Vipulghadi 2 жыл бұрын
Sir you are great
@preetisrivastava1624
@preetisrivastava1624 Жыл бұрын
I have become your fan sir
@ScienceSpark3
@ScienceSpark3 Жыл бұрын
best content out there
@19_ec_animeshshukla48
@19_ec_animeshshukla48 11 ай бұрын
I dont know how should i thank u sirr
@AbdulRahman-zp5bp
@AbdulRahman-zp5bp 2 жыл бұрын
UNDERRATED!!!!
@ParthivShah
@ParthivShah 4 ай бұрын
Thank You Sir.
@AlgoTribes
@AlgoTribes 3 жыл бұрын
Guru ji Pranaam
@heetbhatt4511
@heetbhatt4511 10 ай бұрын
Thank you sir
@kidscreator2268
@kidscreator2268 3 жыл бұрын
great sir
@arpitalodha4687
@arpitalodha4687 Жыл бұрын
sir u r superb really i paid fees for this course in simplilearn but its worst n u r best of best
@Noob31219
@Noob31219 2 жыл бұрын
you are great
@devbhattacharya153
@devbhattacharya153 Жыл бұрын
Thanks a lot sir:)
@mdmojiburbabu
@mdmojiburbabu Жыл бұрын
NameError: name 'final' is not defined: The issue in your focal cell is that the variable final is not defined before it is being used in the lr.predict() method. This is why you are getting a NameError stating that 'final' is not defined. To fix this issue, you need to move the line of code where final is defined before the line where lr.predict() is called. Here's the updated code: [By defining final before using it in the lr.predict() method, the error should be resolved.] x = np.linspace(-5, 5, 10) y = np.linspace(-5, 5, 10) xGrid, yGrid = np.meshgrid(y, x) final = np.vstack((xGrid.ravel().reshape(1,100),yGrid.ravel().reshape(1,100))).T z_final = lr.predict(final).reshape(10,10) z = z_final
@flakky626
@flakky626 11 ай бұрын
Bruh are you a fresher? I mean how can you do those? I have no clue whatsover
@rushikeshdane5855
@rushikeshdane5855 6 ай бұрын
x = np.linspace(-5, 5, 10) y = np.linspace(-5, 5, 10) xGrid, yGrid = np.meshgrid(y, x) final = np.vstack((xGrid.ravel().reshape(1,100),yGrid.ravel().reshape(1,100))).T z_final = lr.predict(final).reshape(10,10)
@ruchikumari5868
@ruchikumari5868 5 ай бұрын
Thankyou sir
@akzork
@akzork 2 жыл бұрын
For the first time in my life, I am enjoying maths.
@paritoshkumar7422
@paritoshkumar7422 6 ай бұрын
Awesome SIr
@prathameshingavale2936
@prathameshingavale2936 2 жыл бұрын
Very nice explanation. Thank you sir❤️💯
@SagarGupta-ue1dr
@SagarGupta-ue1dr 2 жыл бұрын
can someone pin the link of one note
@juancarlosgomezsala8098
@juancarlosgomezsala8098 3 жыл бұрын
Thanks for the lesson. Only a problem. The variable "final" is not defined.
@JACKSPARROW-ch7jl
@JACKSPARROW-ch7jl Жыл бұрын
Thanxxx
@core4032
@core4032 2 жыл бұрын
CampusX having best content than others , Thank You Sir
@749srobin
@749srobin 2 жыл бұрын
lets complete the ML playlist together , lets connect on discord . what u think?
@core4032
@core4032 2 жыл бұрын
@@749srobin definitely
@hritikroshanmishra3630
@hritikroshanmishra3630 Жыл бұрын
@@core4032 complete ho gya to?
@tanmayshinde7853
@tanmayshinde7853 2 жыл бұрын
hidden gem
@Atharwaah
@Atharwaah Жыл бұрын
Hello sir, Recently I watched your Multiple Regression video and after I that started to work upon a Prediction problem. After completing all the steps then I tried to plot Regression Plane onto that but I am unable to do so. I have 5 I/P columns and 1 O/P col. Can u please help me with this.
@furry2fun
@furry2fun 10 ай бұрын
sir which notepad do you use for making digital notes
@mahashreer7887
@mahashreer7887 3 жыл бұрын
Bro i do ppt multiple linear Regression what i can do
@rose9466
@rose9466 Жыл бұрын
Hi Sir, Can i use these videos as reference for blog post
@Whymetho.
@Whymetho. 5 ай бұрын
You used "Final" in the code but it was not declared before so it is giving error
@creatortoro3513
@creatortoro3513 2 ай бұрын
sir in this x = np.linspace(-5, 5, 10) y = np.linspace(-5, 5, 10) xGrid, yGrid = np.meshgrid(y, x) z_final = lr.predict(final).reshape(10,10) # here final in not defined z = z_final final = np.vstack((xGrid.ravel().reshape(1,100),yGrid.ravel().reshape(1,100))).T 'final' is not defined
@muhammadjunaid7822
@muhammadjunaid7822 2 жыл бұрын
sir! how to solve this error NameError Traceback (most recent call last) in () 3 y = np.linspace(-5, 5, 10) 4 xGrid, yGrid = np.meshgrid(y, x) ----> 5 final 6 z_final = lr.predict(final).reshape(10,10) 7 NameError: name 'final' is not defined
@jonmasson3311
@jonmasson3311 Жыл бұрын
G.O.A.T.
@kindaeasy9797
@kindaeasy9797 7 ай бұрын
n dimension wali eq galat hai, vo n+1 dimension ki ho gyi
@messiisthebest
@messiisthebest Жыл бұрын
where is forward selection and backward elimination
@tarunchauhan2339
@tarunchauhan2339 Жыл бұрын
sir can you provide these notes
@sukritiguin5637
@sukritiguin5637 2 жыл бұрын
please upload more and more video
@749srobin
@749srobin 2 жыл бұрын
this is my first ML algorithm , Would continue the playlist , need a study companion to learn things better through discussions and trial and run , would you like to join ? your comment is recent so thought of asking you first
@shwetkumar8370
@shwetkumar8370 Жыл бұрын
Sir, I'm facing issue at 18:16 --------------------------------------------------------------------------- NameError Traceback (most recent call last) in () 2 y = np.linspace(-5,5,10) 3 xGrid,yGrid = np.meshgrid(y,x) ----> 4 z_final = lr.predict(final).reshape(10,10) 5 z = z_final 6 final = np.vstake((xGrid.ravel().reshape(1,100),yGrid.ravel().reshape(1,100))).T NameError: name 'final' is not defined working in google colab.....anyone pls help
@SagarGupta-ue1dr
@SagarGupta-ue1dr 2 жыл бұрын
can someone pin the link of one note
@balavikaram8547
@balavikaram8547 Жыл бұрын
hello
Каха заблудился в горах
00:57
К-Media
Рет қаралды 9 МЛН
Mom's Unique Approach to Teaching Kids Hygiene #shorts
00:16
Fabiosa Stories
Рет қаралды 34 МЛН
DAD LEFT HIS OLD SOCKS ON THE COUCH…😱😂
00:24
JULI_PROETO
Рет қаралды 16 МЛН
Best Toilet Gadgets and #Hacks you must try!!💩💩
00:49
Poly Holy Yow
Рет қаралды 20 МЛН
Multiple Linear Regression in Python - sklearn
10:35
RegenerativeToday
Рет қаралды 77 М.
25 Nooby Pandas Coding Mistakes You Should NEVER make.
11:30
Rob Mulla
Рет қаралды 264 М.
Linear Regression, Clearly Explained!!!
27:27
StatQuest with Josh Starmer
Рет қаралды 230 М.
Statistics 101: Multiple Linear Regression, The Very Basics 📈
20:26
Brandon Foltz
Рет қаралды 1,3 МЛН
Каха заблудился в горах
00:57
К-Media
Рет қаралды 9 МЛН