scikit-learn vs Deep Learning
1:50
My top 50 scikit-learn tips
2:47:31
Жыл бұрын
21 more pandas tricks
24:40
2 жыл бұрын
Load a toy dataset into a DataFrame
2:11
Add feature selection to a Pipeline
2:29
Пікірлер
@aniket33591
@aniket33591 Күн бұрын
I am new to this, so can you please tell me when and how to perform stratify train test split and resampling of data like smote in this approach?
@mitchellyula4447
@mitchellyula4447 10 күн бұрын
Thank you so much! I never used the groupby function until now and this helped me complete my pandas assignment! very clear explanation and your videos have helped me a ton!
@raneshmitra8156
@raneshmitra8156 19 күн бұрын
drinks.groupby('continent').mean(numeric_only = True)
@raneshmitra8156
@raneshmitra8156 19 күн бұрын
orders.choice_description.str.replace('[\[\]]','',regex = True)
@xandrviking1113
@xandrviking1113 20 күн бұрын
Thanks Kevin 👍🤝 . In 2024 it still relevant to learn .
@brianwaweru9089
@brianwaweru9089 22 күн бұрын
One thing about this guy is that he gives very deep insights which you'll get nowhere else. As much as possible he'll give best practises, I have observed this from way back in the pandas course. Thanks so much Kevin. Please do deep learning and in-depth feature engineering tricks in a future video.
@dataschool
@dataschool 27 күн бұрын
Is the mean() method not working for you? You need to include the argument numeric_only=True, for example: drinks.mean(numeric_only=True). This is a new requirement in pandas for cases in which you want to calculate the mean of numeric rows or columns and the DataFrame contains non-numeric data. Hope that helps!
@raneshmitra8156
@raneshmitra8156 19 күн бұрын
Thank you for your update...... Your explanation is truly awesome.......
@guruprakashsoma9143
@guruprakashsoma9143 29 күн бұрын
sir the mean function is not working for me
@dataschool
@dataschool 27 күн бұрын
You need to include the argument numeric_only=True, for example: drinks.mean(numeric_only=True). This is a new requirement in pandas for cases in which you want to calculate the mean of numeric rows or columns and the DataFrame contains non-numeric data. Hope that helps!
@119busanovic
@119busanovic Ай бұрын
best pandas tutorial
@dataschool
@dataschool Ай бұрын
Thank you!
@aditimohapatra312
@aditimohapatra312 Ай бұрын
sir why in the last 2 cases where we didn't specify, in there with mean it is not executed but with min, max and count, it is being executed without showing any error? same for the visual form also?? help
@atifdai313
@atifdai313 Ай бұрын
I am using the yearly data....Suppose my data is showing 33 rows and 20 columns (20 columns also including the years (1999 to 2022) in my summary stat analysis. How can I exclude the year's column from my whole analysis? OR I should delete the year's column. Please guide us further regarding any data shape command.
@bilalahmad9177
@bilalahmad9177 Ай бұрын
You are a great instructor. I have learned a lot from you regarding pandas. The video with title "How do I merge DataFrames in pandas?" has left some queries in my mind. I would be thankful to you if you clear those too. What type of join is used here movie_ratings = pd.merge(movies , ratings)? if it is inner join it should result in 1682 rows in total in movie_ratings dataframe, as movies dataframe has 1682 rows. But in video i have observed that movie_ratings results in 100,000 rows of data.
@y_limit_yourself
@y_limit_yourself Ай бұрын
Sir, you are the GOAT 🐐🐐
@dataschool
@dataschool Ай бұрын
You are too kind! 🙌
@monotonous_0
@monotonous_0 Ай бұрын
If mean is not working for you: We first have to drop 'country' and 'continent' columns, these columns contain strings so we can't do mean with them. drinks = drinks.drop(['continent','country'],axis = 1)
@ujan_saheli
@ujan_saheli Ай бұрын
Thanks
@dataschool
@dataschool 27 күн бұрын
Alternatively, you can include the argument numeric_only=True, for example: drinks.mean(numeric_only=True). That way, you can still perform the mean operation without dropping data that you might want to keep. Hope that helps!
@testtest-ws7uc
@testtest-ws7uc Ай бұрын
Hello, for a dataframe with 5000 rows and 13 columns how do we impute multiple entries. Some are numeric and some are categorical
@Astute_
@Astute_ Ай бұрын
while performing the mean operation, it shows that it could not convert the country's name to numeric , its an error. What to do?
@dataschool
@dataschool 27 күн бұрын
You need to include the argument numeric_only=True, for example: drinks.mean(numeric_only=True). This is a new requirement in pandas for cases in which you want to calculate the mean of numeric rows or columns and the DataFrame contains non-numeric data. Hope that helps!
@mospher9253
@mospher9253 Ай бұрын
Could you do Pytorch tips like you dod with sklearn ?
@dataschool
@dataschool Ай бұрын
Thanks for the suggestion, I'll consider it for the future!
@Astute_
@Astute_ Ай бұрын
The shift tab trick is not working (I have windows and I am operating on vs code , jupyter notebook)
@soumyadeepsarkar2119
@soumyadeepsarkar2119 Ай бұрын
6:50
@crigar001
@crigar001 Ай бұрын
Es posible obtener mas descuento solo tengo $50 para este curso, estamos en Colombia y esto a ca esta dificil.
@dataschool
@dataschool Ай бұрын
Thanks for your interest! I automatically offer a 65% discount to people in Colombia, bringing the cost down from $299 to $105. However, I'm willing to offer greater discounts on a case-by-case basis. Please email me to follow up: kevin at dataschool dot io. Thanks!
@bellanatrisha1201
@bellanatrisha1201 Ай бұрын
omg...thank you so muchhhh
@dataschool
@dataschool Ай бұрын
You're welcome! I'm glad it was helpful to you!
@shanthidinakaran5574
@shanthidinakaran5574 Ай бұрын
Thank you so much for all your Pandas sessions, it was very detailed and covered almost all required basics.. !!!
@dataschool
@dataschool Ай бұрын
You're very welcome!
@anikaverma9667
@anikaverma9667 Ай бұрын
just found your channel a few days ago , thanks for helping and Happy marriage ( a lil too late but... 😁)
@dataschool
@dataschool Ай бұрын
Thank you so much! 🙌
@sedighehnadaei1895
@sedighehnadaei1895 Ай бұрын
As always you did great.thank you so much ❤
@dataschool
@dataschool Ай бұрын
You are so welcome!
@Induraj11
@Induraj11 Ай бұрын
wow.. much appreciate ur efforts sir.. i learned Pandas 3 years before purely from ur videos.. it helped me to get job as well.. i am very thankful to you. ❤
@dataschool
@dataschool Ай бұрын
That is excellent to hear, thanks so much for letting me know! 🙌
@samderrty123
@samderrty123 Ай бұрын
What about the math concept that comes with this?
@dataschool
@dataschool Ай бұрын
Great question! I touch on mathematical concepts when they are relevant to the course, but the course is highly practical, and most of the underlying math does not have to be deeply understood in order for you to be effective with Machine Learning. Hope that helps!
@dataschool
@dataschool Ай бұрын
This is the outline of my NEW course, "Master Machine Learning with scikit-learn." You can enroll here: courses.dataschool.io/master-machine-learning-with-scikit-learn
@vikasingle3972
@vikasingle3972 Ай бұрын
Very excited..!
@dataschool
@dataschool Ай бұрын
Thanks! I hope you enjoy the course!
@HARSHRAJ-2023
@HARSHRAJ-2023 Ай бұрын
I am from India and your course is way too costly.
@dataschool
@dataschool Ай бұрын
Thanks for sharing! Actually, I offer a 75% discount to people living in India. You can visit this page to access your discount code - courses.dataschool.io/discounts - or you can email me at [email protected]
@HARSHRAJ-2023
@HARSHRAJ-2023 Ай бұрын
@@dataschool That's a great discount. Thanks Kevin.
@dataschool
@dataschool Ай бұрын
You're very welcome! I hope you enjoy the course!
@hazmashahidchoudrychoudry1693
@hazmashahidchoudrychoudry1693 Ай бұрын
​@@dataschool hey Kevin what's about Pakistani peoples .... I'm from Pakistan
@dataschool
@dataschool Ай бұрын
This is the overview of my NEW course, "Master Machine Learning with scikit-learn." You can enroll here: courses.dataschool.io/master-machine-learning-with-scikit-learn
@ranatanzeel1053
@ranatanzeel1053 Ай бұрын
Thanks ❤
@dataschool
@dataschool Ай бұрын
You're welcome!
@dataschool
@dataschool Ай бұрын
This is a lesson from my NEW course, "Master Machine Learning with scikit-learn." You can enroll here: courses.dataschool.io/master-machine-learning-with-scikit-learn
@Malbao14
@Malbao14 Ай бұрын
Amazing! Thank you for the tip!
@dataschool
@dataschool Ай бұрын
You’re very welcome! Glad it’s helpful!
@dataschool
@dataschool Ай бұрын
This is a lesson from my NEW course, "Master Machine Learning with scikit-learn." You can enroll here: courses.dataschool.io/master-machine-learning-with-scikit-learn
@freenrg888
@freenrg888 Ай бұрын
7 years later, this helped me. Thank you.
@dataschool
@dataschool Ай бұрын
You're welcome!
@SodaPy_dot_com
@SodaPy_dot_com Ай бұрын
so far so good
@dataschool
@dataschool Ай бұрын
Great!
@aleksandartta
@aleksandartta Ай бұрын
Hello Kevin, thank you very much... I have two questions: 1) after hyper parameters tunning and cross validation, the final model should be some that is trained on the whole dataset (meaning train + validation set)? Am I right? 2) do we need cross validation if the dataset is very big (and how to know how big :) ? i.e. when cross validation is not necessary?
@dataschool
@dataschool Ай бұрын
Great questions! 1. Yes, re-train the tuned model on the entire dataset (meaning all samples for which you know the target value). 2. Yes, cross-validation is a useful model evaluation procedure with any size dataset, with the possible exception of a very tiny dataset. (Below a certain number of samples, no model evaluation procedure is particularly useful.) Hope that helps!
@dataschool
@dataschool Ай бұрын
This is a lesson from my NEW course, "Master Machine Learning with scikit-learn." You can enroll here: courses.dataschool.io/master-machine-learning-with-scikit-learn
@dataschool
@dataschool Ай бұрын
This is a lesson from my NEW course, "Master Machine Learning with scikit-learn." You can enroll here: courses.dataschool.io/master-machine-learning-with-scikit-learn
@rishidixit7939
@rishidixit7939 Ай бұрын
As a beginner in ML are there jobs / internships available where they use only SkLearn or most jobs today use advanced Deep Learning Libraries like PyTorch or Tensorflow
@dataschool
@dataschool Ай бұрын
Excellent question! Most Machine Learning problems don't actually require Deep Learning, and so yes, there are definitely jobs and internships that use only scikit-learn. Hope that helps!
@rishidixit7939
@rishidixit7939 Ай бұрын
@@dataschool Thanks for the reply. Actually recently saw some some AI doing Exploratory Data Analysis so I was worried that will jobs be lost before I even start 😅
@dataschool
@dataschool Ай бұрын
It's an understandable concern! The field will continue to evolve as new tools become available, but it will be those people who have a deep understanding of what they are actually doing who will benefit the most, in my opinion!
@Tom_34321
@Tom_34321 Ай бұрын
Excellent 🇿🇦
@dataschool
@dataschool Ай бұрын
Thanks!
@FernandoWartchow
@FernandoWartchow Ай бұрын
Great explanation
@dataschool
@dataschool Ай бұрын
Thank you!
@dataschool
@dataschool Ай бұрын
This is a lesson from my NEW course, "Master Machine Learning with scikit-learn." You can enroll here: courses.dataschool.io/master-machine-learning-with-scikit-learn
@AbdallahProgrammer
@AbdallahProgrammer Ай бұрын
Thank you so much for this awesome playlist it is really helpful
@dataschool
@dataschool Ай бұрын
Glad it was helpful!
@Aldotronix
@Aldotronix Ай бұрын
for using ols in statsmodels.api is okay to drop?
@MohammadrezaMokhtari-qh2yg
@MohammadrezaMokhtari-qh2yg 2 ай бұрын
amazing information. wow! thank you so much man.
@dataschool
@dataschool Ай бұрын
You're very welcome!
@StayMotivate-or7rf
@StayMotivate-or7rf 2 ай бұрын
Hello sir you are doing great work for our community,but I have a humble request please make video on maths learning topics which are important to become AI and ml engineer with proper guidance and free learning resources and full roadmap of learning mathematics please sir ! 🙏🙏 But thanks for your hardwork😊.
@dataschool
@dataschool Ай бұрын
Thanks so much for your suggestions, I appreciate it! I'll do my best!
@user-zt5lt4vb5x
@user-zt5lt4vb5x 2 ай бұрын
Superb
@dataschool
@dataschool Ай бұрын
Thank you!