Пікірлер
@webtech8667
@webtech8667 36 минут бұрын
How to apply filter on the multiple column with multiple criteria?
@mosama22
@mosama22 Күн бұрын
I swear to ALLAH, I LOVE you man 🙂🙂
@husseinimad6922
@husseinimad6922 Күн бұрын
Thank so much it is really helpful
@miracleatimangovictoria7529
@miracleatimangovictoria7529 6 күн бұрын
Thank you so much. ❤❤
@miracleatimangovictoria7529
@miracleatimangovictoria7529 7 күн бұрын
Thank you so much
@emptyslot6972
@emptyslot6972 13 күн бұрын
I guess this only works, if you have meaningful table names and column names. And also a lot of foreign keys
@ProgrammingIsFunn
@ProgrammingIsFunn 7 күн бұрын
I have not tried, but I believe you are right.
@AbdussalamHossainKhan
@AbdussalamHossainKhan 15 күн бұрын
good one
@LearningWithNisa
@LearningWithNisa 19 күн бұрын
thank you so much for simplifying things in easy way.
@donharrold1375
@donharrold1375 21 күн бұрын
All fine but everything you did here could have been done more quickly and efficiently by entering data into a spreadsheet? The real power is sorting and manipulating imported large datasets?
@ProgrammingIsFunn
@ProgrammingIsFunn 20 күн бұрын
Yes
@abinashpradhan2648
@abinashpradhan2648 22 күн бұрын
Hello sir, I want to select cell not in a combined range,but select one cell and then 3rd cell and 6th cell like that in whole data..how to do that please help
@ProgrammingIsFunn
@ProgrammingIsFunn 21 күн бұрын
You need to make union of the range like 1, 3, 6, 9 and so on
@mubashirzia1353
@mubashirzia1353 23 күн бұрын
Great video but I can not store the formatting in excel file. Its showing just dataframe in excel how to fix it?
@nikowabantu6216
@nikowabantu6216 27 күн бұрын
Very helpful.
@TejasNarkhede-u6e
@TejasNarkhede-u6e 28 күн бұрын
Can we refer your video, because I want to collect telemetry data like motor speed, battery voltage ? Guide me how?
@DhavalAhir10
@DhavalAhir10 Ай бұрын
Very nice explanation.
@D2-DataDoctor
@D2-DataDoctor Ай бұрын
Thanks a lot
@sugandhaarora8174
@sugandhaarora8174 Ай бұрын
('Python','Python','Python','Python')
@ProgrammingIsFunn
@ProgrammingIsFunn Ай бұрын
Yes Yes Yes Yes
@maazaamir8485
@maazaamir8485 Ай бұрын
Please provide the source code
@ravi1341975
@ravi1341975 Ай бұрын
This is amazing ,clean explanation and it's working.Looking forward more stuff from you.
@ProgrammingIsFunn
@ProgrammingIsFunn Ай бұрын
Thanks for your comment.
@venkataanbharadwajvedula864
@venkataanbharadwajvedula864 Ай бұрын
Amazing
@ramprakashtripathi643
@ramprakashtripathi643 Ай бұрын
This video is a gem for beginners after scrolling so much on KZbin. Very well explained all concepts related to pivot table in one video itself. Amazing.
@ravi1341975
@ravi1341975 Ай бұрын
Wow this is amazing,i implemented it.Thank you.
@ProgrammingIsFunn
@ProgrammingIsFunn Ай бұрын
well done 👍🏻
@gladysmackenzie9889
@gladysmackenzie9889 2 ай бұрын
Lopez Amy Brown Maria Clark Donna
@PANDURANG99
@PANDURANG99 2 ай бұрын
Authentication and deployment?
@mazharsinging7215
@mazharsinging7215 2 ай бұрын
Nice
@datasciencetoday7127
@datasciencetoday7127 2 ай бұрын
you are so egzited bro its so nice
@JJ-yl5er
@JJ-yl5er 2 ай бұрын
I might not have understood the code correctly, but why do we need to apply further filtering to get filtered_df if the data has already been filtered in previous steps? Perhaps we could do something like the following to get the final filtered_df: # Create for City city = st.sidebar.multiselect("Pick the City", df3["City"].unique()) # Simplified Filter Logic if not city: filtered_df = df3 # If no city is selected, df3 is the final filtered result else: filtered_df = df3[df3["City"].isin(city)] # Filter by city
@Shibaaffan
@Shibaaffan 2 ай бұрын
symmetric difference is the uncommon elements of both the sets. or union minus intersection
@BharatPatel-u4b
@BharatPatel-u4b 2 ай бұрын
when I run my Batch file, I get this error "ImportError: No module named pyodbc"
@ProgrammingIsFunn
@ProgrammingIsFunn 2 ай бұрын
Create virtual env and install pyodbc using pip install pyodbc
@bossmommyjaleesa7764
@bossmommyjaleesa7764 2 ай бұрын
Amazing break down and no gate keeping finally, as well straight to the point. Thank You!
@BrunoLopesPaim
@BrunoLopesPaim 2 ай бұрын
This really helps, thank you for this video. ;-)
@ITGuyatAPS
@ITGuyatAPS 3 ай бұрын
Nice video and very informative, thank you. Do you by any chance know how to display previous, current and next month using calendar module? I tried different formatting tricks but the months are displayed vertically, not horizontally like "cal -3" would show.
@Aapka_apna_shivam
@Aapka_apna_shivam 3 ай бұрын
is this a project or a tutorial ?
@vivekkumarsingh5664
@vivekkumarsingh5664 3 ай бұрын
❤ Awesome video with great example to understand the mongoDb, before watching the video i was little confused but now have a good understanding of the concept of it thanks for making these type of video
@ProgrammingIsFunn
@ProgrammingIsFunn 3 ай бұрын
Thanks Vivek for your support and I am glad it helps you
@youramigo6856
@youramigo6856 3 ай бұрын
writer.save() is now writer.close() append is now removed from pandas hence for appending we need to use concat, combineddf = pd.DataFrame() for sheet in pd.ExcelFile(filename).sheet_names: df = pd.read_excel(filename, sheet_name = sheet) combineddf = pd.concat([df,combineddf], ignore_index = True) combineddf.to_excel(writer,sheet_name = 'All_data', index = False) writer.close()
@ProgrammingIsFunn
@ProgrammingIsFunn 3 ай бұрын
Yes you’re right…… these functions are depreciated ⚠️
@DeepakChauhan-gv2hh
@DeepakChauhan-gv2hh 11 күн бұрын
thanks bro
@Feroz88
@Feroz88 3 ай бұрын
You done an excellent job bro ♥
@MOHITSARASWAT-so7ii
@MOHITSARASWAT-so7ii 3 ай бұрын
easy to understand . thank you sir
@sikiruyusuff1246
@sikiruyusuff1246 3 ай бұрын
My challenges is that the filter is just showing only one item selection.
@sikiruyusuff1246
@sikiruyusuff1246 3 ай бұрын
I have solved the problem by ignoring the datetime filter. The problem occurred might be due to the different dataset used
@Bruno_Knabben
@Bruno_Knabben 3 ай бұрын
Amazing video! Thanks!
@idopshik
@idopshik 3 ай бұрын
Clear explanation , thank you
@nikhilkulal2520
@nikhilkulal2520 4 ай бұрын
I got the error on 29th line kindly give ur contact id number to solve the error
@idopshik
@idopshik 4 ай бұрын
Yes. Pretty clear explanation.
@idopshik
@idopshik 4 ай бұрын
That's super. Very clear.
@ramkumarharish
@ramkumarharish 4 ай бұрын
Great video. Can you please share which version of python, scipy, gensim and streamlit you are using.
@bgupta77
@bgupta77 4 ай бұрын
Very well explained. Request you to please upload more videos.
@ProgrammingIsFunn
@ProgrammingIsFunn 4 ай бұрын
Sure 👍🏻
@joeyevans2876
@joeyevans2876 4 ай бұрын
Very easy and good explanation 👍
@ProgrammingIsFunn
@ProgrammingIsFunn 4 ай бұрын
Thanks for the compliment.
@manuelquintana1340
@manuelquintana1340 4 ай бұрын
Thank you so much, your video was very very useful for me, you save me! Greetings from Colombia
@ProgrammingIsFunn
@ProgrammingIsFunn 4 ай бұрын
I am glad this video is beneficial for you. Keep watching
@sachintyagi2003
@sachintyagi2003 4 ай бұрын
New knowledge 🎉
@mrinmaykhamrui4094
@mrinmaykhamrui4094 4 ай бұрын
here the time series analysis ploting wrong dates are not properly sorted!..
@ProgrammingIsFunn
@ProgrammingIsFunn 4 ай бұрын
Date has not been sorted in that example, if you want sort then you can add additional column then sort accordingly
@mrinmaykhamrui4094
@mrinmaykhamrui4094 4 ай бұрын
@@ProgrammingIsFunn after creating the month_year column I apply the dt.strftime(%Y : %b) and it sorted the column as per date!!. Thank you so much for replying...I didn't realise that u read comments!!! ❤️❤️❤️
@abhisheaksaraswat-ib1of
@abhisheaksaraswat-ib1of 4 ай бұрын
@@mrinmaykhamrui4094 Thanks, I am focusing on comments, pardon in case I missed.
@mrinmaykhamrui4094
@mrinmaykhamrui4094 4 ай бұрын
​@@abhisheaksaraswat-ib1of can I connect with u on LinkedIn!! Am switching my domain from core branch to data analytics!! I could really use ur help!.🙂🙂🙂
@Explore_DataScience
@Explore_DataScience 4 ай бұрын
I found this tutorial very useful..... Appreciated.
@keeplearning9897
@keeplearning9897 4 ай бұрын
Really it is great video.... Please upload more video.... would be great if you have can more and more into the depth.