Ridge, Lasso and Elastic-Net Regression in R

  Рет қаралды 128,348

StatQuest with Josh Starmer

StatQuest with Josh Starmer

Күн бұрын

Пікірлер: 286
@statquest
@statquest 3 жыл бұрын
NOTE: There seems to be an update to the elastic net package and if you run the code, your results might not be exactly what I got in the video. However, the concepts are still the same. Support StatQuest by buying my book The StatQuest Illustrated Guide to Machine Learning or a Study Guide or Merch!!! statquest.org/statquest-store/
@sandydsa
@sandydsa 3 жыл бұрын
ok
@alexxu8839
@alexxu8839 2 жыл бұрын
Really appreciate how you explain every argument of the function. Such a life saver!
@statquest
@statquest 2 жыл бұрын
Thanks!
@alexanderlewzey1102
@alexanderlewzey1102 5 жыл бұрын
This is literally one of the best channels on youtube! This channel will be massive in a couple of years.
@statquest
@statquest 5 жыл бұрын
Thank you so much! I really hope that it continues to grow. I have a lot of fun working on these videos.
@injusticeanywherethreatens4810
@injusticeanywherethreatens4810 2 жыл бұрын
greetings from th future. You weren't wrong!
@Lin-vg5wy
@Lin-vg5wy Жыл бұрын
I love how every time I feel super anxious trying to find out solutions for my questions, you being a lifesaver and also make me laugh lol
@statquest
@statquest Жыл бұрын
BAM! :)
@mamoncitomc4637
@mamoncitomc4637 Жыл бұрын
one of the best videos ive watched for my upper division statistics classes
@statquest
@statquest Жыл бұрын
Thank you!
@lowyieldbondfunds
@lowyieldbondfunds 5 жыл бұрын
StatQuest killing it yet again. Literally using every video to supplement my grad degree.
@statquest
@statquest 5 жыл бұрын
Awesome!!! I'm glad my videos are so helpful. :)
@laurielommel1582
@laurielommel1582 4 жыл бұрын
Thank you so much for this amazing work you are doing and your wonderful explanations! You cannot imagine the help you are providing for stat-ungifted students like me! Greetings from Belgium!
@statquest
@statquest 4 жыл бұрын
Wow, thank you!
@jiazhou776
@jiazhou776 3 жыл бұрын
Just a beginner to explore Elastic net regression. Your videos are the best I found to get around with all the concepts. Thanks for your works. They will help me with my research! All the best :)
@statquest
@statquest 3 жыл бұрын
Glad it was helpful!
@rong8687
@rong8687 3 жыл бұрын
I really love your videos! They are so easy to understand! I could hardly understand what lecturers taught in lectures, but I could quickly understand your video with lively pictures and detailed annotations! I love your beautiful song as well!
@statquest
@statquest 3 жыл бұрын
Happy to hear that!
@ChristianGardner
@ChristianGardner 2 жыл бұрын
You are the literal 🐐 of learning anything I’ve ever needed to know for statistics and modeling in R
@statquest
@statquest 2 жыл бұрын
Thank you!
@Tessitura9
@Tessitura9 5 жыл бұрын
Most comprehensive explanation of how to implement ridge / lasso in R I can find. Thanks!
@statquest
@statquest 5 жыл бұрын
Hooray! :)
@dssk2001
@dssk2001 3 жыл бұрын
My entire project for courses done based on your concepts. Thank you very much
@statquest
@statquest 3 жыл бұрын
Bam! :)
@olcaybolat3452
@olcaybolat3452 2 жыл бұрын
Josh this is so clear, I don't know why you don't have many reviews with R. I hope we would get similiar R contents ! Thank you.
@statquest
@statquest 2 жыл бұрын
Thank you very much! :)
@danielalveal9780
@danielalveal9780 2 жыл бұрын
Thank you so much Josh! before watching your videos this was literally impossible for me to learn. I really appreciate your work.
@statquest
@statquest 2 жыл бұрын
Happy to help!
@MrNut89
@MrNut89 5 жыл бұрын
Oh my god... I've been struggling for hours and read so many VERY THICK books and gone through so many videos that I was honestly just sick of things! Then I found you. Where have you been all my life? XD Thank you so much! This was both silly enough that it cheered me up after so much frustration AND it was slow and direct enough for even me to understand! Thank you so much!
@statquest
@statquest 5 жыл бұрын
Awesome!!! I’m glad you like the videos. :)
@KayYesYouTuber
@KayYesYouTuber 3 жыл бұрын
Fantastic video. Thanks Josh. You have made it so simple and easy to understand.
@statquest
@statquest 3 жыл бұрын
Thank you! :)
@nancyanderson5413
@nancyanderson5413 2 жыл бұрын
I am a devoted fan of your channel, thank you very much.
@statquest
@statquest 2 жыл бұрын
Thank you!
@tranglerui
@tranglerui 2 жыл бұрын
Thanks so much for you series videos, and for this tutorial paradigm. You are always BAM!!!!
@statquest
@statquest 2 жыл бұрын
Hooray! Thank you!
@jordanmakesmaps
@jordanmakesmaps 5 жыл бұрын
Have you considered making a book that includes your explanations of concepts along with code examples? I really think it would make its way to the top along with ESL and ISLR. Thanks for your work!
@statquest
@statquest 5 жыл бұрын
Wow! That's a huge complement. Maybe one day I'll make a book. Right now I only have enough spare time to make these videos - but maybe they will be successful enough that I can work on teaching stats and ML full time.
@agustinvacavalverde
@agustinvacavalverde 4 жыл бұрын
@@statquest You definitely should! There is a huge amount of people getting into Analytics and Machine Learning without a proper quantitative background who struggle with textbooks like ISLR.
@thomashessilt9738
@thomashessilt9738 4 жыл бұрын
And with a CD in the back to play the introduction songs for each statistical test or chapter. Like in the good old days!
@razzlfraz
@razzlfraz 4 жыл бұрын
For anyone who is a bit confused, giving a concrete example, say you're trying to predict if someone will commit fraud. Y contains records of people who have and have not committed fraud. Meanwhile, X contains the "features" about those people, like their sex, age, income, and so on. Each feature is a column in X, and each row is a person. You are trying to predict if someone will commit fraud, so you put in these features (x.train) into a linear regression algorithm, with if those people actually did commit fraud (y.train). If anyone is curious why glmnet requires x.train to be a 2 column+ matrix (two or more features), the package maintainer Trevor Hastie said, "glmnet is designed to select variables from a (large) collection. Allowing for 1 variable would have created a lot of edge case programming, and I was not interested in doing that. Sorry!"
@statquest
@statquest 4 жыл бұрын
This is a great comment. Thank you! :)
@razzlfraz
@razzlfraz 4 жыл бұрын
@@statquest You're welcome! ^_^
@meetharita
@meetharita 4 жыл бұрын
Excellent Explanations. This was very much useful for my assignment. Thanks a million!
@statquest
@statquest 4 жыл бұрын
Glad it was helpful!
@danniawu1030
@danniawu1030 3 жыл бұрын
I can't love your videos more pls keep making videos for us! greetings from Germany
@statquest
@statquest 3 жыл бұрын
Thank you very much!!! :)
@joshualaferriere4530
@joshualaferriere4530 4 жыл бұрын
Would have been nice if you showed the final model and prediction accuracy over a holdout test set
@arungandhi5612
@arungandhi5612 3 жыл бұрын
amazing I learnt so much which i could not learn in class,
@statquest
@statquest 3 жыл бұрын
Glad it was helpful!
@lishanjiang260
@lishanjiang260 5 жыл бұрын
You just make it very clear and understandable. Thank you Josh!
@benben0814
@benben0814 6 жыл бұрын
My wish came true! Thank you Josh!
@statquest
@statquest 6 жыл бұрын
Hooray! It took one week longer than I hoped, but better late than never! :)
@afrakilic5672
@afrakilic5672 3 жыл бұрын
adamlığın zekatını ver be. böyle iyi anlatılır mı
@statquest
@statquest 3 жыл бұрын
Thank you! :)
@jives.
@jives. 3 жыл бұрын
StatQuest gang rise up
@statquest
@statquest 3 жыл бұрын
:)
@shattowsky
@shattowsky 2 жыл бұрын
I agree, with the opinion that this is one of the best channels on statistical KZbin! I ´d like to answer how do you make the same in logistic and cox regression. Specifically, how do you obtain the line -> mean Example: With Ridge Cox Regression alpha0.fit
@statquest
@statquest 2 жыл бұрын
Unfortunately I've only used 'mse' and haven't tried logistic or cox regression.
@deprofundis3293
@deprofundis3293 Жыл бұрын
Hi @shattowsky!! Did you ever figure out how to do this step for logistic regression??? I'm in the same boat - I really hope you see this and respond!!
@omarelashkar2308
@omarelashkar2308 2 жыл бұрын
Great explanation!
@statquest
@statquest 2 жыл бұрын
Thanks!
@belantaribrahim850
@belantaribrahim850 2 жыл бұрын
Truly amazing work 👏 🙌 👌
@statquest
@statquest 2 жыл бұрын
Thank you so much 😀!
@joshuasuasnabar6058
@joshuasuasnabar6058 4 жыл бұрын
BAAAAAAM! Thanks a lot Josh Starmer!
@sandysanju9675
@sandysanju9675 4 жыл бұрын
Sir you must be a full time professor in any reputed university. You can explain the math to a nonmath person. I have found your lecture the best lecture till date. thanks a lot for posting it. sir I have a query could you please guide me where should I start to study for applying the lasso and ridge for panel data.. god bless you sir.. Sir please help me...
@macilguiddir3680
@macilguiddir3680 6 жыл бұрын
Top, as usual! Exactly what I needed! Thanks, my friend
@statquest
@statquest 6 жыл бұрын
Hooray! :)
@sheilaquan9824
@sheilaquan9824 4 жыл бұрын
Wow nice music and lecture!
@statquest
@statquest 4 жыл бұрын
Thanks! :)
@arjunbadhan2685
@arjunbadhan2685 4 жыл бұрын
Hey Josh.. Your videos are too good.. Simple yet explanatory.. We are lucky to have you here.. i wanted to ask a question to you on this video.. why do we generally use to have training set as 2/3 or maybe 70% of total data.. why not any other number.. suppose if we have 10 million rows and i want to train a model then 50% of the data as training set still gives us a good amount of data to train.. then why always 70:30..
@statquest
@statquest 4 жыл бұрын
70/30 is just a convention, it's not a rule. 70/30 tends to work well in practice, but that's the only justification for using it.
@aliciachen9750
@aliciachen9750 5 жыл бұрын
i like how the seed is the same as the hitchhiker's guide's answer to life... lol.
@statquest
@statquest 5 жыл бұрын
Exactly! That’s my favorite seed.
@AghilAlaee
@AghilAlaee 4 жыл бұрын
Hi, just God bless you.
@statquest
@statquest 4 жыл бұрын
Thank you!
@baharehheydarzadeh6236
@baharehheydarzadeh6236 5 жыл бұрын
You are simply the best !!!!
@statquest
@statquest 5 жыл бұрын
Thank you! :)
@thegreenpotato1
@thegreenpotato1 4 жыл бұрын
You're a hero man
@statquest
@statquest 4 жыл бұрын
Thank you! :)
@reyruben619
@reyruben619 3 жыл бұрын
Thank you so much!
@statquest
@statquest 3 жыл бұрын
You're welcome!
@sharonarandia3630
@sharonarandia3630 5 жыл бұрын
This video is awesome, as the others. Thank you!
@statquest
@statquest 5 жыл бұрын
Thanks! :)
@최다인-y5u
@최다인-y5u 4 жыл бұрын
Loved it! Thank you so much:)
@statquest
@statquest 4 жыл бұрын
Thanks! :)
@maltelangeheine8193
@maltelangeheine8193 5 жыл бұрын
Super great video!
@콘충이
@콘충이 4 жыл бұрын
Thank you so much
@statquest
@statquest 4 жыл бұрын
You're most welcome
@黃岱瑋
@黃岱瑋 4 жыл бұрын
Clearly explained video!!! Hi, I am doing an elastic-net regression to logistic regression to see whether the result is yes or no. My question is that at the video 16:17, how can I calculate the deviance instead of mse by using categorical "y.test" and numeric "predicted"? Hope to see your reply soon. Thanks!!!
@statquest
@statquest 4 жыл бұрын
See: www.sthda.com/english/articles/36-classification-methods-essentials/149-penalized-logistic-regression-essentials-in-r-ridge-lasso-and-elastic-net/
@黃岱瑋
@黃岱瑋 4 жыл бұрын
@@statquest Thanks!!! This helped me a lot!!!
@joycem.205
@joycem.205 4 жыл бұрын
How can I compare models in terms of the importance of variables? Thanks for this video!!!
@Fnottro
@Fnottro 5 жыл бұрын
This is amazing! Thank you for making these!
@ms_1918
@ms_1918 4 жыл бұрын
Thank you
@statquest
@statquest 4 жыл бұрын
Thanks! :)
@Grecocubano
@Grecocubano 5 жыл бұрын
Love your videos! Would be great if you had this one for python coders also
@yulinliu850
@yulinliu850 6 жыл бұрын
Thank you Josh!
@statquest
@statquest 6 жыл бұрын
You're welcome! :)
@PASALAPRAVALLIKA-hs6mt
@PASALAPRAVALLIKA-hs6mt 5 ай бұрын
I appreciate for your detail explanation by taking best visualization content and examples. Can you also upload code in python as well?
@statquest
@statquest 5 ай бұрын
I hope to do that one day.
@prasunbhattacharjee8415
@prasunbhattacharjee8415 3 жыл бұрын
Very intuitive way of teaching. I used lasso for a bunch of categorical variables and it's giving one Beta estimates for each unlike glm or lm. e.g. Education variable has many levels - No education, High school, Graduate, Masters and Doctorate but lasso has given one coefficient -0.254. How to interpret these Beta?
@statquest
@statquest 3 жыл бұрын
You have to transform your categorical variables via one-hot-encoding. See: stats.stackexchange.com/questions/136085/can-glmnet-logistic-regression-directly-handle-factor-categorical-variables-wi/210075
@danielcordeiro6003
@danielcordeiro6003 2 жыл бұрын
Why do we dived the data into training and testing if the cv.glmnet already does cross validation? Or in other words. Shoudn't we introduce all data in the cv.glmnet function and set it to 3-fold?
@statquest
@statquest 2 жыл бұрын
You could do it that way, but often people like to reserve a small amount of data for validation, as done here.
@benedettaconte4634
@benedettaconte4634 3 жыл бұрын
Please could you do a lesson to explain us how to perform the elastic net with logistic regression? Should we use differences in likelihood instead of mean squared error? Thanks!!
@statquest
@statquest 3 жыл бұрын
Although I'm not certain how it is done, I think you are correct - that we simply replace the SSR with the log likelihood.
@tanmaykorgaonkar963
@tanmaykorgaonkar963 5 жыл бұрын
Great Video. Can you give a real life case study example like for linear regression to predict the amount spent by a customer on a e-commerce site or for logistic regression whether the person will default on loan payment, etc.
@nancyanderson5413
@nancyanderson5413 2 жыл бұрын
I Will definitely buy your book, and if you want to sell it in Spanish I can do the Translation for you.
@statquest
@statquest 2 жыл бұрын
WOW!!! Thank you very much!!!
@放射腫瘤部
@放射腫瘤部 2 жыл бұрын
Thanks a lot! I want to ask Do we need to scale the testing and validation set for prediction? What if we only have one sample to use? There’s no way to scale it to obtain a risk score..?
@statquest
@statquest 2 жыл бұрын
You can remember the scaling coefficients from the training data and apply them to the testing data.
@galan8115
@galan8115 3 жыл бұрын
@StatQuest with Josh Starmer Is there a way we can look up at the coefficents for the parameters (Variables) of the model? To look up wich variables are kept in the model and wich shrink.
@statquest
@statquest 3 жыл бұрын
Sure, just compare the optimal coefficients to the original least-squares fit.
@galan8115
@galan8115 3 жыл бұрын
@@statquest Yes but how do i acces the coefficiients i mean :D.
@statquest
@statquest 3 жыл бұрын
@@galan8115 You use the "coef()" function. The parameters for the "coef()" function are the same as they are for the "predict()" function. For example, here is how to get the parameters for the Ridge regression: coef(alpha0.fit, s=alpha0.fit$lambda.1se)
@galan8115
@galan8115 3 жыл бұрын
@@statquest Thank you!
@peperazo
@peperazo Жыл бұрын
Excellent video, it helped me a lot to understand these regressions. I have a question, in the Elastic Net example we have manipulated the alpha values ​​from 0 to 1 and it gave us that Lasso is still the best. But can you change the lambda values ​​to find different Elastic Net regressions and see if any of them are better than Lasso? What is the value of lambda worked in the last example?
@statquest
@statquest Жыл бұрын
cv.glmnet() automatically tests different values for lambda for us and uses cross validation to find the best one. See: 9:11
@peperazo
@peperazo Жыл бұрын
@@statquest You are totally correct, I forgot that part. Thank you very much, the video is perfect and very well explained!!!!
@wenjiechen101
@wenjiechen101 2 жыл бұрын
Thank you so much for the vedio! May I ask how can we know what is the fitted model looks like after regulization?
@statquest
@statquest 2 жыл бұрын
I'm not really sure what you mean by "looks like". Are you asking how to extract the specific parameter estimates or how to draw a graph of the model?
@wenjiechen101
@wenjiechen101 2 жыл бұрын
@@statquest Yes, I meant how to extract the specific parameter estimates. Especially when we need to do the interpretation.
@statquest
@statquest 2 жыл бұрын
@@wenjiechen101 Use the coef.glmnet() function. For example, to get the coefficients for the first model in this example, we would use: coef.glmnet(alpha0.fit, s=alpha0.fit$lambda.1se) NOTE: This will print out all 5000 coefficients! So you might try head(coef.glmnet(alpha0.fit, s=alpha0.fit$lambda.1se)) to just look at the first 6.
@statquest
@statquest 2 жыл бұрын
For more details, see: cran.r-project.org/web/packages/glmnet/glmnet.pdf
@wenjiechen101
@wenjiechen101 2 жыл бұрын
@@statquest Thank you so much!
@leoccleao
@leoccleao 4 жыл бұрын
Uhuuu Thanks again for opening new windows for us. Question: for Logistic regression, can I just use classification accuracy to compare models? Logloss would be the counterpart for MSE, but you know... try to tell a CEO the logloss is higher for a given alpha lol
@statquest
@statquest 4 жыл бұрын
You can use a confusion matrix for logistic regression and all associated metrics (accuracy) kzbin.info/www/bejne/gZXWoWmppNZ0bdE . You can also use ROC/AUC: kzbin.info/www/bejne/apu1c4V6l6-Yo68
@1996janjan
@1996janjan Жыл бұрын
Thanks for the informative video! I was wondering why we would split up the sample in a testing and training set and also you use the k-fold cross-validation method? Is this standard procedure? It is my understanding that one either uses the k-fold corss-validation or the validation set approach. Thanks for your help!
@statquest
@statquest Жыл бұрын
It's actually quite common to combine both methods.
@1996janjan
@1996janjan Жыл бұрын
@@statquest Thanks for the quick response. This information is very helpful!
@Pablovgd
@Pablovgd Жыл бұрын
@@statquest Follow up question on this: Am I understanding it correctly that the K fold validation here is only happening on the train set to estimate the best value for the lambda parameter? Would it make sense to, for example, also use K-fold CV while splitting the data in test/train (like in your video on cross validation). So in practice if we divide the data in 5 folds: use 4 folds to do the CV to determine lambda and train the model & 1 fold for testing, then use 4 different folds to do the CV to the determine labda and the fifth one for testing, and so on. Hope I made myself clear enough. Thanks a lot in advance!!
@statquest
@statquest Жыл бұрын
@@Pablovgd If you have a lot of data, you can do it that way.
@砷硼
@砷硼 5 жыл бұрын
how can we deal with the variable in dataform which is not continuous with glmnet, such as categorical variable and ordinal variable?I have read many papers and all of them told me dataform should be transfer into matrix before we conduct the glmnet.but ,you know,in matrix,all the variables are the same type.so??thank you.
@mjf6125
@mjf6125 5 жыл бұрын
Lets say your data looks like this: Type Value A 1 A 2 B 3 B 2 C 4 C 3 and we call this "Data" And we want to predict Value based on Type which is a group or (factor) variable type. In R, using glmnet, you can use command: X
@砷硼
@砷硼 5 жыл бұрын
sorry for the late reply,thank you very much
@raiydos7796
@raiydos7796 Жыл бұрын
Thank you so much for the video! I know the video is 4 years old, but just in case someone reads this, at 11:03 as you explained in previous videos, Ridge doesn't eliminate parameters. What is really happening here? I couldn't understand Thank you again!
@statquest
@statquest Жыл бұрын
So, Lasso and Elastic-Net can both remove parameters, and using lambda.1se gives us the model that performs within 1 standard error of the absolute best, but has the fewest parameters. However, we will also use lambda.1se for Ridge, even though ridge can't remove parameters, just to be consistent.
@changli4046
@changli4046 5 жыл бұрын
I love your videos!
@petax004
@petax004 5 жыл бұрын
Is the SME formula same for logistic regression?
@deprofundis3293
@deprofundis3293 3 жыл бұрын
Hi again - I was wondering if you knew how to do this using LOOCV. I emailed Trevor Hastie, explaining my small dataset issue, and he said that LOOCV would make more sense for me, then. But I've looked everywhere and can't find any tutorials or example code that show how to do this. I mean, I know that I'd set the number of folds to be the same as my sample size, but I don't know how else to set the R code up, which steps to skip, etc...all of the examples seem to do the train/test splitting. I understand if it's too much to ask, but any guidance at all would be greatly appreciated!!
@statquest
@statquest 3 жыл бұрын
Unfortunately I can't help you with your code.
@hahahaha-m4o
@hahahaha-m4o 5 жыл бұрын
11:35 , When choosing `family = "multinomial"`, should I check deviance rather than MSE?
@nemanjavucic570
@nemanjavucic570 5 жыл бұрын
Josh, thank you for this great video. How can we extract 15 parameters used for predicting outcome from the fit model?
@mercykabaya5698
@mercykabaya5698 8 ай бұрын
How do I get my corresponding lambda values now because you only produced alpha
@statquest
@statquest 8 ай бұрын
Unfortunately that's not something I remember off the top of my head. :(
@kwangminkim1735
@kwangminkim1735 5 жыл бұрын
clear ever! thank you!
@widohanggoro3387
@widohanggoro3387 2 жыл бұрын
When we add useful predictors, the mse also getting higher. Is it normal?
@statquest
@statquest 2 жыл бұрын
That sounds backwards.
@giacomobianchi4727
@giacomobianchi4727 3 жыл бұрын
Hi stat community and Josh! What if I want to compare elastic net and naive elastic net results according to Zou and Hastie (2005) approach which is a simple rescaling of the coefficient, what I have to do? Is the cv.glmnet function the naive version of the elastic net or is it adjusted? Thank you!
@statquest
@statquest 3 жыл бұрын
Hopefully someone else can answer this question! :)
@santoshbala9690
@santoshbala9690 4 жыл бұрын
Please do a video on Auto Correlation ACF & PACF...,
@AdrianaCastilloC
@AdrianaCastilloC Жыл бұрын
This is GREAT, Josh!! Thanks for the video. Do you have by any chance any video or source I can watch/read for running this script when using spatial data? I have a shapefile and I need to run a Lasso model. Any help would be greatly appreciated!!!!
@statquest
@statquest Жыл бұрын
Not that I know of. :(
@AdrianaCastilloC
@AdrianaCastilloC Жыл бұрын
@@statquest Thanks anyway :) Just for the record: seems that the function "glmnetcv" package "spm2" works for that.
@statquest
@statquest Жыл бұрын
@@AdrianaCastilloC bam!
@PhilipFreda
@PhilipFreda 2 жыл бұрын
Does anyone know how to extract feature importance out of these models. Perhaps in terms of p-values or another metric like shap values?
@statquest
@statquest 2 жыл бұрын
I think SHAP is probably the way to go.
@PhilipFreda
@PhilipFreda 2 жыл бұрын
@@statquest Thanks for the response, Josh. Do you happen to have a resource on how to do this in R?
@statquest
@statquest 2 жыл бұрын
@@PhilipFreda Not yet. :(
@kenn756
@kenn756 6 жыл бұрын
Hey Josh could you please do a video on comparing Bagging, Boosting and Stacking?
@statquest
@statquest 6 жыл бұрын
Yes! That is on the to-do list. Hopefully I can get to it soon.
@kenn756
@kenn756 6 жыл бұрын
@@statquest Awesome!
@Patrick-fw4hr
@Patrick-fw4hr 3 жыл бұрын
Thank you so much for your videos, they always help a lot to understand what really happens behind the formulas! I've been wondering whether one needs to use the foldid argument in the cv.glmnet function in the first (fitting) loop of the elastic net. The documentation says that if alpha is being cross-validated, one may use a fixed foldid vector to make the folding comparable for all alpha values. Is that one of the issues with the glmnet update? Thanks! :)
@statquest
@statquest 3 жыл бұрын
Possibly!
@raterake
@raterake 4 жыл бұрын
Thanks for the helpful video. In the last part you do a 10-fold CV for each lambda value and for each alpha value, since you are looping and running glmnet for each combination of lambda and alpha. What is the purpose of doing an additional 66 - 34 training-testing split and evaluating the models again? Why not just take the MSEs from the results of the cross-validation?
@statquest
@statquest 4 жыл бұрын
It is common to reserve a separate set of data, which I call x.test and y.test, that was not used in training at all to give a sense of long term performance. Why? To quote from: datascience.stackexchange.com/questions/18339/why-use-both-validation-set-and-test-set "You cannot use the cross validation set to measure performance of your model accurately, because you will deliberately tune your results to get the best possible metric, over maybe hundreds of variations of your parameters. The cross validation result is therefore likely to be too optimistic."
@raterake
@raterake 4 жыл бұрын
@@statquest This makes sense, thanks for responding quickly and for the answer!
@sindhubiswas6539
@sindhubiswas6539 4 жыл бұрын
Suppose I am fitting an ordinary Least Squares model to my data set and found it has multicollinearity. Can i use the steps that you just discussed?
@statquest
@statquest 4 жыл бұрын
Yes!
@sabihasultana8002
@sabihasultana8002 Ай бұрын
How are dealing with lamba here? We just tested different alpha values
@statquest
@statquest Ай бұрын
As stated many times in the video, (for example, at 7:50 ), the cv.glmnet() function finds the optimal value for lambda for us using cross validation.
@sabihasultana8002
@sabihasultana8002 Ай бұрын
@@statquest oops, so sorry for overlooking it, was halfway asleep yesterday night..should have double checked...thank you so much for the reply
@uxuelazkano3997
@uxuelazkano3997 5 жыл бұрын
Really nice video! I would love to know how can I extract the adjusted R² for the linear regression. Thak you Josh, you make a great job with these videos, they are really useful!
@MemphianSounds
@MemphianSounds 4 жыл бұрын
Would this run faster or more efficiently on a large dataset than just a GLM?
@statquest
@statquest 4 жыл бұрын
I'd be surprised if it was faster, since we have to use cross validation to find the best values for the hyperparameter.
@xiangnan-oz9hs
@xiangnan-oz9hs 6 жыл бұрын
Give you thumbs-up!
@statquest
@statquest 6 жыл бұрын
Thank you! :)
@ll-bc4gn
@ll-bc4gn Жыл бұрын
Hello (: about the "real_p", is there a reason you choose 15 instead of other numbers?
@statquest
@statquest Жыл бұрын
What time point, minutes and seconds, are you asking about?
@bernardoniebuhr8307
@bernardoniebuhr8307 Жыл бұрын
What about adaptative Lasso regularization?
@statquest
@statquest Жыл бұрын
Good question! I'm not familiar with that, but perhaps I should be.
@bernardoniebuhr8307
@bernardoniebuhr8307 Жыл бұрын
@@statquest it would be great to see an illustrative and nice video like this for adaptative Lasso - it seems very flexible such as the elastic net but I am still struggling to get the core of the thing...
@tinesrensen3684
@tinesrensen3684 5 жыл бұрын
Very nice, but could you show an example with a dataset with missing values?
@geetikapanda7152
@geetikapanda7152 4 жыл бұрын
I think this video is for a cleaned dataset wherein you have already imputed missing values , gotten rid of outliers to name a few. What you are talking about comes in data preprocessing step
@blackV199
@blackV199 2 жыл бұрын
I have question, LASSO is useful for feature selection, how did you know from the start that only 15 feature (out of the 5000) will be informative ? I want to use LASSO to find and use the informative genes.
@statquest
@statquest 2 жыл бұрын
This video is intended to show how LASSO works and thus, the datasets were created in such a way to highlight feature selection. Thus, we created a dataset were 15 of the features were useful.
@lopamudrapattnaik2711
@lopamudrapattnaik2711 5 жыл бұрын
Pl prepare a video on Bayesian regression
@Endocrin-PatientCom
@Endocrin-PatientCom 5 жыл бұрын
I could not understand the reason why you used the lambda.1se
@statquest
@statquest 5 жыл бұрын
The value for lambda that gives us the lowest mean squared error does not always result in the simplest model. So we find the value for lambda that has a mean squared error that is statistically indistinguishable from the lowest mean squared error (in other words, both mean squared errors are within 1 standard error of each other) that gives us the simplest model. All things being equal (i.e. there is no statistical difference the mean squared errors) we would like the value for lambda that gives us the simplest model, so that is what we use. Doest that make sense? I just woke up from a nap and my brain might not be working yet....
@benjamin_markus
@benjamin_markus 5 жыл бұрын
I'm new to R and though I've looked I wasn't able to find the answer to this: how do I extract the fitted weights from the fit object? also: I've performed this (with a slight modification: I did logistic regression by making the necessary changes according to the video) on my data but the MSE values do not change for different alphas at all - how to interpret this?
@statquest
@statquest 5 жыл бұрын
This page describes how to access the coefficients: web.stanford.edu/~hastie/glmnet/glmnet_alpha.html Basically, you use the print() function, as in print(alpha0.fit), to determine the value of lambda that you are interested in, and then you use the coef() function to extract those coefficients, as in coef(alpha0.fit, s=0.1) (where 's' is the value for lambda. I'm not sure why it's called 's').
@benjamin_markus
@benjamin_markus 5 жыл бұрын
@@statquest thanks a bunch. really useful vids! very generous of you to make them.
@rodrigoalmeida2
@rodrigoalmeida2 4 жыл бұрын
hi josh, iam watchin from Brazil, yout videos are really awesome. in this example, its possible to use regression in non-numeric variable?
@statquest
@statquest 4 жыл бұрын
By "non-numeric", do you mean "categorical"? If so, then yes, you can use those variables as well.
@lizhang9898
@lizhang9898 6 жыл бұрын
hi Josh would you consider a series on multlevel modelling? love your videos
@statquest
@statquest 6 жыл бұрын
I've added Multilevel Models to my "To-Do" list, although it might be a while before I can get to it.
@lizhang9898
@lizhang9898 6 жыл бұрын
looking forward to it!
@lizhang9898
@lizhang9898 6 жыл бұрын
Hi Josh, if it doesn't sound too greedy and pushy :-), perhaps would you also consider a video comparing different mediation analysis packages on R, such as "mediation", "mbess", "processr" (R version of the SPSS macro) etc. I (and some other folks) have been trying to figure out their differences and respective advantages and will certainly appreciate your perspective.
@statquest
@statquest 6 жыл бұрын
I'll put that on the to-do list as well.
@khushijain2272
@khushijain2272 2 жыл бұрын
why is alpha set to 0 for ridge regression?? Isn't that just regular OLS then?
@statquest
@statquest 2 жыл бұрын
Not for this package. The details are explained at 1:34 . You must have missed that part.
@vitordeholandajo156
@vitordeholandajo156 4 жыл бұрын
awesome
@statquest
@statquest 4 жыл бұрын
Thanks! :)
@deprofundis3293
@deprofundis3293 3 жыл бұрын
Apologies if this is an inane question, but is it actually necessary to do the partitioning of a training set (as opposed to simply "ideal" to do it)? I watched the creator of the package's webinar and have looked over the package documentation, and it didn't seem to be a requirement that I partition my data like you do in this example (ie, deliberately creating a training subset). It appears that he performs the cross-validation on the same dataset as the elastic net regression. I really don't think I have enough data to create a training set...I have an unfortunately small sample size (despite extensive efforts - it's a tough field) and a lot of explanatory variables (many of which are correlated). (And it's a categorical DV, so I'm doing a multinomial model, fwiw.)
@statquest
@statquest 3 жыл бұрын
Always just do what you can with the data you have. If you don't have enough data for separate training and testing datasets, then don't split the data up.
@deprofundis3293
@deprofundis3293 3 жыл бұрын
@@statquest thank you, I really appreciate your reply!!
@deprofundis3293
@deprofundis3293 3 жыл бұрын
@@statquest Hi again - I was wondering if you knew how to do this using LOOCV. I emailed Trevor Hastie, explaining my small dataset issue, and he said that LOOCV would make more sense for me, then. But I've looked everywhere and can't find any tutorials or example code that show how to do this. I mean, I know that I'd set the number of folds to be the same as my sample size, but I don't know how else to set the R code up, which steps to skip, etc...all of the examples seem to do the train/test splitting. I understand if it's too much to ask, but any guidance at all would be greatly appreciated!!
@tjinwei
@tjinwei 3 жыл бұрын
Hey Josh. So after running both a ridge and lasso regression models on my data; the MSE values are the same. What does this mean/say about my models..? I tried looking this up but I can't really find anything.
@statquest
@statquest 3 жыл бұрын
It may mean that the penalty is 0.
@tjinwei
@tjinwei 3 жыл бұрын
@@statquest So in other words, my best model is simply just a least squares regression? I also tried using range of alpha values from 0.0 to 1.0, and all 11 MSE values are the same :
@赵宛冰
@赵宛冰 6 жыл бұрын
Could you please answer my question?If you want to use the obtained omics data such as protein/gene matrix to build a machine learning model, should you remove the correlated variables by Elastic-Net Regression or some methods like this?? Thank you a lot!
@statquest
@statquest 6 жыл бұрын
It depends on the method. Removing noise from your data usually helps, though, so it's not a bad idea to try it.
@赵宛冰
@赵宛冰 6 жыл бұрын
@@statquest If it is in modeling, the multicollinearity variable should be removed. However, when doing pathway enrichments during the differential expression analysis, it is desirable to obtain the clusters of similar variables. Should the two situations be treated differently?
@statquest
@statquest 6 жыл бұрын
@@赵宛冰 Of course, those are two separate problems.
@赵宛冰
@赵宛冰 6 жыл бұрын
@@statquest So in omics filed,we also do not include redundant variables in the model even though those variables are significantly differential expression if they are highly correlated?Thank you for your answer!LOVE U~
@statquest
@statquest 6 жыл бұрын
@@赵宛冰 It really depends on what you are trying to accomplish. If you are interested in pathway analysis, then all you use are the differentially expressed genes - all of them - even correlated ones. If you are interested in separating samples - using PCA or LDA or k-means clustering or whatever, again, the differentially expressed genes - all fo them, even the correlated ones - are very useful. However, if you are trying to use gene expression to predict if someone will develop cancer or heart disease, then it's not clear if the correlated genes will help or not. My guess is that they would still help, and Elastic-Net regression does the best in that situation - it treats correlated variables as a group and reduces their influence as a group.
@bibeksharma600
@bibeksharma600 3 жыл бұрын
Calculating mse = ((y.test - predicted)^2) ..... Does this mean that we are calculating the variance and then squaring it and finally dividing by the number of test samples ?
@statquest
@statquest 3 жыл бұрын
What time point are you asking about (minutes and seconds).
@bibeksharma600
@bibeksharma600 3 жыл бұрын
@@statquest I am asking in general is mse = ((y.test - predicted)) is a variance ??? Becuse, we are subtracting predicted from real test value....and in test value we get variance right ?
Regularization Part 1: Ridge (L2) Regression
20:27
StatQuest with Josh Starmer
Рет қаралды 1,1 МЛН
Logistic Regression in R, Clearly Explained!!!!
17:15
StatQuest with Josh Starmer
Рет қаралды 523 М.
Random Emoji Beatbox Challenge #beatbox #tiktok
00:47
BeatboxJCOP
Рет қаралды 61 МЛН
Wait… Maxim, did you just eat 8 BURGERS?!🍔😳| Free Fire Official
00:13
Garena Free Fire Global
Рет қаралды 9 МЛН
StatQuest: Principal Component Analysis (PCA), Step-by-Step
21:58
StatQuest with Josh Starmer
Рет қаралды 2,9 МЛН
7. Lasso, Ridge, and Elastic Net
24:12
Inside Bloomberg
Рет қаралды 23 М.
Regression Trees, Clearly Explained!!!
22:33
StatQuest with Josh Starmer
Рет қаралды 654 М.
Lasso regression - explained
18:35
TileStats
Рет қаралды 19 М.
Linear Regression, Clearly Explained!!!
27:27
StatQuest with Josh Starmer
Рет қаралды 282 М.
LASSO Regression in R (Part One)
1:18:01
David Caughlin
Рет қаралды 24 М.
Intuitive Explanation of Ridge / Lasso Regression
18:50
PawarBI
Рет қаралды 12 М.
glmnet webinar May 3, 2013
1:00:13
ProfTrevorHastie
Рет қаралды 26 М.
Lecture52 (Data2Decision) Detecting Multicollinearity in R
24:31