Dude, I've been trying to make a histogram like this from begining for 2 hours, jumping from StackOverflow, documentation and all kinds of websites and you just teach me in 2 minutes. You are great, keep up the good work
Dude, I am addicted to your tutorials. Whenever I come home from work, I start watching your tutorials & practice. I use Python 2.7 and for this version, legend() command has some different script relative to Python 3.0. Best wishes & happy X-mas from Pakistan
This is officially my go-to channel for understanding Python libraries. The documentation is very helpful, but going through it as a beginner can feel disengaging at times, so I'm happy to have found this channel!
yeah, you remember when you apply modules on a real time project otherwise the truth is we developer only look at documentation when we need to, otherwise their are hundreds of commands that do hundreds of things and you cant remember all of them unless you use them very frequently.
Video Timeline! 0:00 - Intro & Video Overview 2:22 - Load Necessary Libraries & Download Data 3:48 - Line Graph Example (Plotting Data from CSV file) 21:52 - Histogram Example (FIFA Overall Skill Distribution) 29:25 - Pie Chart #1 (Counting data in CSV) - Visualizing Soccer Foot Preferences 36:41 - Pie Chart #2 (More advance Pandas Example) - Weight Distribution of FIFA Players 47:49 - Box & Whisker Plot (Comparing FIFA teams to one another) 1:00:37 - Final Comments Subscribe to my channel pretty please friends!! :)
Thank you so much for the video!! I spent HOURS trying to figure out a simple plot, and after several videos your the one who was finally able to help me!
you probably dont give a shit but does anyone know of a method to get back into an instagram account?? I was dumb forgot my password. I would love any help you can give me
@Maxton Kyrie Thanks for your reply. I got to the site thru google and I'm in the hacking process atm. I see it takes a while so I will reply here later when my account password hopefully is recovered.
Hi Keith! Finished all your Python Data Science Tutorials for Pandas, NumPy, and Matplotlib. I can say that I really learned a lot from your videos and I admire your way of solving and navigating through problems. It's really interesting to see how real world data can be transformed into simple charts and graphs. I appreciate the work that you do and I hope you make more videos like this. Thank you!
You are better than my instructor, your videos are awesome, I've watched three of them in just three days that I was introduced to them, how I wish I knew you before now. You are a blessing to the World.
The presentation of the concepts are excellent . All the topics are to the point. I am addicted to your videos. I was trying to learn Python from free resources and found your videos. They are treasure. Keep on making such videos. Btw, Thanks a lot!
Thanks for the vid! A few things I'd like to say addressing the beginners: the solutions given by Keith are workable but several of them are suboptimal. 1) When the expected number of plots on one graph is too much - you should definitely switch to the OOP approach (fix, axes = plt.subplots(nrows, ncols, figsize=()) etc.) Even when you have just one plot it's much better to use OOP: plt.subplots(1,1) 2) The conditional slicing is heavily suboptimal. Pandas has a 'cut' method which saves all the unwieldy conditional slicing. Sorry if I'm not the first one to point that out.
Great vid. At 28:14... you can just make the y-axis logarithmic with the log=True param and the histogram looks a lot better. Also, use edgecolor='white' or some other colour to create some separation between the bins.
I'm trying to be better at Python and at the same time doing all this Math courses to improve my math skills, I just needed a quick tutorial on how to plot graph in Python, watched this video and the first one, amazing stuff, thank you very much for sharing the knowledge.
**If we make a list of the headers (ignoring the 'Year'), and then, add gas[country] instead of gas after invoking the for loop, we can avoid using the if-statement. However, your videos are amazing!! Just started learning Python and already loving it.** country = gas.columns[1:] markers = ['o', 'd', 'D', '^', '*', '>', '
Amazing video Keith! I myself want to become a data analyst(because I like the business side of companies as well) and started learning python for data science/analysis over R and SAS. Really glad I found your channel :)
Thank you so much. It is easy to understand whatever u teach. Keep it up! I was surprised to hear u guys follow European footbal :) Btw I was in Boston several times, great city!! and with a soccer team
Thank you for the kind words! Glad you have enjoyed the tutorials. Yeah there's a huge sports presence here in boston which helps makes it a really fun place to live :)
In order to compute all the players, even the ones with a skill level above 90, you can use a log scale for the y axis. Fits well id say. Just add in your plt.hist(.... ,log = True)
for x in range(1,4,1): "thank you {}".format("indeed")... now is the time to start the "Solving real world data science tasks with Python Pandas!" video...keep safe in those hard days...
At 32:04 shouldn't it be left=fifa.loc[ fifa[ 'Preferred Foot' ]=='Left' ].count()[14] instead of left=fifa.loc[ fifa[ 'Preferred Foot' ]=='Left' ].count()[0]?
Very nice presentation! Tried to figure out the % labeling on basis of current understanding of string handling myself. Never guessed this ==> autopct='%.2f %%'
Hi thanks for great video, please keep making such video. I have few question please answer them 1.how do we plot data on the point in line graph 2. what is the short cut to give bin value can we give range like this [0:100] and this will print all bins ? 3.why did you type .count() and [0] what does this zero in bracket indicates
As always, I am amazed by the value you bring to UA-cam. I'm so grateful for all you do to help those wanting to learn new things. Thank you.
ı agree with you man, year became 2022 and still this video is useful amazingly. Unbelievable
you are the single reason my grade is so good in my Data Analysis class, you are amazing and I can not thank you enough for all these videos!!!!
Keith is a living legend!
Dude, I've been trying to make a histogram like this from begining for 2 hours, jumping from StackOverflow, documentation and all kinds of websites and you just teach me in 2 minutes. You are great, keep up the good work
You taught me more than my college teachers combined
+1
Dude, I am addicted to your tutorials. Whenever I come home from work, I start watching your tutorials & practice.
I use Python 2.7 and for this version, legend() command has some different script relative to Python 3.0.
Best wishes & happy X-mas from Pakistan
PAKISTAN AND CHINESE ARE FRIENDS(老铁)
me too Pakistani and a fan
This is officially my go-to channel for understanding Python libraries. The documentation is very helpful, but going through it as a beginner can feel disengaging at times, so I'm happy to have found this channel!
yeah, you remember when you apply modules on a real time project otherwise the truth is we developer only look at documentation when we need to, otherwise their are hundreds of commands that do hundreds of things and you cant remember all of them unless you use them very frequently.
Keith your voice has very natural speed. You do not try to unnaturally speed up your talk and that is the best thing about your videos.
Video Timeline!
0:00 - Intro & Video Overview
2:22 - Load Necessary Libraries & Download Data
3:48 - Line Graph Example (Plotting Data from CSV file)
21:52 - Histogram Example (FIFA Overall Skill Distribution)
29:25 - Pie Chart #1 (Counting data in CSV) - Visualizing Soccer Foot Preferences
36:41 - Pie Chart #2 (More advance Pandas Example) - Weight Distribution of FIFA Players
47:49 - Box & Whisker Plot (Comparing FIFA teams to one another)
1:00:37 - Final Comments
Subscribe to my channel pretty please friends!! :)
Thanku ❤️ bro
Thank you so much for the video!! I spent HOURS trying to figure out a simple plot, and after several videos your the one who was finally able to help me!
you probably dont give a shit but does anyone know of a method to get back into an instagram account??
I was dumb forgot my password. I would love any help you can give me
@Maximus Zyaire Instablaster =)
@Maxton Kyrie Thanks for your reply. I got to the site thru google and I'm in the hacking process atm.
I see it takes a while so I will reply here later when my account password hopefully is recovered.
Hi Keith! Finished all your Python Data Science Tutorials for Pandas, NumPy, and Matplotlib. I can say that I really learned a lot from your videos and I admire your way of solving and navigating through problems. It's really interesting to see how real world data can be transformed into simple charts and graphs. I appreciate the work that you do and I hope you make more videos like this. Thank you!
Just went through one of your tutorial and I feel like a pro already..hope you keep doing more of this
big thumbs up to you
even 3.5 years later from the date that you uploaded the video
binged all of your python videos before my intro to programming exam. thank u for your service :,)
You are better than my instructor, your videos are awesome, I've watched three of them in just three days that I was introduced to them, how I wish I knew you before now. You are a blessing to the World.
You are simply my best teacher of all times in regards to data scientist.
Great my pal.
The presentation of the concepts are excellent . All the topics are to the point. I am addicted to your videos. I was trying to learn Python from free resources and found your videos. They are treasure. Keep on making such videos. Btw, Thanks a lot!
Thanks for the vid! A few things I'd like to say addressing the beginners: the solutions given by Keith are workable but several of them are suboptimal.
1) When the expected number of plots on one graph is too much - you should definitely switch to the OOP approach (fix, axes = plt.subplots(nrows, ncols, figsize=()) etc.) Even when you have just one plot it's much better to use OOP: plt.subplots(1,1)
2) The conditional slicing is heavily suboptimal. Pandas has a 'cut' method which saves all the unwieldy conditional slicing.
Sorry if I'm not the first one to point that out.
@16:18 For those of you who were not getting the countries in the legend add *label= country* to your plt.plot statement
saved!!!
Thanks a lot !
Thanks Dude
This tutorial like next level to matplotlib.. Even paid courses didn't teach like this..you deserved mode subscribers...Hatts off to you keith
Yours are the greatest videos and content I have ever met on the internet. Thank you very much
what I love about this video is that it is ad free. ❤️
get yourself an adblocker
this channel provides the best resource for data science in my perspective. subscribe guys, it's worth it
29:20 please keep sharing some small but valuable tricks like this, it helps me a lot
Great vid. At 28:14... you can just make the y-axis logarithmic with the log=True param and the histogram looks a lot better. Also, use edgecolor='white' or some other colour to create some separation between the bins.
Great suggestions! Anyone reading this comment take note. Thank you :)
@@KeithGalli , any time. Thx again for the great content!
Wonderful suggestion!!
That was helpful. Noted :)
Dude, the box plot explanation was very good. Better than many I've seen so far. thx.
Out of many python videos on UA-cam, I always stuck to your videos. You are awesome!!!
What a hot teacher to lean data science from
I'm trying to be better at Python and at the same time doing all this Math courses to improve my math skills, I just needed a quick tutorial on how to plot graph in Python, watched this video and the first one, amazing stuff, thank you very much for sharing the knowledge.
Already love your videos. And now I see you're a Hockey fan. You're a good man.
60K SUBSCRIBERS, WOW THE COMMUNITY IS GROWING. WELL DONE KEITH
This video was very very useful. I followed them to detail and did these visualizations. Great work! :)
Thank you so much for this video. I literally followed each step and it was truly helpful. Definitely subbed and I’m binge watching
**If we make a list of the headers (ignoring the 'Year'), and then, add gas[country] instead of gas after invoking the for loop, we can avoid using the if-statement. However, your videos are amazing!! Just started learning Python and already loving it.**
country = gas.columns[1:]
markers = ['o', 'd', 'D', '^', '*', '>', '
you're a lifesaver, these videos helped me tons, thank youuu, maybe I will get that research now
This is an AMAZING tutorial! Really appreciate this vid man!
It was just an awesome video, even I have learnt how to perform my matplotlib skills over dataset. Thank you Keith Galli Sir.
Keith thank you so much! I really like your tutorials and as a total noob you have really taught me a lot :) greetings from the netherlands
on 16:45 , to make the legend outside the graph you can use the command:-
plt.legend(bbox_to_anchor=(1.05, 1))
Thanks
just started watching your videos dude. you're amazing. thank you so much.
Use a logarithmic scale to plot your first histogram in a way that displays all the players
plt.yscale('log', nonposy='clip')
I love your coding style. Comprehensive and simple
Great Job Keith!!!
Your videos and teaching approach are very comprehensive.
Keep the good job.
Thank you!!
Nice work buddy. You made each concept so simple to understand. Love form India :)
You deserve more than a million subscribers bro! Great tutorials
Thank you so much for the videos. Some people overcomplicate pandas but this was easy to understand and follow along
Thank you very much for all your videos!
You are helping me a lot with my PhD.
Go on!
Really enjoying the videos and have a lot of free time with NHL and other sports are down.
The time well spent, thank you.
Dude you save my exam when you explain it's really easy to understand too bad my teacher is not as good as you for that xD
Another great video! You're a king among men
Haha I appreciate the kind words! Glad you're finding the videos helpful :)
As always, spectacular content!!!! Thank you so much for doing these.
while True:
print('THANK YOU SO MUCH, DEAR!')
How beautiful your way of teaching. Grateful to you. it was learn to fun.
Great tutorial !!! Its like learning from a friend
Amazing video Keith!
I myself want to become a data analyst(because I like the business side of companies as well) and started learning python for data science/analysis over R and SAS. Really glad I found your channel :)
Thanks a lot Keith, you surely explain things a lot easier!
Great work man. And thanks again.
Really great Keith,Very appreciable videos.
Please complete all the other graphs also.
Thanks in advance.
in 42:00 . If you use Pycharm, you must convert 125 into '125' cause fifa.Weight[i] type is str. we can compare 2 str number like 2 int
these videos are incredibly useful, please keep it up!
You are amazing. Please do more Pandas real world projects
Really enjoy your tutorials
Once again, best use of my time. thanks a lot mate
Your videos are really, really helpful. Thank You.
Thousand thanks for your videos❤ it's helping me so much with my report which i'm dealing with!
Your tutorial videos have helped me a lot to learn python. Tks
'Im going to be a little bit hackey here' Like it . Must get a T shirt printed 'A little bit Hackey'
just love it!!!, enjoyed learning throughout the Video
I totally adore the way you explain. Thanks for the videos :)
Bro your videos are the best!!!!
I want to say thank you for your time.Useful and undestandable
Thank you so much. It is easy to understand whatever u teach. Keep it up!
I was surprised to hear u guys follow European footbal :)
Btw I was in Boston several times, great city!! and with a soccer team
Thank you for the kind words! Glad you have enjoyed the tutorials. Yeah there's a huge sports presence here in boston which helps makes it a really fun place to live :)
I love you keith you are really a good teacher , love from INDIA
Your videos really helped man :)
Keep making tutorials
Thanks a lot, your videos are really helpful. 😊
my visualization concepts and its fun way to code in python and pandas to give output a visualization effect, it seems easy by reffering your video
Your videos are really helful! Thanks soo much man!
thanks for sharing your knowledge and expertise. Especially for beginners . keep on posting professor.
Thank you so much. Learning so much from your videos.
Thank you, these are absolute treasure🔥🔥
your videos are great, i learnt lot of stuff from your videos hope you make more tutorials about data science
you are the GOAT man, thanks
Thanks for the classes.. They have been really handy to learn python...
thank you, i learned alot from your videos. more power!
In order to compute all the players, even the ones with a skill level above 90, you can use a log scale for the y axis. Fits well id say. Just add in your plt.hist(.... ,log = True)
It helped me a lot. Thanks from Brazil
Thank you for your clear and thorough video!
for x in range(1,4,1): "thank you {}".format("indeed")... now is the time to start the "Solving real world data science tasks with Python Pandas!" video...keep safe in those hard days...
for those struggling to get labels on 17:05, use (label="%s data" % country)
Thanks a lot , do you know why it did work for Keith in Jupyter but not on other IDE´s ? Am using Spyder and did not work
At 32:04 shouldn't it be left=fifa.loc[ fifa[ 'Preferred Foot' ]=='Left' ].count()[14] instead of left=fifa.loc[ fifa[ 'Preferred Foot' ]=='Left' ].count()[0]?
Very nice presentation! Tried to figure out the % labeling on basis of current understanding of string handling myself. Never guessed this ==> autopct='%.2f %%'
Wonderful Tutorial Keith :)
Thank you for this.
really great tutorial !!. Thanks for helping me to understand Matplotlib
thank you sooooooooooooooo much it helps me a lot ...................awesome video and excellent explanation ........keep on bro
Hi thanks for great video, please keep making such video.
I have few question please answer them
1.how do we plot data on the point in line graph
2. what is the short cut to give bin value can we give range like this [0:100] and this will print all bins ?
3.why did you type .count() and [0] what does this zero in bracket indicates
Thanks a lot for these videos. Greetings from Peru!!
You can also rotate the xticks to 90 and then use all the years with the plot figure figzie to (20,7)
Woooow great lesson indeed. Thank you so much.
You're helping me do my master's thank you really 💐💐
Keep going! You're doing great work. Thanks from Viet Nam
Great videos .. I need to learn this as my role is evolving and this is becoming a pre requisite
Your videos are really helpful. Thank you.
26:25 I get a TypeError saying list is not callable with plt.xticks(bins)