views dont justify your hardwork and ease with which you teach
@campusx-official3 жыл бұрын
Sach me sir :(
@rahulgiri98802 ай бұрын
Superb explanation. Not easy to explain that so simply. Appreciate you for sharing your great wisdom & knowledge.
@shaikusman536Ай бұрын
Awsome explanation Guruji...Respect from bangalore.
@princeking3702 жыл бұрын
its the best video i have seen on you tube 🔥🔥🔥
@pravinshende.DataScientist2 жыл бұрын
by watching your vedios , every time getting new glimses ...and it helping me to enrich my knowledge..for data science!! thank a lots!
@kanakkanak1520 Жыл бұрын
BEST!! you are the best teacher!
@sujithsaikalakonda48632 жыл бұрын
Great lecture sir. Lot of respect.
@GaganDeep-mj5hi3 жыл бұрын
Thank you sir for video. You have cleared all the logics and doubts.
@prathmeshdesai4480 Жыл бұрын
Hi Sir, thank you so much for the wonderful explanation. Was very helpful. Also would like to point out a small mistake. While accessing max number of 4's or 6's, there had to be a condition that the score was with single ball, other wise, there are batsman scoring 4 with multiple balls too. Sharing correct code below deli[deli['ball']==1][deli['batsman_runs']==4].groupby('batsman').sum().sort_values('batsman_runs',ascending=False).head()
@rakeshnagarkar8759 Жыл бұрын
The code which provided by the campusx is correct. if you check the dataset carefully it is clearly mention that for each ball there is a separete batsman_run column(row)
@abhayrana5965 Жыл бұрын
Those students are blessed!
@Darkwolf928023 күн бұрын
13:56 method 2: # Mask to filter only the rows where batsman scored 6 mask = delivery['batsman_runs'] == 6 new_delivery = delivery[mask] # Count the number of times each batsman hit a 4 top_batsmen_sixes = new_delivery['batsman'].value_counts().head() top_batsmen_sixes
@smitrathod23302 жыл бұрын
Best lect. Sir hats off 😁👍👍
@life3.0882 жыл бұрын
accept too much love from us i mean from pakistan student who follow u
@dikshagupta32762 жыл бұрын
On which domain pls suggest .nice explanation
@zkhan20233 жыл бұрын
The whole video is good but can you please share the last line of code where you have added an index zero. but the rest was good
Konsa website per career section me jana hain sir cricket me bhi post dekhne ke liye
@talkswithRishabh2 жыл бұрын
awesome explanation thanks sir
@Mjeditz87 Жыл бұрын
Sir,Can we use nlargest(5) instead of sort_values() for finding top 5 bats_man
@life3.0882 жыл бұрын
u r my great sir
@sriyansh32378 ай бұрын
Dataset not available. Now how will I continue?
@30yuvrajingale485 ай бұрын
bro they have provided the link
@sriyansh32375 ай бұрын
@@30yuvrajingale48 where?
@30yuvrajingale484 ай бұрын
keep it up and all the best!!!
@nehasen73132 ай бұрын
sir i am unable to read the file...it is showing ( UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcb in position 10: invalid continuation byte )
@TarunSharma-js8tfАй бұрын
Use r'(path)
@khanaslam57223 ай бұрын
Sir ap ke file hack hu rahe hai kaggle se download ke hai
@abdulwasay85403 ай бұрын
how to calculate that which team has conceded most runs
@abdulwasay85403 ай бұрын
mask3 = delivery.groupby("bowling_team") mask3["total_runs"].sum().sort_values(ascending = False).head(5) Thank me later.
@rahulstudies11782 жыл бұрын
sir how to find most wickets using this deliveries.csv ?
runs.get_group('V Kohli').shape - this line doesn't represent ball played ball V Kohli but we can get the balls by - runs['ball'].sum() or runs.get_group('V Kohli')['ball'].sum() . It gives sum of the ball's played by the players. If i am wrong plz comment.
@amarmallick797 ай бұрын
is the dataset available?
@animeshbasak490 Жыл бұрын
def maxscored(batsman_name): vk=df[df['batsman']==batsman_name] return vk.groupby('bowling_team')['batsman_runs'].sum().sort_values(ascending=False).index[0] sir can you please tell me why I'm getting error on index[0]
@prathmeshdesai4480 Жыл бұрын
This code is correct. I ran the same code its working. check if you are using the correct data(csv file) or copy paste the entire error message in chatgpt. Hope this helps
@MRAgundli6 ай бұрын
I have same problem bro , did you get tackle ?
@yashkumariitdelhi63635 ай бұрын
@@MRAgundli just remove the commas from the variable batsman_name