please sir ji can you create one video about the how to use concatenate name and use Vlookup one sheet to another sheet multi columns data using python?
@zahidimranx2 күн бұрын
Good information ❤
@nikolamickovski95864 күн бұрын
Thanks for the great tutorials!
@dasarijagath6747 күн бұрын
can u provide data set bcz i cant find in ur git hub and i didint undersatnd about from vega_datasets is it a folder name in your local storage?
@dima883211 күн бұрын
I just used your method but I am getting the Warning : Pandas only supports SQLAlchemy connectables ... I imported the same libraries as you did .. Why do i get this warning ?
@ProgrammingIsFunn11 күн бұрын
Due to some updates you are getting warning ⚠️, although you can ignore it. Additionally, you can import and export data using SQL alchemy. You can watch Amy video based on sqlalchmey.
@mohammadmiltonhossen114916 күн бұрын
Nice
@sachintyagi200318 күн бұрын
Brother..... You Create Amazing Dashboard!!!!
@ProgrammingIsFunn18 күн бұрын
I am glad you liked it.
@mosama2222 күн бұрын
Do you mind please make a separate video to explain the closed parameter in pandas' rolling window. Thank you 😊
@rajintawsif403423 күн бұрын
If I want specific cell in the table ?
@ProgrammingIsFunn23 күн бұрын
Specific cell means you want to store the value of specific cell in a variable if yes, then you can use iloc function to navigate the specific row and column using an index.
@sandeepthewanderer23 күн бұрын
I want to learn python with excel programming
@ProgrammingIsFunn23 күн бұрын
Sure, This playlist will help you to with Python and Excel. kzbin.info/aero/PLWuFHho1zKhUypUoktw1bzYlBLbBGajNm
@sandeepthewanderer23 күн бұрын
@ProgrammingIsFunn thank you soo much
@JungoOff24 күн бұрын
what if i don't have a driver, just ['SQL Server', 'SQL Server Native Client 10.0']?
@abhisheksaraswat675324 күн бұрын
If you are not using driver then you can not establish the connection between Python and SQL.
@ProgrammingIsFunn24 күн бұрын
Yes, It is mandatory to invoke sql driver.
@debashishbasu150525 күн бұрын
How to execute my project over internet in my organisation??
@ProgrammingIsFunn18 күн бұрын
Please check your services which offers by your company
@debashishbasu150526 күн бұрын
1 attrition dashboard required
@nkosikhonampungose150026 күн бұрын
Powerful Thanks!
@ProgrammingIsFunn18 күн бұрын
Thanks for appreciation.
@alviseceleste29 күн бұрын
nice work brother
@webtech8667Ай бұрын
How to apply filter on the column with multiple criteria? as blanks cell
@ShreyaPrakash-s6uАй бұрын
I am not able to use txt file for books made in the notebook can anyone please help me
@ShreyaPrakash-s6uАй бұрын
Please reply anyone help me out
@webtech8667Ай бұрын
How to apply filter on the multiple column with multiple criteria?
@mosama22Ай бұрын
I swear to ALLAH, I LOVE you man 🙂🙂
@husseinimad6922Ай бұрын
Thank so much it is really helpful
@miracleatimangovictoria7529Ай бұрын
Thank you so much. ❤❤
@ProgrammingIsFunn18 күн бұрын
You’re welcome!
@miracleatimangovictoria7529Ай бұрын
Thank you so much
@emptyslot6972Ай бұрын
I guess this only works, if you have meaningful table names and column names. And also a lot of foreign keys
@ProgrammingIsFunnАй бұрын
I have not tried, but I believe you are right.
@AbdussalamHossainKhanАй бұрын
good one
@ProgrammingIsFunn18 күн бұрын
Thanks for your feedback!
@LearningWithNisaАй бұрын
thank you so much for simplifying things in easy way.
@donharrold1375Ай бұрын
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Ай бұрын
Yes
@abinashpradhan2648Ай бұрын
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Ай бұрын
You need to make union of the range like 1, 3, 6, 9 and so on
@mubashirzia1353Ай бұрын
Great video but I can not store the formatting in excel file. Its showing just dataframe in excel how to fix it?
@nikowabantu62162 ай бұрын
Very helpful.
@TejasNarkhede-u6e2 ай бұрын
Can we refer your video, because I want to collect telemetry data like motor speed, battery voltage ? Guide me how?
@ProgrammingIsFunn18 күн бұрын
Yes you can but you have to customise your solution based on the nature of the requirement
@DhavalAhir102 ай бұрын
Very nice explanation.
@D2-DataDoctor2 ай бұрын
Thanks a lot
@sugandhaarora81742 ай бұрын
('Python','Python','Python','Python')
@ProgrammingIsFunn2 ай бұрын
Yes Yes Yes Yes
@maazaamir84852 ай бұрын
Please provide the source code
@ravi13419752 ай бұрын
This is amazing ,clean explanation and it's working.Looking forward more stuff from you.
@ProgrammingIsFunn2 ай бұрын
Thanks for your comment.
@venkataanbharadwajvedula8642 ай бұрын
Amazing
@ProgrammingIsFunn18 күн бұрын
Thank you! Cheers!
@ramprakashtripathi6432 ай бұрын
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.
@ravi13419752 ай бұрын
Wow this is amazing,i implemented it.Thank you.
@ProgrammingIsFunn2 ай бұрын
well done 👍🏻
@gladysmackenzie98893 ай бұрын
Lopez Amy Brown Maria Clark Donna
@PANDURANG993 ай бұрын
Authentication and deployment?
@mazharsinging72153 ай бұрын
Nice
@datasciencetoday71273 ай бұрын
you are so egzited bro its so nice
@JJ-yl5er3 ай бұрын
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
@Shibaaffan3 ай бұрын
symmetric difference is the uncommon elements of both the sets. or union minus intersection
@BharatPatel-u4b3 ай бұрын
when I run my Batch file, I get this error "ImportError: No module named pyodbc"
@ProgrammingIsFunn3 ай бұрын
Create virtual env and install pyodbc using pip install pyodbc
@bossmommyjaleesa77643 ай бұрын
Amazing break down and no gate keeping finally, as well straight to the point. Thank You!
@BrunoLopesPaim4 ай бұрын
This really helps, thank you for this video. ;-)
@ITGuyatAPS4 ай бұрын
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_shivam4 ай бұрын
is this a project or a tutorial ?
@ProgrammingIsFunn18 күн бұрын
Both.
@vivekkumarsingh56644 ай бұрын
❤ 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
@ProgrammingIsFunn4 ай бұрын
Thanks Vivek for your support and I am glad it helps you