after 13 lecture i am still interested in coding .first time it happens to me otherwise i started many couses but left after max 10 lectures .this all because of your teaching style. God bless you.keep shinning Thank u for your efforts.
@alihussan1521 Жыл бұрын
Jabardast Hy, Ustad G. Kam chuk k rakho.
@tipsandtricks5722 Жыл бұрын
Alhamdulilah bht kuch seekhny ko mill rha hy . Allah bless u more and more sir.
@tariqfaruqi90 Жыл бұрын
zbrdst paaji
@tasmiaamir56779 ай бұрын
Superbbbbbb Teacher❤
@affanahmedkhan73624 ай бұрын
Jazakallah khair Sir ❤
@Asif-Ali9211 ай бұрын
I am aarish bhatti and I like this video thank you bhatti
@arooj3ddrawing2846 ай бұрын
Aoa! Sir you best teacher
@Codanics6 ай бұрын
Many many thanks
@attiqullah-b6k3 ай бұрын
❤❤
@Mazharhussain_DS3 ай бұрын
sns.lmplot(y='fare',x='age',data=df[df['fare']
@qabulaproduction4665 Жыл бұрын
I apologize for the confusion. Unfortunately, within sns.lmplot(), you cannot directly filter the data for a specific condition. However, you can filter the data beforehand and then pass the filtered data to sns.lmplot()
@AreebaBushra-ef5he5 ай бұрын
sir which extension gives you code suggestions that appear just above the code cell while writing code
@hunainbinsajidАй бұрын
github copilot
@mathswithrashid3704 Жыл бұрын
First understand outliers Second use methods to find them Third replace them Fourth transform them in numpy log Fifth impute data with mean or median
@omarrashedsizan872311 ай бұрын
sns.lmplot(data=df[df['fare'] < 300], x='age', y='fare') its may be work . no erroe generated
@zafarabbas7683 Жыл бұрын
Baba ji, please paste here link of Andrew Abela's guide for plotting. Thanks....
@Hijabfatima1888 ай бұрын
Sir Ai sehkny k lye 6month wali playlist kry ya yehi python ka chilla 40day wlaa plzzz explain
@sadeemqayyum1906 ай бұрын
ye chilla zarori hn us course ky liye
@neelamkhan4714 Жыл бұрын
df['family_size']=df['sibsp']+df['parch']+1
@khanqadeer83478 ай бұрын
df,isnull*100/len(df)
@arooj3ddrawing2846 ай бұрын
Sir can you share link "andrew abela guide for plotting"
@Codanics6 ай бұрын
Please search on Google you will find it out
@abdbhai333910 ай бұрын
Assignment : How to create Family size columns ? df['family_size] = df[ " sibsp " ] + df[ " patch " ]
@Letsgrowtogeatger5 ай бұрын
❤
@zaidinh Жыл бұрын
df2['family_size']=1+df2['parch']+df2['sibsp'] Is it correct?
@Rabia-bp8xq7 ай бұрын
Anybody plz plz tell me how to solve my problem so when i am write anything in VS code and run to cell but no result found and come to error so how i resolve my issue plz tell me any one
@AshokKumar-ud9ed Жыл бұрын
sir im your new student want to be dataanalyst
@Codanics Жыл бұрын
The whole python ka chilla 2023 for data science (Free main) is at this link: shorturl.at/OUY05
@Khanacade5 ай бұрын
please sir check this code # Filter the dataframe filtered_df = df[df['fare'] < 300] # Plot using the filtered dataframe sns.lmplot(data=filtered_df, x='age', y='fare') plt.show()