Thanks for this immense amount of valuable Knowledge. You are light to my Life. I am so thankful for raising my curiosity in the field of data. Your dedication for teaching shows how rich you are as a person. I wish more success to you in coming years. Respect for you.
1:39:32 for the same question I used .str.contain() concept. movies[(movies['genres'].str.contains('Action', case=False, na=False)) & (movies['imdb_rating'] > 7.5)].shape[0]
sir aap such mein bhot accha padate baki sabi youtuber se, mein apni data science ki journey aap he start ki h bhot search kiya aap jaisa nhi mila koi. amazing sir.
Reason: at 1:24:10 , csk won only 5 matches in Kolkata because it is a home ground of kkr. So, they have played less matches in Kolkata. Secondly, it is a round robin, so you have to play each team twice, one in your home ground and other in opponent's ground. So, they have played 1 league match in Kolkata in each season. Since there are 14 seasons out of which csk was banned for two years. So, they would have played 12 matches in Kolkata I guess.
movies["lead_actor"] = movies["actors"].str.split('|').apply(lambda x : "" if isinstance(x,float) else x[0]) use this for adding lead actor. It will place empty string where there are no actors else it will select first actor as lead_actor
40/140 While trying to add column in my dataframe, it is showing a warning. :4: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead how to fix that?
Hi Sir, We can upload dataset in Colab permanently as we need to upload the dataset in the google drive through which we are logging in the Google Colab. Colab pulls all the data from the google drive automatically.
I am interested in this course but I have a question, if I buy it from the website I will get the access of the videos of RUclips on the website or not (asking about all 244 videos uploaded)
session-17,Q-18 task Create a function which will take two string(name of two teams) as input. Show win Loss record between them and player getting most player of the match award in matches between these two teams. plz suggestme the ans ..i have tried a lot but not getting the ans plzzzzzzzz
I just want to know a few things as these sessions are available as recordings. So, if any guy wants to join from the middle of the course, that guy will only watch the recordings? Or, Will there be any new series starting anytime soon for new joiners? I am interested to be a paid subscriber though.
you need to watch recordings buddy but sir ka explaination itna clear hai ki sabkuch samjh ajayega aur nahi aya to sir ko doubts puch sakte ho one on one zoom pe aur hamare jaise learners to he hi. paid ka advantage ye he ki apko alagse interview ke liye prepare nahi karna padega
@@Noob31219 Thanks buddy for the clarification. One more doubt I have. Except for RUclips, kuch separate platform ya channel hai jahan doubts puche jaise ki Sir available nahi honge toh koi bi clarify ya help karega ?
#write a function that can return the track record of 2 teams aginst each other mask1=(ipl["Team1"]=="Royal Challengers Bangalore") & ( ipl["Team2"]=="Rajasthan Royals") mask2=(ipl["Team1"]=="Rajasthan Royals") & ( ipl["Team2"]=="Royal Challengers Bangalore") ipl[mask1 | mask2]["WinningTeam"].value_counts()
Best Channel to Learn Data Science and Ai. 🙌
Thanks for this immense amount of valuable Knowledge. You are light to my Life. I am so thankful for raising my curiosity in the field of data. Your dedication for teaching shows how rich you are as a person. I wish more success to you in coming years. Respect for you.
God bless you sir .... India Make Great Again 🇮🇳🤞
1:39:32 for the same question I used .str.contain() concept.
movies[(movies['genres'].str.contains('Action', case=False, na=False)) & (movies['imdb_rating'] > 7.5)].shape[0]
Thank u is a small word... Never i have seen such dedication in you tube video's. excepting very few.. Thank u so much
One of the best teacher when it comes to data science
sir aap such mein bhot accha padate baki sabi youtuber se, mein apni data science ki journey aap he start ki h bhot search kiya aap jaisa nhi mila koi. amazing sir.
Thank you Sir
really awesome way of teaching👍
Thank you sir😁😁😁😁
Reason:
at 1:24:10 , csk won only 5 matches in Kolkata because it is a home ground of kkr. So, they have played less matches in Kolkata. Secondly, it is a round robin, so you have to play each team twice, one in your home ground and other in opponent's ground. So, they have played 1 league match in Kolkata in each season. Since there are 14 seasons out of which csk was banned for two years. So, they would have played 12 matches in Kolkata I guess.
Thankyou sir your videos help me a lot.
You can change the row number: df.rename(index = {old_row: new_row}, inplace = True)
Thanks for this playlist sir . 😊
This channel is underrated. I give you 1000000 thanks sir.
did you give?
1.49.12
# There are some missing values in the actors column so we will first drop those observations
movies.dropna(subset=['actors'], inplace=True)
Sir ji you're OP 🫡❤...
movies["lead_actor"] = movies["actors"].str.split('|').apply(lambda x : "" if isinstance(x,float) else x[0]) use this for adding lead actor. It will place empty string where there are no actors else it will select first actor as lead_actor
yes
Dear sir, it is a request to you kindly update the playlist in order so that we can access and learn in a better way.
Hi Nitish, So can we define dataframe as "A Collection of a series" ?
40/140
While trying to add column in my dataframe, it is showing a warning.
:4: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
how to fix that?
1:34
Hi Sir, We can upload dataset in Colab permanently as we need to upload the dataset in the google drive through which we are logging in the Google Colab. Colab pulls all the data from the google drive automatically.
For to upload data or files in goggle colab connect own colab account to goggle drive by mounting.
I am interested in this course but I have a question, if I buy it from the website I will get the access of the videos of RUclips on the website or not (asking about all 244 videos uploaded)
Cricket acha khelna padta hai.. U say funny things very very seriously,.. I have seen many times... hahah
Sir if I give the membership of this channel than I can access all the lectures series which will locked
session-17,Q-18 task
Create a function which will take two string(name of two teams) as input. Show win Loss record between them and player getting most player of the match award in matches between these two teams.
plz suggestme the ans ..i have tried a lot but not getting the ans plzzzzzzzz
Bro do you have code for the question i.e. return track record of 2 teams ?
import warnings
warnings.filterwarnings('ignore')
def h2h(t1, t2):
mask = ipl[(ipl['Team1'] == t1) & (ipl['Team2'] == t2) | (ipl['Team1'] == t2) & (ipl['Team2'] == t1)]
w1 = mask[ipl['WinningTeam'] == t1].shape[0]
w2 = mask[ipl['WinningTeam'] == t2].shape[0]
print("Matches Played: ", mask.shape[0])
return "{} : {} Vs {} : {}".format(t1,w1,t2,w2)
t1 = input("Enter Team 1: ")
t2 = input("Enter Team 2: ")
h2h(t1,t2)
@@ManpreetSingh-tl3eu import warnings
warnings.filterwarnings('ignore')
def h2h(t1, t2):
mask = ipl[(ipl['Team1'] == t1) & (ipl['Team2'] == t2) | (ipl['Team1'] == t2) & (ipl['Team2'] == t1)]
w1 = mask[ipl['WinningTeam'] == t1].shape[0]
w2 = mask[ipl['WinningTeam'] == t2].shape[0]
print("Matches Played: ", mask.shape[0])
return "{} : {} Vs {} : {}".format(t1,w1,t2,w2)
t1 = input("Enter Team 1: ")
t2 = input("Enter Team 2: ")
h2h(t1,t2)
Give the value content >paid content
mei nitish sir ke free sessions dekhta hun sare but paid session see nhi kr pata dsmp2.0 ke kya koi hai jo help kr skta hai meri ????
I just want to know a few things as these sessions are available as recordings. So, if any guy wants to join from the middle of the course, that guy will only watch the recordings?
Or,
Will there be any new series starting anytime soon for new joiners?
I am interested to be a paid subscriber though.
you need to watch recordings buddy but sir ka explaination itna clear hai ki sabkuch samjh ajayega aur nahi aya to sir ko doubts puch sakte ho one on one zoom pe aur hamare jaise learners to he hi. paid ka advantage ye he ki apko alagse interview ke liye prepare nahi karna padega
@@Noob31219 Thanks buddy for the clarification. One more doubt I have. Except for RUclips, kuch separate platform ya channel hai jahan doubts puche jaise ki Sir available nahi honge toh koi bi clarify ya help karega ?
buy course from website there they provide one on one doubt support
sir pls teach in dark mode
#help# sir panda case study video youtube per live kar dijiye
138k subscribers....... when i am seeing it
253k....
Task Solution for: write a function that can return the track record of 2 teams against each other:-
import warnings
warnings.filterwarnings('ignore')
def h2h(t1, t2):
mask = ipl[(ipl['Team1'] == t1) & (ipl['Team2'] == t2) | (ipl['Team1'] == t2) & (ipl['Team2'] == t1)]
w1 = mask[ipl['WinningTeam'] == t1].shape[0]
w2 = mask[ipl['WinningTeam'] == t2].shape[0]
print("Matches Played: ", mask.shape[0])
return "{} : {} Vs {} : {}".format(t1,w1,t2,w2)
t1 = input("Enter Team 1: ")
t2 = input("Enter Team 2: ")
h2h(t1,t2)
In w1 =mask[mask["winningteam"]==t1].shape[0]
Same for w2
Then no need of importing warning
mask1=(matches["Team1"]=="Royal Challengers Bangalore") & ( matches["Team2"]=="Rajasthan Royals")
mask2=(matches["Team1"]=="Rajasthan Royals") & ( matches["Team2"]=="Royal Challengers Bangalore")
matches[mask1 | mask2]["WinningTeam"].value_counts()
Output:
Royal Challengers Bangalore 13
Rajasthan Royals 12
Name: WinningTeam, dtype: int64
#write a function that can return the track record of 2 teams aginst each other
mask1=(ipl["Team1"]=="Royal Challengers Bangalore") & ( ipl["Team2"]=="Rajasthan Royals")
mask2=(ipl["Team1"]=="Rajasthan Royals") & ( ipl["Team2"]=="Royal Challengers Bangalore")
ipl[mask1 | mask2]["WinningTeam"].value_counts()
if anyone see matches are not define