Python: Intro to Visualization with Matplotlib

  Рет қаралды 40,265

Oggi AI - Artificial Intelligence Today

Oggi AI - Artificial Intelligence Today

Күн бұрын

Intro to how to visualize data in a variety of plots and charts using Python Matplotlib for plotting.
RELATED VIDEOS
► Numpy Intro: • Python: NUMPY | Numeri...
► Numpy Intro Jupyter nb: • NUMPY Arrays Tutorial ...
► Pandas Intro: • Python: Pandas Tutoria...
► Pandas and MPL for Data Analysis: • Python Pandas: Plottin...
► Matplotlib Intro: • Python: Intro to Visua...

Пікірлер: 57
@life_with_appy
@life_with_appy 5 жыл бұрын
1:19 Simple Plot 2:25 Points have x and y values 3:24 Changing figure size , plot red dots, set axis scales 5:03 Bar charts 6:57 Two sets of 10 random dots 7:45 Time Series 8:41 Random dots in a scatter 9:40 Load csv and show multiple chart types 11:05 Subplots part1 12:30 Subplots part2 13:30 saving figure to image file
@BrokenRecord-i7q
@BrokenRecord-i7q 2 жыл бұрын
thanks abhimanyu :)
@nicorobin7666
@nicorobin7666 2 жыл бұрын
Amazing for someone who has an idea already, thank you
@jimiahrhodes6869
@jimiahrhodes6869 Жыл бұрын
This video presents coding well. My project is becoming insurmountably more fun since viewing.
@CHETANSINGH-su4eg
@CHETANSINGH-su4eg 5 жыл бұрын
You are a legend joe . Your content is amazing 👍
@oggiai
@oggiai 5 жыл бұрын
Thanks. 😀
@merrittdeeter1329
@merrittdeeter1329 3 жыл бұрын
Very useful examples for matplotlib beginners.
@satoshinakamoto171
@satoshinakamoto171 4 жыл бұрын
hi, it would be best if you could guide us through a video by also writing the code and use the documentation while doing it. there are so many method calls and functions one has to wonder where to look for additional self exploration. maybe a second window with the documentation open can show us how you figure out how to code and debug your programs.
@oggiai
@oggiai 4 жыл бұрын
Thanks. That’s good feedback
@patelvivek7716
@patelvivek7716 5 жыл бұрын
thanks for this video was struggling with some of the things in matplotlib
@Anddy002
@Anddy002 5 жыл бұрын
Very nice instructions and clear explanations. Easy to follow!
@b3astieyt
@b3astieyt 5 жыл бұрын
Thank you so much. I love this presentation format. Was able to follow along code by code and experiment.
@oggiai
@oggiai 5 жыл бұрын
Great!
@janspoerer
@janspoerer 5 жыл бұрын
7:49: Defining the variable "ts" seems unnecessary because only the index of "ts" is used. This is shorter (and less confusing imo): df = pd.DataFrame(np.random.randn(180, 3), index=pd.date_range('1/1/2018', periods=180), columns=list('ABC') ) df.cumsum().plot() plt.show() Thanks for the great video!
@oggiai
@oggiai 5 жыл бұрын
Nice contribution!
@jedrekwrzosek6918
@jedrekwrzosek6918 4 жыл бұрын
Thank you for the concise tutorial!
@muritalaadebayoisah9155
@muritalaadebayoisah9155 4 жыл бұрын
Thank you. It was very helpful
@pipertripp
@pipertripp 5 жыл бұрын
This was great. Very succinct. Thought Jupyter presentation was excellent better than IDLE IMO. Thx again.
@oggiai
@oggiai 5 жыл бұрын
Thanks. I’m doing most of my new videos in Jupyter.
@pipertripp
@pipertripp 5 жыл бұрын
@@oggiai yeah, I can see why. With markdown cells and keyword decoration, it makes the presentations nice and easy to read. You end up spending less time deleting content when you transition to the next point you want make.
@malmedia9747
@malmedia9747 5 жыл бұрын
Very very nice elaborations
@AwesomeAngryBiker
@AwesomeAngryBiker 5 жыл бұрын
Awesome, only tiny issue, on the last one, I'd say speed should be y axis and altitude on X axis in 100ft increments
@jrod238
@jrod238 5 жыл бұрын
GreAt video. Thank you
@Abdullah24241
@Abdullah24241 6 жыл бұрын
GREAT SIR.... THANKS VERY MUCH....
@jeffgalef121
@jeffgalef121 6 жыл бұрын
Awesome video. Thank you very much.
@b22_srikanthreddy31
@b22_srikanthreddy31 Жыл бұрын
why there is mentioned in subplot argument as 221 , 222, 223,224 respectively ?at timing 12.10
@LanceMarks
@LanceMarks 5 жыл бұрын
The Jupyter Format is great!!
@NuEnque
@NuEnque 5 жыл бұрын
Try Jupyter Lab... much better than Jupyter notebook
@cesararturocastanonacuna3325
@cesararturocastanonacuna3325 3 жыл бұрын
Legendary!
@davidw.9711
@davidw.9711 3 жыл бұрын
what is better matplotlib or seaborn?
@adityakumarpal91
@adityakumarpal91 Жыл бұрын
can you provide a link to the text file that you have used? thanks for such an informative video
@oggiai
@oggiai Жыл бұрын
I'm sorry I couldn't find the text file on my laptop. And it's not on my GitHub site where I usually put stuff. My apologies.
@adityakumarpal91
@adityakumarpal91 Жыл бұрын
@@oggiai no issue Sir, really thanks for making so much effort for me 😊. I hope you have a great day
@solomonmuwori1954
@solomonmuwori1954 4 жыл бұрын
Hi Joe. I am using VS Code IDE and am having issues in importing Matplotlib. Can you assist?
@oggiai
@oggiai 4 жыл бұрын
You should use your package installer (pip, yum, or whatever) to make sure you have matplotlib installed and updated.
@oggiai
@oggiai 4 жыл бұрын
You should use your package installer (pip, yum, or whatever) to make sure you have matplotlib installed and updated.
@santhoskumar1369
@santhoskumar1369 5 жыл бұрын
How can i plot two overlapping gaussian surfaces and its contour in same figure. Only ones contour is getting displayed, also the overlapping is not clear in surface
@gamestv4875
@gamestv4875 5 жыл бұрын
So this is Python using Mat , Panda and and Numpy to hatch a plot?
@ericbecker7624
@ericbecker7624 4 жыл бұрын
11:00: I cannot get a legend to show when I copy your code, I had to enter the legend manually to get the same results as you plt.legend(df.iloc[:,[1,2])
@anuragtripathi1744
@anuragtripathi1744 6 жыл бұрын
Please make machine learning in Python tutorials
@oggiai
@oggiai 6 жыл бұрын
I’m getting there. Posted videos on Numpy, Pandas and Matplotlib in the past few weeks. Stay tuned!
@anuragtripathi1744
@anuragtripathi1744 6 жыл бұрын
Thanks for replying
@NuEnque
@NuEnque 5 жыл бұрын
Why are we not using Jupyter Lab?
@oggiai
@oggiai 5 жыл бұрын
I’ve done a few videos in Jupyter, and am working on another right now.
@NuEnque
@NuEnque 5 жыл бұрын
@@oggiai Thanks for the reply. It appears as though you are using Jupyter-notebook. I was suggesting you use Jupyter-Lab. It's awesome
@sathishbabu9096
@sathishbabu9096 6 жыл бұрын
Hi Jame's, please upload python with grafana combination
@uhsay1986
@uhsay1986 5 жыл бұрын
Do you have the codes placed somewhere ?
@oggiai
@oggiai 5 жыл бұрын
Yes, it’s all at www.github.com/joeyajames in the Python folder.
@uhsay1986
@uhsay1986 5 жыл бұрын
@@oggiai Thank you for the reply.
@chandu7691
@chandu7691 5 жыл бұрын
Could you please share the link to your Git repo.
@oggiai
@oggiai 5 жыл бұрын
Www.github.com/joeyajames and there’s a Python folder with all the Python code
@pinyichang4680
@pinyichang4680 2 жыл бұрын
good
@irfanmoosani7771
@irfanmoosani7771 4 жыл бұрын
great video
@BrokenRecord-i7q
@BrokenRecord-i7q 2 жыл бұрын
Can you share your notebook?
@oggiai
@oggiai 2 жыл бұрын
All my code is on my GitHub site
Seaborn Tutorial : Seaborn Full Course
59:34
Derek Banas
Рет қаралды 198 М.
SISTER EXPOSED MY MAGIC @Whoispelagheya
00:45
MasomkaMagic
Рет қаралды 13 МЛН
pumpkins #shorts
00:39
Mr DegrEE
Рет қаралды 123 МЛН
She's very CREATIVE💡💦 #camping #survival #bushcraft #outdoors #lifehack
00:26
Synyptas 4 | Арамызда бір сатқын бар ! | 4 Bolim
17:24
Matplotlib Tutorial (Part 1): Creating and Customizing Our First Plots
35:01
Solving real world data science tasks with Python Pandas!
1:26:07
Keith Galli
Рет қаралды 1,5 МЛН
Matplotlib Crash Course
1:31:41
freeCodeCamp.org
Рет қаралды 326 М.
What is Pandas? Why and How to Use Pandas in Python
10:08
Python Programmer
Рет қаралды 608 М.
Python: Data Structures - Lists, Tuples, Sets & Dictionaries tutorial
19:01
Oggi AI - Artificial Intelligence Today
Рет қаралды 336 М.
Exploratory Data Analysis with Pandas Python
40:22
Rob Mulla
Рет қаралды 485 М.
Python Pandas: Plotting Data with Matplotlib
14:56
Oggi AI - Artificial Intelligence Today
Рет қаралды 20 М.
SISTER EXPOSED MY MAGIC @Whoispelagheya
00:45
MasomkaMagic
Рет қаралды 13 МЛН