Complete Python Pandas Data Science Tutorial! (Reading CSV/Excel files, Sorting, Filtering, Groupby)

  Рет қаралды 3,290,883

Keith Galli

Keith Galli

Күн бұрын

Пікірлер: 2 000
@KeithGalli
@KeithGalli 3 жыл бұрын
Hey ya'll! I created a second channel with more Python content (including additional Pandas tips & tricks). Please consider subscribing 😊 kzbin.info
@sam7250ii
@sam7250ii 3 жыл бұрын
You cleverly edited the code between 25:50 to 25:59 list(df.columns.values) to list(df.columns)😉👍
@Vribejs
@Vribejs 3 жыл бұрын
Error:Cannot mask with non-boolean array containing NA / NaN values - gives me error when usinf df.loc (on 40:49 in video)? df.loc[df['Our Global Company'].str.contains('Smith', regex=True)]: this is code, I imported another .xlsx table when practising.
@yidizhou9899
@yidizhou9899 3 жыл бұрын
@@Vribejs go google it... you can't expect him to do it for you. He checked the documentation just to give us a good overview of pandas.... google out your error if not you will not learn.
@chiraggupta1897
@chiraggupta1897 3 жыл бұрын
i have been working on a excelworkbook having 8 worksheet and i m performing operations on data nd want to place dataframe in the 6 sheet in place of its data .but everytime i do all other sheets gets vanished nd a single gets get formed with the dataframe .plzz help me in appending df into an existing excel
@benten5018
@benten5018 3 жыл бұрын
Hey Keith , can can please help me to download the csv.file on an android tablet. sorry for bad english.
@jcspaziano
@jcspaziano Жыл бұрын
I know this is 5 years old but I learned more about using Pandas from this one video than all the other videos ive watched on the topic combined! Just awesome! Thank you!
@KeithGalli
@KeithGalli Жыл бұрын
Glad that it is still helpful!!
@_Nelyen
@_Nelyen Жыл бұрын
This video was super helpful, thank you Keith! In case anyone gets to the end of this video, around 48:00, Keith talks about the groupby operator and starts to go over the section "Aggregate Statistic using Groupby (Sum, Mean Counting)". You might run into errors due something that changed after Pandas version 2.0.0. Instead of writing: df.groupby(["Type 1"]).mean() Try writing: df.groupby(["Type 1"]).mean(numeric_only=True) After version 2.0.0 the numeric_only value was changed to False versus True as it's default, causing errors such as "can not convert strings". Hope this is helpful, have a good one!
@ljubicabrenjo2794
@ljubicabrenjo2794 Жыл бұрын
Thank you very much, I ran into the problem, this is really helpful! :)
@mayowafele9691
@mayowafele9691 Жыл бұрын
Thank you
@NachtHere
@NachtHere Жыл бұрын
Thanks Man .
@mrme2120
@mrme2120 Жыл бұрын
Thanks Dude
@rajdevanshu65
@rajdevanshu65 Жыл бұрын
Was facing the same issue, thanks a lot.
@piotr5830
@piotr5830 Жыл бұрын
Hi Keith - not sure you will read this but wanted to sincerely thank you for this tutorial. 3 years ago this was the first python video I ever watched after graduating from unrelated subject. Today I'm typing this from a business class lounge at JFK, on my way to London where I just got a job as a quant developer at a hedge fund, building pricing models and infra for trading. Worked hard for this but if not for your videos I could be at a very different place. Thank you from the bottom of my heart, your work means a lot to many people. Cheers!
@Eizengoldt
@Eizengoldt Жыл бұрын
Bro hire me
@mydailystruggles
@mydailystruggles 8 ай бұрын
can you tell us more about your journey? :)
@mcxanbur
@mcxanbur 2 ай бұрын
screenshotted and favourited
@nikithroumpari2553
@nikithroumpari2553 2 жыл бұрын
A strugling biologist here thanks you! We are mostly dealing with big data and it can get a little overwhelming, but you made it a lot easier!
@waterwanderer.mattyy
@waterwanderer.mattyy 2 жыл бұрын
Awesome
@jankucera8505
@jankucera8505 2 жыл бұрын
big data in a csv file? lol
@mfundokhumalo3933
@mfundokhumalo3933 Жыл бұрын
Hey, you might enjoy SAS
@manan-543
@manan-543 Жыл бұрын
they dont lie when they say data is everywhere and every field needs data scientists
@prubin18
@prubin18 3 жыл бұрын
Great video! One of the best pandas tutorials I've seen. I have one comment though. When you run (at 40:00) df.loc[df['Name'].str.contains('Mega')]) You are actually including Meganium in this filter, even though it is not a Mega pokemon. So, one needs to include a space after Mega, such as: df.loc[df['Name'].str.contains('Mega ')]) One can see that this makes a difference because when you run len(df.loc[df['Name'].str.contains('Mega')])) and len(df.loc[df['Name'].str.contains('Mega ')])), to know the number of rows, there are two distinct outputs (respectively 49 and 48)
@KeithGalli
@KeithGalli 6 жыл бұрын
Video Outline! 0:45 - Why Pandas? 1:46 - Installing Pandas 2:03 - Getting the data used in this video 3:50 - Loading the data into Pandas (CSVs, Excel, TXTs, etc.) 8:49 - Reading Data (Getting Rows, Columns, Cells, Headers, etc.) 13:10 - Iterate through each Row 14:11 - Getting rows based on a specific condition 15:47 - High Level description of your data (min, max, mean, std dev, etc.) 16:24 - Sorting Values (Alphabetically, Numerically) 18:19 - Making Changes to the DataFrame 18:56 - Adding a column 21:22 - Deleting a column 22:14 - Summing Multiple Columns to Create new Column. 24:14 - Rearranging columns 28:06 - Saving our Data (CSV, Excel, TXT, etc.) 31:47 - Filtering Data (based on multiple conditions) 35:40 - Reset Index 37:41 - Regex Filtering (filter based on textual patterns) 43:08 - Conditional Changes 47:57 - Aggregate Statistics using Groupby (Sum, Mean, Counting) 54:53 - Working with large amounts of data (setting chunksize) Thanks for watching friends! :) Let me know if you have any questions
@dtran288
@dtran288 6 жыл бұрын
YES!!! THANK YOU!
@shadow2frost325
@shadow2frost325 5 жыл бұрын
Thank you so much for posting this! I have a test in Python soon, so I've been watching this for a review. You explain everything so well and make it easy to follow. I also like how the data was from Pokémon - it makes it more relatable.
@dchitan1234
@dchitan1234 5 жыл бұрын
great tutorial
@tejasnareshsuvarna7948
@tejasnareshsuvarna7948 5 жыл бұрын
A reference notes to help you while you watch the video. docs.google.com/document/d/16qcfjwLp1vV-5VnIOGuDC2vxkHQ534_RzQd2Gihk7x8/edit?usp=sharing
@Tropax1
@Tropax1 5 жыл бұрын
Hey dude, love this video by the way but I have a question, can this data be used for machine learning? I have my exams coming up where I have to find a dataset to make predictions and stuff. Are these pokemon cards, do they have label and features if you understand what i'm talking about? Any help would be greatly appreaciated. Thanks in advance.
@amiliavachford183
@amiliavachford183 Жыл бұрын
thanks for useful video If anybody have a problem with calculating the mean of Type 1 grouped data, use this: df= pd.read_csv('modified.csv') df.groupby(['Type 1']).mean(numeric_only=True) instand of this: df= pd.read_csv('modified.csv') df.groupby(['Type 1']).mean() That way, it won't include string-type data in the mean and sum functions.
@vissokis
@vissokis 11 ай бұрын
thanks it helped a lot...can't understand the error while all the values are numreic already
@llamaland1737
@llamaland1737 9 ай бұрын
so is it got updated now, since you can only perform the method on int or float columns ...
@Tristana_21
@Tristana_21 Ай бұрын
thanks! help a lot
@RisingLoaf
@RisingLoaf 2 жыл бұрын
This 1 hour video did more for me than entire semester of my Data Analysis course... Amazing
@juliachristiaanse2985
@juliachristiaanse2985 2 жыл бұрын
SAME DUDE omg
@braxion-xyz
@braxion-xyz 2 жыл бұрын
me too!
@iahtesamalam
@iahtesamalam Жыл бұрын
Same here bro
@mrman880
@mrman880 Жыл бұрын
Were you paying attention?
@uchindamiphiri1381
@uchindamiphiri1381 Жыл бұрын
am a self taught but this one saved me
@faizalimuhammadzoda4731
@faizalimuhammadzoda4731 2 жыл бұрын
There is something to the way Keith teaches that keeps me coming back. Besides being a good teacher and utilizing techniques which help people grasp the material quickly and remember for long time, he sends forth a wave of positivism. He is such a positive, energetic person. Thanks for sharing your knowledge. May it grow and enable you to bless more people with it.
@hughjazz8416
@hughjazz8416 3 жыл бұрын
I have bought multiple Udemy courses on pandas and this one blows them all out of the water, and it’s free! I’m deff subbing!
@dicspringdkz8234
@dicspringdkz8234 2 жыл бұрын
Keith You are more than a teacher. Your level of simplicity in explaining Python in details is out of the moon. Keep up the good work. Your video is always my “go to” any time. Again, thanks a lot for using your skills as a blessing to people around the world.
@adedokunagunbiade5324
@adedokunagunbiade5324 2 жыл бұрын
I watched the entire video in 30 minutes and learned more than I did with hours of video content. Amazing work.
@shayonghoshroy7208
@shayonghoshroy7208 5 жыл бұрын
Best Pandas tutorial on KZbin, especially 24:25
@evangelosspyromilios5994
@evangelosspyromilios5994 4 жыл бұрын
hahahahaa
@cr2093
@cr2093 4 жыл бұрын
LOL
@fernandourrutia2566
@fernandourrutia2566 4 жыл бұрын
jaajajajaaj
@arielsfitness7073
@arielsfitness7073 3 жыл бұрын
Huge hhhhh
@pappymu
@pappymu 3 жыл бұрын
29:19 is where he's getting texts from actual pandas
@MatBat__
@MatBat__ 3 жыл бұрын
Bro I started a data science internship in the beggining of the Year, we use a lot of pandas and you are saving my life from day 1. Thanks again, you are a god send! Subbed on both channels, cheers!
@garthhorne617
@garthhorne617 3 жыл бұрын
I have been learning python and using pandas for about 3 months now and done innumerable searches on the internet with questions regarding use of specific statements and coding. I wished I had come across your video earlier! You are a born teacher and know how to layout and explain complex terms and concepts. How can someone that looks so young have such a strong grasp on presentation and user needs? The concepts you explain are the same things I have sought information on for 3 months but all in one place and succinctly explained. Thank you for all your work.
@Orion3000k
@Orion3000k 4 жыл бұрын
Mannnn your one of the best Python go-tos PERIOD. Straight to the point and easy to understand. thanks for teaching us all!
@pivo6499
@pivo6499 5 жыл бұрын
I can't believe I watched this for free, thank you so much!
@johnwiley1221
@johnwiley1221 4 жыл бұрын
This was pretty good. I would also check udemy or r/learnpython for other free resources. Found a 30 hour FREE pandas course there the other day
@johnwiley1221
@johnwiley1221 4 жыл бұрын
www.udemy.com/course/the-ultimate-pandas-bootcamp-advanced-python-data-analysis/?couponCode=FF041817B54B4BC9EB6B
@quartercast
@quartercast 4 жыл бұрын
@@johnwiley1221 It's not free now, unfortunately :(
@musclemusic123
@musclemusic123 4 жыл бұрын
ki
@shambhav9534
@shambhav9534 4 жыл бұрын
The documentation is also free.
@nimaonta1725
@nimaonta1725 4 жыл бұрын
Dude you deserved all the subs for this video alone. You explained everything so good. keep it up :)
@crtnnn
@crtnnn 2 жыл бұрын
Started my PhD in hydrogeology and learning Python from the scratch. I love your work, keep it up!
@gustinelimurilo
@gustinelimurilo 4 жыл бұрын
53:30 you can use .size() to get the count of each Pokemon type instead of adding a new column. It would look like this: df.groupby(['Type 1']).size() Great tutorial!!
@LureUnitFtw
@LureUnitFtw 5 жыл бұрын
One of the best tutorial that I've ever seen in KZbin! Thumbs UP!
@AndrewMann205
@AndrewMann205 5 жыл бұрын
Between jobs for the first time in decades I wanted to learn data science using software other than just Excel and Access. Your video was well explained and frankly better than anything else I have seen so far involving Python and Pandas. Thank you for a job well done.
@bentrash7885
@bentrash7885 5 жыл бұрын
Awesome tutorial! One advice I'd have for any python developers is to get in practice of working within virtual environments. Really helps to avoid conflicts when you're working on a project which may require some older versions of a library but your other projects may require latest ones, stuff like that.
@bjbmbc
@bjbmbc 4 жыл бұрын
Gold medal bro, I was searching extensively for a good data science resource and reddit just sent me to random coursera/edx courses that used to be free but don't appear to be anymore. Your content is highly organized, extremely concise, and well thought out. There is a reason that only .01% of the votes are downvotes. THANK YOU!
@remy0705
@remy0705 Жыл бұрын
This 1 hour course is all I need for my data analysis course. This is the best video I found on KZbin. Thanks ❤️❤️❤️
@RockIT1
@RockIT1 4 жыл бұрын
I like the way he interacts with his viewers
@jiangxu3895
@jiangxu3895 5 жыл бұрын
I just went through your numpy tutorial. And that's the reason I come here. Thumb up!
@KeithGalli
@KeithGalli 5 жыл бұрын
Appreciate it!!
@kanstantsinhupalau6337
@kanstantsinhupalau6337 2 жыл бұрын
Saved my day! I started learning Pandas, but when I missed several months during circumstances and this video about basics helped me quick comeback. Thank you!
@hautboisjc
@hautboisjc 3 жыл бұрын
Came here after watching your "Real World Data Science Tasks with Python" video and I didn't expect there are still things I don't know with Pandas. Thank you! Liked and subscribed.
@kylieying2
@kylieying2 6 жыл бұрын
Thanks for posting! As an MIT student taking a data analysis class, this video was very helpful, more useful than the other tutorials online!!
@kipishism
@kipishism 5 жыл бұрын
Found it very useful too!
@kregg34
@kregg34 5 жыл бұрын
"As an MIT student" Weird flex but ok
@klauscheang7063
@klauscheang7063 5 жыл бұрын
Excellent!! I like the way you organize the videos on different topics and functions of working with data. Please make more videos on how to work data science in Python. E.g. Statistical analysis (descriptive statistics, t-test, linear regression) or data processing tutorial (like what we do in SQL).
@MiguelMusic123
@MiguelMusic123 4 жыл бұрын
This video helped my massively! Been learning through online python courses with people trying to act and saying unnatural jokes, but your video felt super natural and easy to watch. Many thanks!
@MichaelPeterDalsgaard
@MichaelPeterDalsgaard 4 жыл бұрын
I swear this is the most useful python channel on KZbin. Top stuff.
@disagio9517
@disagio9517 3 жыл бұрын
I came for the tutorial, stayed for the cutesy pokemon stuff, really warmed my heart
@DavidWhitt
@DavidWhitt 5 жыл бұрын
Dude... you should make more videos... you are a natural born teacher!!
@mdhidayat5706
@mdhidayat5706 3 жыл бұрын
Awesome tutorial Keith, I learnt a lot by following your hour long tutorial. Created a new notebook instead of using the GIT version as it doesn't show what happens before you commented the code.
@MennaMahfouz-zr1ld
@MennaMahfouz-zr1ld 2 ай бұрын
I am a freshman and I feel lucky to know this great channel. thank you, I am using your channel to learn to do my recipe recommendation system project.
@RunyCalmera
@RunyCalmera 4 жыл бұрын
This was great man. Even in 2020. Only thing and suggestion. Do not change a cell when you are elaborating on a new feature. Just click a new cell down and elaborate. Because then in the jupyter notebook you will see all the variations. If you change it it won't save in the jupyter notebook. I'm very happy with this tutorial. You break it down easily. I'm new to pandas and python and this has helped me a lot with pandas.
@bijoysaraf650
@bijoysaraf650 4 жыл бұрын
Very simple yet comprehensive tutorial on Pandas. You had my attention throughout. I do use Pandas for data analytics along with numpy. That said I learnt quite a few tips and tricks. Thank you for sharing your knowledge. Way to go Keith! Liked and subscribed.
@modernafsolutions3233
@modernafsolutions3233 4 жыл бұрын
Wow man! Holy smokes that was such an amazing breakdown. I came into this knowing nothing about Pandas and now I want to get back to work with my personal data! Thank you so so so so much. I’m off to find the documentation!
@KeithGalli
@KeithGalli 4 жыл бұрын
Glad you enjoyed! Your comment made my day :)
@ProdMGD
@ProdMGD 3 жыл бұрын
Great video to get people up and running. It took me two hours to watch, take notes, and test out some examples. I feel like this was time very well spent. Thank you for this.
@Aimad_off
@Aimad_off 4 ай бұрын
I just finished your NumPy's course sir, and I'm moving now to pandas, I just want to thank you for your efforts !
@elwinmentaram6031
@elwinmentaram6031 4 жыл бұрын
2 years after this video was posted, I'm here watching and learning Tons of stuff. Thanks man!!!!
@narayangautam6955
@narayangautam6955 4 жыл бұрын
Me tooo today i watched it Comedy 😂😂😂
@bharathianjeneya2111
@bharathianjeneya2111 4 жыл бұрын
On point Keith. 5 hrs worth training covered in an hour. Made my day.
@DennisGorshteyn
@DennisGorshteyn 4 жыл бұрын
You break down all the details in a way that I can't believe this is for free. Very high quality stuff. I was up and running with this library in short order
@nutrathriveyoutube7056
@nutrathriveyoutube7056 6 жыл бұрын
This is an amazing tutorial! Please keep publishing like this. very well explained! I would love to see about matplotlib, numpy and if you can get inside machine learning
@atraps7882
@atraps7882 4 жыл бұрын
Day 1 on my journey to learn data analysis with python, this vid and kaggle's free pandas course is just what i needed to give me more motivation to keep learning.
@8rameshb
@8rameshb 3 жыл бұрын
The best tutorial I have seen so far on data analytics. I now see how python/pandas helps in data analytics. Thank you very much for making and sharing this video.
@nikluz3807
@nikluz3807 4 жыл бұрын
this is an excellent tutorial, especially the filtering/conditional changes section. I have always loved how google sheets has built in queries, and I wanted to be able to do a lot of the same things using pandas. This essentially gave me all of the power I needed! thanks!
@jamesdonly518
@jamesdonly518 5 жыл бұрын
Ok I've been learning Pandas for a while now, over many different sources, and this one video has shown me much more helpful little hints and tips than all of the other material I've looked at previously!!! Thannnnnk you! Please do more Pandas stuff as this has been so awesome =]
@brandongarza1366
@brandongarza1366 3 жыл бұрын
I haven't started this yet, but based on your previous videos I know this is going to be great. Thanks Keith, you are a great teacher.
@philippedid
@philippedid 2 жыл бұрын
A big thanks for your work from France . I have learned a lot about Pandas .
@duyanh1823
@duyanh1823 3 жыл бұрын
I am a Pokemon fan, randomly watch Python Panda for my project and find this. Such a big help. Thanks KEITH!
@Diegtz555
@Diegtz555 3 жыл бұрын
Wow, thanks for this tutorial. I'm starting on python and took a course of udemy, but it was confusing, with your explanations many doubts are cleared up. Thanks Keith:)
@andyn6053
@andyn6053 5 жыл бұрын
WOW! This was just what I have been looking for! Fantastic tutorial! You explained everything very well and clear from start to finish. Best Pandas tutorial on youtube for sure! Thanks man :)
@DrewLevitt
@DrewLevitt 3 жыл бұрын
In the chunksize section, you pick a well-documented bad practice, namely calling pd.concat inside a for loop. As the loop runs repeatedly, this operation becomes more and more expensive (because new_df gets longer and longer). Per the pandas documentation, the better approach is to append each df to a list and then pd.concat the list elements just once, after the for loop.
@terabhaininja9
@terabhaininja9 2 жыл бұрын
Hello, can you please provide with a tutorial for that? Quite new and clueless here.
@terabhaininja9
@terabhaininja9 2 жыл бұрын
dataHere = [] for chunk in pd.read_csv('modified.csv', chunksize=5): dataHere.append(chunk) newnew = pd.concat(dataHere) This looks right?
@Illegirl09
@Illegirl09 8 ай бұрын
A fellow man of culture I see. Funny enough as I was multi-tasking through Python tutorial videos while playing x2 Switch SwSh pokemon. I'm nearly at the end of your tutorial video and so far, good job on this. Keep it up!
@martistarti2374
@martistarti2374 3 жыл бұрын
Omgeeeeee!!!! Thank you so much!!! I've searched sooooo many videos trying to help with the delimiter problem I've had (i didn't know that was the problem) and you're the ONLY one I've found that even mentions it!!! 🙌🏾🙌🏾🙌🏾🙌🏾🙌🏾🙌🏾🙌🏾🙌🏾🙌🏾🙌🏾🙌🏾
@bensondube5646
@bensondube5646 5 жыл бұрын
Excellent Tutorial Keith. Very clear, at the right speed and interesting to learn from. This material is very suitable for a self learner. Keep it up.
@cdgxflower2679
@cdgxflower2679 6 жыл бұрын
I've been looking for a good pandas and python video for quite sometime now. I have to say that this is really amazing. You've explained it so well that a beginner like me could easily understand. Great job and thank you. Can't wait for more videos. (if possible, matplotlib)
@orfeaspapaioannou2755
@orfeaspapaioannou2755 5 жыл бұрын
dude this is an amazing introduction to pandas. Really helpful, thanks a lot
@jesseraines870
@jesseraines870 Жыл бұрын
"STOP TEXTING ME IM MAKING A VIDEO! WHO HAS THE NERVE!?" 😆😆 Great video bro. Currently in a term of data science with python and struggling hard. This video has been tremendously helpful! Big thank you!!
@piggeh6465
@piggeh6465 3 жыл бұрын
Will now recommend this video to anyone who is interested in learning pandas! This video is awesome
@paulblades2325
@paulblades2325 3 жыл бұрын
Thank you so much for your time and effort. This is the best python tutorial I have watched. Straight forward and well organized. I appreciate the time stamps.
@xnick_uy
@xnick_uy 3 жыл бұрын
27:15 It seems that the dataframe got scrambled up a bit there, most likely from having the cell running multiple times. Even when there was an error message, it appears that either the Total or the Legendary column was moved to the left of HP. Upon running the cell again (with the corrected version?) it calculated a new Total adding the previous values and generating corrupted results.
@cindyshaw2485
@cindyshaw2485 4 жыл бұрын
Thank you, Keith, for making this super helpful tutorial. You're a great teacher!
@kostas6915
@kostas6915 3 жыл бұрын
Apart from maybe silencing your phone while doing the tutorial, you are definately the man for the job!! Great work and VERY helpful!!!
@indraneel6601
@indraneel6601 Жыл бұрын
Day 1 : 18:27 Day 2 : 55:00 Day 3 : completed Tq for the brief intro to pandas just for tracking my progress.
@takako230
@takako230 3 жыл бұрын
Awesome video Keith! I'm a beginner programmer but your explanation is super clear! Thanks for the videos:)
@RPGMadnessVX
@RPGMadnessVX 4 жыл бұрын
F for "MEGAnium" that got filtered out while being old school Poke 😂 Great course! Looking forward to learn more from you!
@iftrejom
@iftrejom 4 жыл бұрын
I fixed it by writing "Mega " in the code.
@williambaker4915
@williambaker4915 2 жыл бұрын
52:49 You can also just write the code: df.groupby(['Type 1']).count()['Name'] That way, you don't have to add the count column.
@TomNeedhamNeDrum
@TomNeedhamNeDrum Жыл бұрын
This was genuinly so helpful, thank you! I am mostly through a data science course and have been struggling to figure out actual applications for the information I have learned. This was excellent!
@KeithGalli
@KeithGalli Жыл бұрын
Glad you found it helpful!!
@tototoysentertainment9483
@tototoysentertainment9483 4 жыл бұрын
i watched more than 10 different videos about pandas, this is the most easy and understandable one. Worth your time!
@bidhanbhattarai8863
@bidhanbhattarai8863 4 жыл бұрын
Makes me want to play the old Emerald games again, wonderful tutorial, keep them coming
@philipcoppage3592
@philipcoppage3592 3 жыл бұрын
SQL person w/ limited exposure to Python here. This was useful as hell.
@viveknayak9899
@viveknayak9899 5 жыл бұрын
Comprehensive, perfectly paced.... Lovely tutorial!
@patiencelenkouengansop6440
@patiencelenkouengansop6440 20 күн бұрын
As a new to python language . this video is very helpful to me and your way to explain is making this easy to understand. Hopefully by the end of they year I will be good at it.
@MikeStallings2023
@MikeStallings2023 2 жыл бұрын
I am a retired software guy, enjoying your videos, thanks for these! You are making me almost want to go back to work again.
@NoName-fi2ow
@NoName-fi2ow 4 жыл бұрын
What the hell, I imagined this topic in afternoon and video recommended after only few hours. And the shocking fact I didn't even searched about this topic from many days.
@sahajsandhuv8
@sahajsandhuv8 3 жыл бұрын
thast AI at work
@stephanierodriguez1035
@stephanierodriguez1035 5 жыл бұрын
This was such a great introduction to pandas and on DataFrame. This is exactly what I was looking for. Since I hadn't previously downloaded pandas onto my mac, and didn't feel like installing anaconda either, I was running into some troubles installing pandas with just "pip install pandas" so I thought I would include the instructions as to how I did it. simply do: pip install pandas --user If nose and tornado aren’t downloaded do: pip install nose --user then pip install tornado --user (nose needs to be installed first) then terminal also suggested I add it to my path, so I did: sudo nano /etc/paths add the path at the end of the file do ^X and then Y then hit enter
@skyblue021
@skyblue021 5 жыл бұрын
Thank you Keith for this video, absolutely amazing and valuable for many! THANK YOU!
@KeithGalli
@KeithGalli 5 жыл бұрын
Glad you found it helpful! :)
@immanuelsuleiman7550
@immanuelsuleiman7550 4 жыл бұрын
it's been a year since I first saw this video pandas has been the best thing to happen to me and this is where it all started thank you Keith
@KeithGalli
@KeithGalli 4 жыл бұрын
That's awesome, really happy to hear that this video had an impact on you. You are very welcome :)
@immanuelsuleiman7550
@immanuelsuleiman7550 4 жыл бұрын
@@KeithGalli I'm seriously impressed that you replied to both of my comments Take care and stay safe
@joashbrijit
@joashbrijit 4 жыл бұрын
You've just got me 30% of my whole assignment. Thanks dude
@micsierra806
@micsierra806 6 жыл бұрын
Excellent tutorial; exactly what I was looking for. Liked and subbed. Thank you for sharing your expertise.
@nicoledeasis664
@nicoledeasis664 3 жыл бұрын
"stop texting me! I'm making a video!" "who has the nerve" hahahahahahha you explained well, thank you.
@fixithvac9360
@fixithvac9360 3 жыл бұрын
that is funny :))
@BrandonS-lk2qc
@BrandonS-lk2qc 3 жыл бұрын
I learned so much, thank you. Then at the end...that music tho. I lost it! LOL! Did not see it coming.
@ranganathabr3321
@ranganathabr3321 3 жыл бұрын
This is just insanely helpful. I find the originality of this guy very attractive. I have been wandering around trying to figure out my big data problem since I am new to pandas, and this video has been a great help. I was legit shivering frantically and now I feel more confident. THANKS, A LOT MATE.
@Godspeed9114
@Godspeed9114 8 ай бұрын
The way ur teaching it like sipping a wine 😜🍷 so easy. Thank you so much for making kifeeasier withur thoughts and Bro literally ur teaching is. Way awesome keep rocking!!! All love from India😍(Hyderabad)
@pemadechen9901
@pemadechen9901 5 жыл бұрын
I loved the fact you used pokemon as data set it was fun learning I could also check my knowledge about pokemon hahha Love love
@jasonaraosfuentes2130
@jasonaraosfuentes2130 5 жыл бұрын
This is an extremely usefull tutorial. You explain so good bro. Thank you very much. Like and subscribed. Hugs.
@SMFahim-vo5zn
@SMFahim-vo5zn 5 жыл бұрын
When I start making money with these knowledge, I'll give you some share!
@HansOnProduction1984
@HansOnProduction1984 3 жыл бұрын
Keith, I stumbled across your video from random search on deeper understanding of pandas . I felt like you did a great job presenting the material. Well done man, it was easy to follow and understand. I did appreciate the part at the end with the chunk size and group by - would like further explanation of those concepts. Thanks.
@georgeimus6102
@georgeimus6102 10 ай бұрын
I just realized this a Keith video I haven't even watched it yet and I already know it's gonna be good! My data science guru
@jsaylor525
@jsaylor525 5 жыл бұрын
"It's not super important that you know about a DataFrame"? That's one of the main objects in pandas, I'd say its highly important.
@SuperBhavanishankar
@SuperBhavanishankar 6 жыл бұрын
"stop texting' im making a video!" x'D xD
@royerzurumluoglu2466
@royerzurumluoglu2466 5 жыл бұрын
Who has the nerve
@jyotithasal1261
@jyotithasal1261 5 жыл бұрын
concentrate on topic only.
5 жыл бұрын
Lmao
@Kevin-cy2dr
@Kevin-cy2dr 5 жыл бұрын
Timestamp pls
@damilolaadeyemi8383
@damilolaadeyemi8383 5 жыл бұрын
@@Kevin-cy2dr 29:30
@paradise-flossed
@paradise-flossed 4 жыл бұрын
All the Meganium fans when he filters out for Name Contains "Mega": _intense sobs_
@CrystalSunriseFox
@CrystalSunriseFox 3 жыл бұрын
exactly my thought.. also yanmega
@tancaken9990
@tancaken9990 3 жыл бұрын
Wow, i actually only remember Meganium.
@hhbbhvvbjhbbyjj
@hhbbhvvbjhbbyjj 3 жыл бұрын
the best python tutorials i ve seen
@gillesderoo2027
@gillesderoo2027 3 жыл бұрын
You are the GOAT. Your explanations using Pokemon makes so much sense.
@saurabh-patil
@saurabh-patil 5 жыл бұрын
This tutorial helped me alot. Thank you so much!
Complete Python Pandas Data Science Tutorial! (2024 Updated Edition)
1:34:11
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН
Learning Pandas for Data Analysis? Start Here.
22:50
Rob Mulla
Рет қаралды 134 М.
5 Python Libraries You Should Know in 2025!
22:30
Keith Galli
Рет қаралды 91 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 712 М.
Solving real world data science tasks with Python Pandas!
1:26:07
Keith Galli
Рет қаралды 1,5 МЛН
How I'd learn ML in 2025 (if I could start over)
16:24
Boris Meinardus
Рет қаралды 216 М.
Pandas for Data Science in 20 Minutes | Python Crash Course
23:06
Nicholas Renotte
Рет қаралды 149 М.