Happy to be back! Video Timeline: 0:24 - Video overview (note real-world examples moved to next video) 1:43 - Setup 2:23 - Our first line graph! 4:50 - Add title and labels for x & y axis 7:13 - Change font type, size, etc. 9:02 - Change tick marks (scale graph) 11:20 - Add a legend 12:25 - Restyle our line (color, line style, markers, width) 15:53 - Shorthand notation to restyle lines 17:27 - List of line customization options 17:55 - Plot more complex lines 22:20 - Resize Graph 24:48 - Save Graph 26:00 - Annotating/Cleaning Code 27:00 - Bar Chart 31:25 - Final Comments If you enjoyed this video, make sure to like and subscribe! :)
Your videos are the best videos on python data science modules. I would like to thank you for helping people like me who wants to grow there career in python. Thanks again bro.
Extremely beneficial for me and other, I guess. Million thanks and it will be great if you make all the tutorials series focused on different topics and provide detailed explanation of each step in the future.
your video helped me a lot and it will also assist in my future career as a "Data Scientist" at Oracle! thank you! and what's that weird sound? here 26:43 ?
For those curious, you can use plt.annotate() to add the coordinates of markers to the graph. x = [your x coordinates list] y = [your y coordinates list] for i, j in zip(x, y): plt.annotate(f'({i}, {j})', (i, j), textcoords='offset points', xytext=(0, 5), ha='center') You can play around with the options, but this will add the coordinates centered slightly above the markers. If 5 seems too close, 10 is a better option.
Congrats on finishing your degree, Keith!!! :) As a student who studies Education but would like to go into data analytics, your videos are super helpful and inspiring! By any chance, you could do more videos on how to build regression models in Python? :) Again, thanks for making these amazing tutorials!! :)
I am really grateful for your tutorial videos, you cover all the must-know topics, your explanations are easy to understand and watching you make mistakes sometimes makes me comfortable as someone who's learning. You could totally roll out your own courses or work as a UA-camr (or become a teacher) if you want to!
A great way to teach. I like that you show how to look for information on the referenced source. Thank you for sharing and for making these very useful online classes. :)
thanks keith for such an amazing video on matplotlib your content is very much structured and well taught the concept in very layman terms so even a non-techie can learn concept great video keep posting more
You are very helpful and enjoyable. In an easy way you provide a lot of stuff to get anyone start using the libraries from scratch to a stisfying degree.
This video was very helpful. I had issues understanding matplotlib but I followed along and I better understood it. I also learnt how to read documentations and find what I want. Thank you.
Hey Keith u are amazing at making virtual lessons with an understandable concept and ur way of teaching is quite good. Hope u will make more vedios on all the programming languages
Nice intro easy to follow but one must do what it says not only listen ... I learned that we must put legend() to be able to see label =('') .... thank you
The xticks and ytics didn't work on Jupyter notebook but worked on Pycharm. Jupyter: TypeError: 'list' object is not callable PyCharm: does what it is supposed to do. Sometimes it is the other way around. And the command lines were identical (Ctrl+C Ctrl+V). This is why I prefer R: Python is far to "capricious" to be anywhere near reliable.
Sir your explanation so clear and I understand very easily please make more videos on python for freshers but I have a doubt how we are use some string,list ,set, dictionary methods in class , please make one video with above data types mothods please sir thank you for sharing this video
I have csv data of one city which is I have been read in python using panda library now I want to extract specific area of that city How would I do this ? Which Library would I use for this purpose ? Csv City data contains (Lat & Long )
Thanks a lot, bro. You are amazing. Thanks for your time, but could you make a tutorial about a real project, please, so that we can use all of the libraries that you taught us?
One thing that would help you in your videos is to remain consistent in your approach. In two of your videos I've watched now, you start out GREAT by explaining what it is that you're trying to do, and getting the viewer on board by making sure they can work alongside you. Invariably, though, half-way through your videos you go off trying this and that, with no explanation beforehand and no clear objective in mind, and instead end up working your way through your confusion and hoping the viewer is still watching the video.
On that line graph, how can we use logo at the end of this line. Suppose if we want to use Facebook and Twitter logo, small size or even how can make a circle and write"FB" or Twitter like this at the end of each multiple line.
Hi Keith. Thanks a lot for this video. I got " invalid character in identifier" in Jupyther on the line "plt.title('Our First Graph',fontdict = {'fontname':'Comic Sans MS'})", any idea what's the problem?
Anybody struggling with saving the graph and getting a blank image in the local folder Always remember to save the graph before show() because show() clears everything
Thanks Keith! Can you make a video showing how to draw a box with 10 rows and 10 columns, total 100 grids, and each grid contains a value from a file. Like a storage box.
Happy to be back! Video Timeline:
0:24 - Video overview (note real-world examples moved to next video)
1:43 - Setup
2:23 - Our first line graph!
4:50 - Add title and labels for x & y axis
7:13 - Change font type, size, etc.
9:02 - Change tick marks (scale graph)
11:20 - Add a legend
12:25 - Restyle our line (color, line style, markers, width)
15:53 - Shorthand notation to restyle lines
17:27 - List of line customization options
17:55 - Plot more complex lines
22:20 - Resize Graph
24:48 - Save Graph
26:00 - Annotating/Cleaning Code
27:00 - Bar Chart
31:25 - Final Comments
If you enjoyed this video, make sure to like and subscribe! :)
Your videos are the best videos on python data science modules. I would like to thank you for helping people like me who wants to grow there career in python. Thanks again bro.
Extremely beneficial for me and other, I guess. Million thanks and it will be great if you make all the tutorials series focused on different topics and provide detailed explanation of each step in the future.
your video helped me a lot and it will also assist in my future career as a "Data Scientist" at Oracle!
thank you!
and what's that weird sound? here 26:43 ?
25:02, almost died
For those curious, you can use plt.annotate() to add the coordinates of markers to the graph.
x = [your x coordinates list]
y = [your y coordinates list]
for i, j in zip(x, y):
plt.annotate(f'({i}, {j})', (i, j), textcoords='offset points', xytext=(0, 5), ha='center')
You can play around with the options, but this will add the coordinates centered slightly above the markers. If 5 seems too close, 10 is a better option.
Congrats on finishing your degree, Keith!!! :) As a student who studies Education but would like to go into data analytics, your videos are super helpful and inspiring! By any chance, you could do more videos on how to build regression models in Python? :) Again, thanks for making these amazing tutorials!! :)
Dude, I watch all your videos, you make videos very carefully, very instructive, thank you very much
I am really grateful for your tutorial videos, you cover all the must-know topics, your explanations are easy to understand and watching you make mistakes sometimes makes me comfortable as someone who's learning.
You could totally roll out your own courses or work as a UA-camr (or become a teacher) if you want to!
A great way to teach. I like that you show how to look for information on the referenced source. Thank you for sharing and for making these very useful online classes. :)
YOU ARE THE GUY ENCOURAGE AND SHARING YOUR KNOWLEDGE TO TO THE WORLD
this video is the perfect way to understand the library
Thank you Keith for the great video!
This is helping my a lot for my bachelor thesis.
You are becoming my favorite instructor. Keep it up, man!
Numpy-->Pandas, now I am watching Matplotlib, Thanks for you video.
Love it!!
hahaha,same order here...
Finally My boy is here
Sorry to be gone for so long!!!
man you are the best one so far i have seen. your tutorials are so helpful and easy to get your feet soaked into. thanks for existing
Thank you so much! I am now trying to go through every single one of your videos in data science section and have learned a lot!
I like your videos, Keith! Simple, practical, to the point. Good job!
thanks keith for such an amazing video on matplotlib your content is very much structured and well taught the concept in very layman terms so even a non-techie can learn concept great video keep posting more
Good videos Keith. Not draggy by any means.
I watched about 2/3 of your Pandas video, it's the visual stuff that I'm after, so I'll try this one.
Thank you so much for making this, Keith
You are very helpful and enjoyable. In an easy way you provide a lot of stuff to get anyone start using the libraries from scratch to a stisfying degree.
This video was very helpful. I had issues understanding matplotlib but I followed along and I better understood it. I also learnt how to read documentations and find what I want. Thank you.
me too
Thank you, I am happy I found these videos on the right time.
Hey Keith u are amazing at making virtual lessons with an understandable concept and ur way of teaching is quite good. Hope u will make more vedios on all the programming languages
Welcome back Keith👍💪
Glad to be back! :)
This guy made it look so easy!
Knowledgeable and talented instructor.
An idea for a tutorial might be making a 3D plot or surface with data collected through a Tkinter application. Great video, thank you)
You are the best period.
Hands Down
Thank you so much for taking the time to teach us! That exit stage left was very dramatic....
Thanks a lot...
Good vibes and greetings from Japan
Thank you for this great video!! This should be helpful for all beginners of matplotlib!!
excellent tutorial Thumbs up to you Keith
Great video!!! Better than my MIT professors explain it :D
Nice introduction to plotting, very useful
that's great your to took time to do these video man, thank you so much.
"if i did 'yel' which is not a color it's gonna yell at me"
hahhahaaha made my day
thanks for the tutorial
It was my fisrt vid so nice too meet you after your Academia stuff. Thanks!
it's very helpful & useful to me.
thanks for your recording 💖
Thanks a lot for your videos Keith, much appreciated!
very helpful
thanks keith
Thank you very much for an amazing tutorial.
26:43
Thanks Keith. Keep up the great work!
Thank you Keith this video is really awesome!
Good start
Nice brushup!
I like the way you teach
Greetings from Nepal ! Ur vids r superb, great help . Thank u 🙏
Thanks Keith, you made my day 🌟
GOTCHU!! 8:34
Thank you for the video. It's very helpful!
Thank you so much Keith for your videos. U make it easy to understand because u do not rush. Keep it up. U are doing a great good 🙏🙏👌👋👋
sorry i have a question
when i installing the package " plt" .
That is displayed
" ERROR: Could not find a version that satisfies the requirement plt (from versions: none)
ERROR: No matching distribution found for plt
"
I need help :/ pls
FLASH|||||||| 26:45
Nice intro easy to follow but one must do what it says not only listen ... I learned that we must put legend() to be able to see label =('') .... thank you
The xticks and ytics didn't work on Jupyter notebook but worked on Pycharm.
Jupyter: TypeError: 'list' object is not callable
PyCharm: does what it is supposed to do.
Sometimes it is the other way around.
And the command lines were identical (Ctrl+C Ctrl+V). This is why I prefer R: Python is far to "capricious" to be anywhere near reliable.
Very valuable content, thanks
Nice work man!!
Thanks Keith. Great videos!
THANK YOU KEITH LOVE FROM INDIA
thanks a lot, your videos has been very helpful
really like this video and your other video, thank you so much
Thanks for video to share your knowledge on python
Thanks Keith. Do more!
Informative. Thank you so much.
Sir your explanation so clear and I understand very easily please make more videos on python for freshers but I have a doubt how we are use some string,list ,set, dictionary methods in class , please make one video with above data types mothods please sir thank you for sharing this video
Where were you when I was struggling with MATLAB subject in college? 😑😑
Sehr gut! Vielen Dank und viele Grüße aus Deutschland!
Very Helpful
Thanks man, great video!
Thank you and very helpful Video!
Thank you so much for this!
Thank you for these, really helps!
Thanks dude this helped a lot! Greetings from Switzerland :))
That is supercool, thank you!
Everyone in comments be like he's the best and stuff. Phew.. what less did you guys even except from an MIT Computer Science Graduate.?!
yes we need super duper coverage too
Informative & love it.
I have csv data of one city which is I have been read in python using panda library now I want to extract specific area of that city How would I do this ? Which Library would I use for this purpose ?
Csv City data contains (Lat & Long )
Thanks a lot, bro.
You are amazing. Thanks for your time, but could you make a tutorial about a real project, please, so that we can use all of the libraries that you taught us?
One thing that would help you in your videos is to remain consistent in your approach. In two of your videos I've watched now, you start out GREAT by explaining what it is that you're trying to do, and getting the viewer on board by making sure they can work alongside you. Invariably, though, half-way through your videos you go off trying this and that, with no explanation beforehand and no clear objective in mind, and instead end up working your way through your confusion and hoping the viewer is still watching the video.
Eres un grande, maestro.
Muchas gracias 😄
On that line graph, how can we use logo at the end of this line. Suppose if we want to use Facebook and Twitter logo, small size or even how can make a circle and write"FB" or Twitter like this at the end of each multiple line.
Great job!
Make educational videos, we are with you
Nice and simple 👌👍💥
You don't need to save with code there is an option in the GUI of the graph to save it
Hi Keith. Thanks a lot for this video. I got " invalid character in identifier" in Jupyther on the line "plt.title('Our First Graph',fontdict = {'fontname':'Comic Sans MS'})", any idea what's the problem?
Anybody struggling with saving the graph and getting a blank image in the local folder
Always remember to save the graph before show() because show() clears everything
You are super awesome bro love yuh 👌👌👌👍👍
Nice tutorial...
Wanted to put the values for each Bar. How to do that.. looks like plt.text can help. But it's getting more complicated. solved, thanks
Thanks Sir, any guidance on using matplotlib to plot trajectories?
Thank you sir
Thanks man.
Thank you!
8:34 👀
Thanks
nice job
very helpful
Thanks Keith! Can you make a video showing how to draw a box with 10 rows and 10 columns, total 100 grids, and each grid contains a value from a file. Like a storage box.
你好,请问这个问题你解决了么?😃