Multiple Linear Regression | Geometric Intuition & Code

  Рет қаралды 61,208

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

Пікірлер: 78
@krithwal1997
@krithwal1997 2 жыл бұрын
He is not a teacher , He is a Savior ❤
@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.
@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 :)
@namansethi1767
@namansethi1767 2 жыл бұрын
Best channel on youtube to learn data science, Specially in hindi
@bhaskargg6018
@bhaskargg6018 Жыл бұрын
your explanation is clear to understand the multiple linear regression topic, thankyou for sharing your knowledge to the data science community
@aniketraut71
@aniketraut71 3 ай бұрын
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.
@manojchowdarypokuri9016
@manojchowdarypokuri9016 Жыл бұрын
Thank You so much for clear explanation.content is vey good than other channels
@abhinagmal1940
@abhinagmal1940 2 жыл бұрын
CampusX having best content than others , Thank You Sir!!!
@SagarGupta-ue1dr
@SagarGupta-ue1dr Жыл бұрын
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👌👌
@mentalgaming2739
@mentalgaming2739 6 ай бұрын
Best Explanation Ever Love your Videos
@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 Жыл бұрын
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 10 ай бұрын
thanks a lot man. Saved a lot of time
@anubhavrai5612
@anubhavrai5612 Ай бұрын
Hats off to you man👒, never learned 3d plane like this before...
@nishagera6051
@nishagera6051 Жыл бұрын
Thank uh so much sir for explaining so nicely 👍👍
@balrajprajesh6473
@balrajprajesh6473 2 жыл бұрын
greatest teacher ever!
@vikashgupta-ec6wq
@vikashgupta-ec6wq 6 ай бұрын
truly a gem great teaching
@AkashKumar-bs9cv
@AkashKumar-bs9cv 2 жыл бұрын
you are awesome , i have never seen content like this . your teaching style is great
@SagarGupta-ue1dr
@SagarGupta-ue1dr Жыл бұрын
can someone pin the link of one note
@todaystrending1992
@todaystrending1992 3 жыл бұрын
Thank you sir , god bless you ❤️❤️❤️ you are great .
@studentstruggle7450
@studentstruggle7450 4 ай бұрын
teaching manner is amazing tq 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
@narendraparmar1631
@narendraparmar1631 6 ай бұрын
Really helpful lecture. Thanks sir😀
@Ajay_Verma45
@Ajay_Verma45 8 ай бұрын
Very nice explanation. Thank you sir
@something_went_wrong167
@something_went_wrong167 8 ай бұрын
Thankyou sir for this informative video
@preetisrivastava1624
@preetisrivastava1624 Жыл бұрын
I have become your fan sir
@ScienceSpark3
@ScienceSpark3 Жыл бұрын
best content out there
@ritikkumar876
@ritikkumar876 Жыл бұрын
aap bhut aacha padhate h
@gauravpundir97
@gauravpundir97 Жыл бұрын
Great Explanation
@heetbhatt4511
@heetbhatt4511 9 ай бұрын
Thank you sir
@Vipulghadi
@Vipulghadi 2 жыл бұрын
Sir you are great
@ParthivShah
@ParthivShah 3 ай бұрын
Thank You Sir.
@19_ec_animeshshukla48
@19_ec_animeshshukla48 10 ай бұрын
I dont know how should i thank u sirr
@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 11 ай бұрын
@@core4032 complete ho gya to?
@prathameshingavale2936
@prathameshingavale2936 2 жыл бұрын
Very nice explanation. Thank you sir❤️💯
@SagarGupta-ue1dr
@SagarGupta-ue1dr Жыл бұрын
can someone pin the link of one note
@akzork
@akzork 2 жыл бұрын
For the first time in my life, I am enjoying maths.
@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 10 ай бұрын
Bruh are you a fresher? I mean how can you do those? I have no clue whatsover
@rushikeshdane5855
@rushikeshdane5855 5 ай бұрын
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)
@AlgoTribes
@AlgoTribes 2 жыл бұрын
Guru ji Pranaam
@ruchikumari5868
@ruchikumari5868 5 ай бұрын
Thankyou sir
@AbdulRahman-zp5bp
@AbdulRahman-zp5bp 2 жыл бұрын
UNDERRATED!!!!
@Noob31219
@Noob31219 Жыл бұрын
you are great
@juancarlosgomezsala8098
@juancarlosgomezsala8098 3 жыл бұрын
Thanks for the lesson. Only a problem. The variable "final" is not defined.
@kidscreator2268
@kidscreator2268 3 жыл бұрын
great sir
@tanmayshinde7853
@tanmayshinde7853 2 жыл бұрын
hidden gem
@JACKSPARROW-ch7jl
@JACKSPARROW-ch7jl Жыл бұрын
Thanxxx
@devbhattacharya153
@devbhattacharya153 Жыл бұрын
Thanks a lot sir:)
@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.
@paritoshkumar7422
@paritoshkumar7422 5 ай бұрын
Awesome SIr
@furry2fun
@furry2fun 10 ай бұрын
sir which notepad do you use for making digital notes
@rose9466
@rose9466 Жыл бұрын
Hi Sir, Can i use these videos as reference for blog post
@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
@mahashreer7887
@mahashreer7887 3 жыл бұрын
Bro i do ppt multiple linear Regression what i can do
@jonmasson3311
@jonmasson3311 Жыл бұрын
G.O.A.T.
@creatortoro3513
@creatortoro3513 Ай бұрын
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
@Whymetho.
@Whymetho. 4 ай бұрын
You used "Final" in the code but it was not declared before so it is giving error
@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
@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 8 ай бұрын
Thanks man😂😂😂..
@messiisthebest
@messiisthebest Жыл бұрын
where is forward selection and backward elimination
@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
@tarunchauhan2339
@tarunchauhan2339 Жыл бұрын
sir can you provide these notes
@kindaeasy9797
@kindaeasy9797 6 ай бұрын
n dimension wali eq galat hai, vo n+1 dimension ki ho gyi
@SagarGupta-ue1dr
@SagarGupta-ue1dr Жыл бұрын
can someone pin the link of one note
@balavikaram8547
@balavikaram8547 Жыл бұрын
hello
That's how money comes into our family
00:14
Mamasoboliha
Рет қаралды 5 МЛН
Multiple Linear Regression in Python - sklearn
10:35
RegenerativeToday
Рет қаралды 74 М.
Multiple Linear Regression using python and sklearn
19:51
Krish Naik
Рет қаралды 147 М.
Statistics 101: Multiple Linear Regression, The Very Basics 📈
20:26
Brandon Foltz
Рет қаралды 1,3 МЛН