Indexes in Pandas | Python Pandas Tutorials

  Рет қаралды 59,642

Alex The Analyst

Alex The Analyst

Күн бұрын

Пікірлер: 43
@henriqueleijoto3100
@henriqueleijoto3100 Жыл бұрын
Your SQL tutorial project helped me in getting my first job! I have no words to thank you, I was struggling financially. Keep up the great work!!!
@Aistory156
@Aistory156 Жыл бұрын
you only learn sql
@chanell3166
@chanell3166 Жыл бұрын
Can you elaborate on what else you did?
@smktube5205
@smktube5205 4 ай бұрын
are you serious ? like how on earth could a SQL knowledge no matter how advanced land you a job ??????
@tigerch333
@tigerch333 26 күн бұрын
In countries like US, UK u can get it. In India it's not possible ​@@smktube5205
@leucam375
@leucam375 6 ай бұрын
I have always struggled with filtering in pandas because the way it works is so different from that in other languages which I am familiar with. Thank you for making this video which is an excellent summary of the possibilities that I can refer to when I need to filter my data.
@kevindeschepper8140
@kevindeschepper8140 5 ай бұрын
df.xs('Australia', level='Country') met cross section kan je op land zoeken zonder continent te specifieren, geweldige serie, alles gevolgd tot nu toe. Je tempo is top, niet te snel niet te langszaam
@MrMikeymontemayor
@MrMikeymontemayor Жыл бұрын
Just as a quick tip: to see the drop down options inside the parenthesis you have to use: "Shift" +"Tab" and slightly place the cursor in the bottob half of the parenthesis.
@dhirajkafle47
@dhirajkafle47 Жыл бұрын
thanks, it is helpful
@vyvern1615
@vyvern1615 Жыл бұрын
that helps alot
@aayushisharma6582
@aayushisharma6582 2 күн бұрын
thankss
@sj1795
@sj1795 10 ай бұрын
Another great video! I'm SO EXCITED that I've made it this far through your bootcamp series. Also, super happy that I finally get to learn about Pandas! I can't wait to finish this series and start on your Analyst Builder courses! :) As always, THANK YOU ALEX!!
@saladdinsaadeh4870
@saladdinsaadeh4870 9 ай бұрын
how did you find the analyst builder course? is it similar to this one or does it provide alot of new material?
@tedanthonytarona8355
@tedanthonytarona8355 Жыл бұрын
I just told my entire family that i learned how to do power bi because of you! Told them also to subscribe!!
@gphanisrinivasful
@gphanisrinivasful 2 ай бұрын
10:35 Actually sort_index() also has an 'inplace' parameter (similar to set_index()). You have to set inplace=True for the underlying integer index to change to the new order. Executing df.iloc[1] after setting inplace=True for sort_index() will give Angola as the output.
@onosemuodeikuesiri7620
@onosemuodeikuesiri7620 29 күн бұрын
true
@nimrod4463
@nimrod4463 Жыл бұрын
8:18 Do notice that Alex changes it quickly to ROWS and not COLUMNS, he shows the max rows of the table.
@DreaSimply21
@DreaSimply21 Жыл бұрын
Thank you for helping me understand iloc!
@jellymaneducation6168
@jellymaneducation6168 Жыл бұрын
Hi Alex, I just came across your channel. Amazing. I just started doing KZbin myself in the last year or so. Was wondering if you have some tips on how you were able to build such a massive channel in just a few short years?
@carolwrezende
@carolwrezende Жыл бұрын
Please, teach us how to clean data with pandas Great channel!!🤓
@muhammadsaadmalik9059
@muhammadsaadmalik9059 8 ай бұрын
Hi Alex, you mentioned that iloc didn't work in multi-index but as I practice it was not working since we didn't save the changes after sorting multi-indexes.
@simhz2221
@simhz2221 Жыл бұрын
Hi Alex - it would be amazing if you did a deep dive on the new Seaborn Objects API. I personally tried it and think it is the future of Python visualization. Amazing video as always!
@adwaamohamed2674
@adwaamohamed2674 17 күн бұрын
very useful thank you
@ivanko-nebo
@ivanko-nebo Жыл бұрын
Hi, Alex! How do you open that info panel on 7:17?
@moxie1189
@moxie1189 Жыл бұрын
Press Shift+Tab after the opening bracket
@Niranga.555
@Niranga.555 Жыл бұрын
Thank you Alex...!
@NorovsambuuPurevsuren
@NorovsambuuPurevsuren Жыл бұрын
Hi Alex! what do you think about pandas 2.0?
@watergate-Shorts
@watergate-Shorts 2 ай бұрын
why you used '#' with pd.set_option? isn't hashtag for comments?
@LBR0808
@LBR0808 Жыл бұрын
Hi Alex, can you make a video about Alteryx? I heard that they can do analytics automated
@theravikk1755
@theravikk1755 Жыл бұрын
Please make a video on Microsoft copilot(AI powered) It will replace data analysts?
@fabscocoa3452
@fabscocoa3452 Жыл бұрын
Thank you!
@naagarhive6581
@naagarhive6581 9 ай бұрын
sir, the way you highlight your 'OOPs'. 😂
@chefernandez563
@chefernandez563 Жыл бұрын
anyone else keep getting errors with inplace = True?
@chenliu4506
@chenliu4506 9 ай бұрын
Can anyone help? Why after i sort_index, the dataframe wasn't group by Continent?
@rajatsrivastava2792
@rajatsrivastava2792 9 ай бұрын
same problem did you find solution
@MyAwfulUsername
@MyAwfulUsername 9 ай бұрын
We have to do df.sort_index(inplace = True) to sort our existing dataframe. Without the inplace=True it creates a new sorted dataframe that would need to be assigned to a new variable
@ridwanadeoye8400
@ridwanadeoye8400 8 ай бұрын
Its all about the order of setting the index...Oga Alex didn't show us that he'd switched the indexes from df.set_index(["Country","Continent"]) to df.set_index(["Continent","Country"])
@adjieaja23
@adjieaja23 5 ай бұрын
df = df.set_index(['Continent','Country']) df = df.sort_index(ascending=[False, True]) print(df) i hope that can help u
@yurobert3007
@yurobert3007 11 ай бұрын
Pretty cool.
@sarahwacha8894
@sarahwacha8894 Жыл бұрын
Hi Alex, at 8:14 am getting this error AttributeError: module 'pandas' has no attribute 'set_options', what do i do?
@zainabshaikh9139
@zainabshaikh9139 Ай бұрын
It's option not option"s" Try this: pd.set_option('display.max_rows', None)
@AashishKidsChannel
@AashishKidsChannel Жыл бұрын
Watching your all videos are finished sir then I download certificate In that my certification why r u not signing sir that is valid certificate for me pls reply
Group By and Aggregate Functions in Pandas | Python Pandas Tutorials
11:05
Merging DataFrames in Pandas | Python Pandas Tutorials
22:09
Alex The Analyst
Рет қаралды 114 М.
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 48 МЛН
Day in the Life of a Data Analyst (Work From Home) | *Realistic*
9:05
Coding with Dee
Рет қаралды 144 М.
FASTEST Way to Become a Data Analyst | Data Analyst Roadmap 2024
6:26
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 413 М.
Reading in Files in Pandas | Python Pandas Tutorials
19:17
Alex The Analyst
Рет қаралды 195 М.
How do I use the MultiIndex in pandas?
25:01
Data School
Рет қаралды 175 М.
Filtering Columns and Rows in Pandas | Python Pandas Tutorials
11:49
Alex The Analyst
Рет қаралды 96 М.
Data Cleaning in Pandas | Python Pandas Tutorials
38:37
Alex The Analyst
Рет қаралды 327 М.
25 Nooby Pandas Coding Mistakes You Should NEVER make.
11:30
Rob Mulla
Рет қаралды 275 М.