Тёмный

EDA using Bivariate and Multivariate Analysis | Day 21 | 100 Days of Machine Learning 

CampusX
Подписаться 228 тыс.
Просмотров 85 тыс.
50% 1

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

 

22 авг 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 115   
@ranirathore4176
@ranirathore4176 2 года назад
Date : 27 July Status : Done ✅ Summary: Learn about bivariant and multivariate analysis , bivariant analysis means analysis two columns together , and multivariate means analysing two or more columns together. 1. Numerical Numerical ☘️ Scatterplot ☘️ Pair plot ☘️ Line plot 2. Numerical - Categorical ☘️Boxplot ☘️ Barplot ☘️ Distplot 3 Categorical Categorical ☘️Heatplot ☘️Clustermap
@sid_x_18
@sid_x_18 9 месяцев назад
ab kya kar rahe ho ?
@monikrayu2546
@monikrayu2546 Месяц назад
@@sid_x_18 +1
@rose9024
@rose9024 3 года назад
Best video seen on EDA till date...Great Work!
@fit_tubes_365
@fit_tubes_365 2 дня назад
Course Started : ML Lecture-01: 14/08/2024 Lecture-02: 14/08/2024 Lecture-03: 14/08/2024 Lecture-04: 14/08/2024 Lecture-05: 14/08/2024 Lecture-06: 15/08/2024 Lecture-07: 15/08/2024 Lecture-08: 15/08/2024 Lecture-09: 15/08/2024 Lecture-10: 15/08/2024 Lecture-11: 16/08/2024 Lecture-12: 16/08/2024 Lecture-13: 17/08/2024 Lecture-14: 17/08/2024 Lecture-15: 18/08/2024 Lecture-16: 19/08/2024 Lecture-17: 20/08/2024 Lecture-18: 20/08/2024 Lecture-19: 21/08/2024 Lecture-20: 21/08/2024 Lecture-21: 22/08/2024
@introgaming7540
@introgaming7540 4 месяца назад
BEST VIDEO IN ENTIRE UNIVERSE FOR EDA
@ujefmalek77
@ujefmalek77 Год назад
Yout videos are amazing 🔥🔥, You are most underrated RU-vidr😶
@katadermaro
@katadermaro 3 года назад
Thoroughly enjoying this series. Thank you so much Nitish!
@zkhan2023
@zkhan2023 3 года назад
Every time amazing information comes.Thanks, sir
@user-eq9zj8tl3g
@user-eq9zj8tl3g 11 месяцев назад
I really enjoy the way you go deep in analysis
@Engineer884
@Engineer884 7 месяцев назад
5:00, scatterplot might have updated, correct way: sns.scatterplot(x=tips['total_bill'],y=tips['tip']) 6:26, sns.scatterplot(x=tips['total_bill'],y=tips['tip'],hue=tips['sex']) 10:30 sns.barplot(x=titanic['Pclass'],y=titanic['Age']) 16:10 sns.displot(x =titanic['Age'],kde=True,stat='density',linewidth=0) 18:45 sns.histplot(titanic[titanic['Survived']==0]['Age'],kde=True, stat="density", linewidth=0,fill=False) sns.histplot(titanic[titanic['Survived']==1]['Age'],kde=True, stat="density", linewidth=0,fill=False)
@CatalystOfMisfortune
@CatalystOfMisfortune 5 месяцев назад
groupby is not working for my case
@Bhartiya766
@Bhartiya766 4 месяца назад
thank you bhai
@SYETB076YashJadhav
@SYETB076YashJadhav 4 месяца назад
thanks bro
@preetiyadav9891
@preetiyadav9891 3 месяца назад
thankyou buddy
@user-qv3cr1zc1v
@user-qv3cr1zc1v 3 месяца назад
@@CatalystOfMisfortune i am facing the same problem
@tanmaygupta8288
@tanmaygupta8288 8 месяцев назад
writing code in notebook alongside with you is a great way to learn things, thanks!
@harshkondkar3193
@harshkondkar3193 2 года назад
Hello sir, amazing content. I had one request. Could you make a video on how to perform hypothesis testing in python while doing bivariate analysis? Would be really helpful to a lot of people. Thanks.
@manishpingale6558
@manishpingale6558 Месяц назад
EDA is really an art!
@priyanshugupta9192
@priyanshugupta9192 Год назад
20:00 distplot() is depreciated by seaborn . For kdeplot, which gives probability density, it is giving slightly different graph, which is calculated in above video
@user-sf7nm7sv2u
@user-sf7nm7sv2u Месяц назад
hey, 26:10 (titanic.groupby('Embarked').mean()['Survived']*100) TypeError: agg function failed [how->mean,dtype->object] please help
@user-fu2vn5tp9n
@user-fu2vn5tp9n 9 месяцев назад
slight modification in code at 24:51 is---- (titanic.groupby('Pclass').mean('Survived')['Survived']*100).plot(kind='bar')
@user-fu2vn5tp9n
@user-fu2vn5tp9n 9 месяцев назад
(titanic.groupby('Sex').mean('Survived')['Survived']*100)
@user-fu2vn5tp9n
@user-fu2vn5tp9n 9 месяцев назад
(titanic.groupby('Embarked').mean('Survived')['Survived']*100)
@PM-ps5po
@PM-ps5po 2 года назад
Best Channel on the Earth to Learn Data Science from Scratch🔥🔥🔥🔥
@not_amanullah
@not_amanullah Год назад
didn't find better playlist than this TYSM❤️
@user-fu2vn5tp9n
@user-fu2vn5tp9n 9 месяцев назад
slight modification in code at 33:17 is new = flights.groupby('year').sum('passengers').reset_index() and sns.lineplot(x=new['year'],y=new['passengers'])
@user-sf7nm7sv2u
@user-sf7nm7sv2u Месяц назад
hey, 26:10 (titanic.groupby('Embarked').mean()['Survived']*100) TypeError: agg function failed [how->mean,dtype->object] please help
@lethalgaming7087
@lethalgaming7087 Месяц назад
@@user-sf7nm7sv2u (titanic.groupby('Embarked')['Survived'].mean()*100)
@AmirJaved565
@AmirJaved565 4 месяца назад
CampusX unmatched...Love from Pakistan
@d3vilgamingyt403
@d3vilgamingyt403 Год назад
brother the way u explained i m loving it :)🙂
@beit2608
@beit2608 7 месяцев назад
great exxplanation very in sensitive
@allishere-study5206
@allishere-study5206 10 месяцев назад
Salute hai sir aapko kya padhate aap
@manujkumarjoshi9342
@manujkumarjoshi9342 11 месяцев назад
Beautiful way of doing EDA
@user-oy6pz2vg3x
@user-oy6pz2vg3x 8 месяцев назад
you are best sir
@darshanayenkar
@darshanayenkar Год назад
Best Video ever seen for ML
@arun5351
@arun5351 3 года назад
Very informative lecture and great analysis
@user-zn9yw2dr1t
@user-zn9yw2dr1t 10 месяцев назад
Sir aap jo jo bhi dataset use krte ho please uski Excel file ka link description me de diya kro ese sahi se practice nhi ho pati and really your videos are so awesome😄
@nrted3877
@nrted3877 Месяц назад
Thankyou Sir
@user-eq9zj8tl3g
@user-eq9zj8tl3g 11 месяцев назад
I think finding great insights will take u long long way
@saurabhbarasiya4721
@saurabhbarasiya4721 3 года назад
your videos are very helpfull
@lavupadhyay
@lavupadhyay 2 месяца назад
awesome , 0 to HERO
@shaktis6877
@shaktis6877 Месяц назад
26:14 not sherlock holmes its being ACP Pradyuman from CID
@rajathpoojari7873
@rajathpoojari7873 9 месяцев назад
Awesome content and explanation. Thank you!
@10arsh51
@10arsh51 Год назад
25:17 The Boyz 😂
@sameer9045
@sameer9045 Год назад
Great explanation. I applied pair plot on a 17 column long dataset . And it showed me more than 100 plots. I don't know how to pick which one and understand.😵😵
@GamerBoy-ii4jc
@GamerBoy-ii4jc 2 года назад
Sir is your playlist of 100 days of Machine learning enough to Applying for internship in company? Or i need to do projects more upon these topics and practicals?Please suggest me. Thanks!
@messiisthebest
@messiisthebest Год назад
did you get the internship , i think you need to do more projects
@yogendrajoshi7976
@yogendrajoshi7976 Год назад
you are the best sir.
@mdyounusahamed6668
@mdyounusahamed6668 Год назад
Awesome. Gave me a lot of insights.
@user-tg9uz1pd3c
@user-tg9uz1pd3c Год назад
tx a lot ...made easy to my learning ...
@arshad1781
@arshad1781 3 года назад
Thanks
@Garrick645
@Garrick645 4 месяца назад
19:18 why aren't the probabilities of dying and surviving not adding up to 1 ? My mind can't understand this fallacy. Koi samjaho please 😢😢
@karanparashar6824
@karanparashar6824 4 месяца назад
Didn't know that it is possible to load data using the seaborn library.
@001_chandrikasarkar7
@001_chandrikasarkar7 Месяц назад
lol same
@indra-zd9zu
@indra-zd9zu Месяц назад
😂😂😂​@@001_chandrikasarkar7
@indra-zd9zu
@indra-zd9zu Месяц назад
You cant load all dataset.you can load only inbuit dataset
@itatul
@itatul 2 года назад
Amazing explanation .. thanks
@vishnujatav6329
@vishnujatav6329 2 года назад
Thank you very much sir. you are great
@lakshityagi684
@lakshityagi684 Год назад
Pretty nice content. Thankyou!
@acharjyaarijit
@acharjyaarijit Год назад
bande uhape ultakgaye sare... nice sir..😀😀
@jahidmdhasan1021
@jahidmdhasan1021 Год назад
At 16:25 which extension you have used to check for hue feature in distplot
@Engineer884
@Engineer884 7 месяцев назад
shift+tab
@calvinfernandez1956
@calvinfernandez1956 2 года назад
Hey guys, an update on Seaborn. There is now a 'Future Warning' when ever you run the function 'distplot' saying that it will be discontinued in the future. So I did a little research and found a suitable replacement to it on stack overflow sns.histplot(x =titanic[titanic['Survived']==0]['Age'],kde=True,stat='density',bins = 50). You wont be able to turn off hist tho.
@keshavkarki4635
@keshavkarki4635 Год назад
same I also come across this
@minalgupta7456
@minalgupta7456 Год назад
I am a big fan of you
@goyanii
@goyanii Год назад
free me premium quailty lactures thank you sir
@JACKSPARROW-ch7jl
@JACKSPARROW-ch7jl Год назад
thanxx nitish
@heetbhatt4511
@heetbhatt4511 11 месяцев назад
thank you
@Gurpreetkaur-oj7kb
@Gurpreetkaur-oj7kb 2 года назад
amazing video...
@tusarmundhra5560
@tusarmundhra5560 9 месяцев назад
awesome
@yogeshhajare8234
@yogeshhajare8234 2 года назад
thanks alot brother
@minalgupta7456
@minalgupta7456 Год назад
I like ur videos
@faizahmed8015
@faizahmed8015 10 месяцев назад
6:59 Now one thing I analyze girl are stingy because scatterplot proved...😅😂
@MRAgundli
@MRAgundli 4 месяца назад
done
@AbdurRahman-lv9ec
@AbdurRahman-lv9ec Год назад
great
@rivupangas2735
@rivupangas2735 Год назад
At 17:46 we can use this code: sns.kdeplot(x='Age' ,data=titanic, hue='Survived')
@riyazsk7656
@riyazsk7656 6 месяцев назад
how to know which pair/tuples should be selected for the analysis
@sharangkulkarni1759
@sharangkulkarni1759 Год назад
guru
@mujeebrahman5282
@mujeebrahman5282 Год назад
In scatter plot, where did you get df from? it should have been tips in hue, style and size.
@highflyer30
@highflyer30 Год назад
load dataset not working tried everything updating python,notebook what to do
@adnan8bb805
@adnan8bb805 5 месяцев назад
25:17, "clearly dikh raha hai ki female ko bachaya gaya, aur bande ludhak gae saare "🤣🤣🤣🤣🤣🤣🤣
@tempmail6469
@tempmail6469 3 месяца назад
Bande bahot ludak gye was personal hahahaahaha
@krishnakanthmacherla4431
@krishnakanthmacherla4431 2 года назад
Done
@Star-xk5jp
@Star-xk5jp 7 месяцев назад
Day2- date:10/1/24
@Zovi-kanu
@Zovi-kanu Год назад
plz tell how to download csv file that use in this vedio
@123arskas
@123arskas Год назад
8:11 You're using sex, smoker and size of someother dataset. It should be of tips but you've written df.
@shahrukh3531
@shahrukh3531 Год назад
Hindi sunkr, better feel hota h 😅
@akashmanojchoudhary3290
@akashmanojchoudhary3290 2 года назад
how to plot too many categorical values in seaborn, for eg- I've 150 diseases in diagnosis column. How to plot it?
@akashmanojchoudhary3290
@akashmanojchoudhary3290 2 года назад
can anyone help me with this?
@ajaykushwaha-je6mw
@ajaykushwaha-je6mw 2 года назад
@@akashmanojchoudhary3290 df[diagnosis].value_counts.plot(kind='"bar") or sns.countplot(df['diagnosis'],hue=df['label_column']) or sns.countplot(df['diagnosis'])
@ClubLalpur
@ClubLalpur Год назад
barplot() takes from 0 to 1 positional arguments but 2 were given sir ye error a rha hai
@ajaykuchhadiya5812
@ajaykuchhadiya5812 Год назад
this is bcz the seaborn libraby is updated now , you can check the seaborn documentation and understand that plotting function
@Engineer884
@Engineer884 7 месяцев назад
sns.barplot(x=titanic['Pclass'],y=titanic['Age'])
@ajaykushwaha-je6mw
@ajaykushwaha-je6mw 2 года назад
I have one doubt, Survive have two value 0 and 1. titanic.groupby['Pclass'].mean() how to know whether this give information survived passenger or dead passenger.
@mukeshnayak7984
@mukeshnayak7984 2 года назад
same doubt
@mukeshnayak7984
@mukeshnayak7984 2 года назад
have u found the ans ?
@nikhiliyer8436
@nikhiliyer8436 Год назад
Survived
@aarindey
@aarindey Год назад
0->Dead 1->Survived So, the mean will give Survived
@ruhisharma2857
@ruhisharma2857 2 месяца назад
titanic.groupby['Pclass'].mean()['Survived']
@anantsrivastava5567
@anantsrivastava5567 7 месяцев назад
date 11 jan 2024 day 21
@prithvigupta8215
@prithvigupta8215 Год назад
28:41
@AneeqMir
@AneeqMir 2 месяца назад
slight modification in code 7:45 sns.scatterplot(x=tips['total_bill'], y=tips['tip'],hue=tips['sex'],style=tips['smoker'],size=tips['size']) plt.show()
@highflyer30
@highflyer30 Год назад
not able to load dataset pls help tips=sns.load_dataset("tips") not working
@prathamsaboo
@prathamsaboo 7 месяцев назад
Have you got the solution?
@Engineer884
@Engineer884 7 месяцев назад
I was also facing issue with loading flights and iris, try loading it multiple times , you'll get it
@prathamsaboo
@prathamsaboo 7 месяцев назад
@@Engineer884 I have the solution, I was just asking if he needs it now.
@adityakulkarni371
@adityakulkarni371 Год назад
sns.scatterplot(tips['total_bill'],tips['tip'],hue=df['sex'],style=df['smoker'],size=df['size']) sir shouldn't the smokers/size wala dataset be tips. you have written df. im confused here
@vengeance9898
@vengeance9898 Год назад
I don't know but may be he used seaborn instead of pandas to load the data
@Engineer884
@Engineer884 7 месяцев назад
tips hi likhna chahiye tha
@SACHINKUMAR-px8kq
@SACHINKUMAR-px8kq Год назад
Thankyou so much Sir
Далее
Девочки, у вас тоже так? 💅🏻✨
00:17
МЕГА МЕЛКОВЫЙ СЕКРЕТ
00:46
Просмотров 407 тыс.
SHAP with Python (Code and Explanations)
15:41
Просмотров 57 тыс.
How This New Battery is Changing the Game
12:07
Просмотров 207 тыс.
What is Time Series Analysis?
7:29
Просмотров 187 тыс.