SlideShare a Scribd company logo
Bruno Gonçalves
www.bgoncalves.com
Data Visualization using matplotlib


www.bgoncalves.com
https://bmtgoncalves.github.io/DataVisualization/
Bruno Gonçalves
www.bgoncalves.com
Data Visualization using matplotlib


www.bgoncalves.com
https://bmtgoncalves.github.io/DataVisualization/
Bruno Gonçalves
www.bgoncalves.com
Data Visualization using matplotlib


www.bgoncalves.com
https://bmtgoncalves.github.io/DataVisualization/
www.bgoncalves.com@bgoncalves
The views and opinions expressed in this article are
those of the authors and do not necessarily reflect the
official policy or position of my employer. The
examples provided with this tutorial were chosen for
their didactic value and are not mean to be
representative of my day to day work.
Disclaimer
Human Perception
www.bgoncalves.com@bgoncalves
Human Perception http://abstrusegoose.com/421
www.bgoncalves.com@bgoncalves
Human Senses
www.bgoncalves.com@bgoncalves
• Some cognitive tasks are significantly easier than others. In order, we are good a
distinguishing:
• Position, length
• Direction, Angle, Area
• Volume, Curvature, Shade
Perception
www.bgoncalves.com@bgoncalves
• Some cognitive tasks are significantly easier than others. In order, we are good a
distinguishing:
• Position, length
• Direction, Angle, Area
• Volume, Curvature, Shade
• Color Saturation.
Perception
www.bgoncalves.com@bgoncalves
Perception
• Context also matters!
• An object seen in the context of larger objects will appear smaller, while in the content of
smaller objects it will appear larger.
• Some cognitive tasks are significantly easier than others. In order, we are good a
distinguishing:
• Position, length
• Direction, Angle, Area
• Volume, Curvature, Shade
• Color Saturation.
www.bgoncalves.com@bgoncalves
Perception
• Context also matters!
• An object seen in the context of larger objects will appear smaller, while in the content of
smaller objects it will appear larger.
• And we “fill in the gaps”
• Some cognitive tasks are significantly easier than others. In order, we are good a
distinguishing:
• Position, length
• Direction, Angle, Area
• Volume, Curvature, Shade
• Color Saturation.
www.bgoncalves.com@bgoncalves
Perception Biases
www.bgoncalves.com@bgoncalves
Human Vision https://en.wikipedia.org/wiki/Photoreceptor_cell
light
www.bgoncalves.com@bgoncalves
Human Vision https://en.wikipedia.org/wiki/Photoreceptor_cell
www.bgoncalves.com@bgoncalves
Human Vision https://en.wikipedia.org/wiki/Photoreceptor_cell
www.bgoncalves.com@bgoncalves
Human Vision https://en.wikipedia.org/wiki/Photoreceptor_cell
www.bgoncalves.com@bgoncalves
Colors galore!
www.bgoncalves.com@bgoncalves
“Who in the rainbow can draw the line where the violet tint ends and the orange tint
begins? Distinctly we see the difference of the colors, but where exactly does the
one first blendingly enter into the other? So with sanity and insanity.”

(H. Melville)
Color Perception
www.bgoncalves.com@bgoncalves
Color Wheel
www.bgoncalves.com@bgoncalves
Color Schemes
Warm Colors
Cold Colors
www.bgoncalves.com@bgoncalves
Color Schemes
www.bgoncalves.com@bgoncalves
Color Schemes
www.bgoncalves.com@bgoncalves
Color Systems
Light Ink
www.bgoncalves.com@bgoncalves
Colors and Culture http://www1.icsi.berkeley.edu/wcs/
www.bgoncalves.com@bgoncalves
Color Blindness
www.bgoncalves.com@bgoncalves
Color Blindness https://en.wikipedia.org/wiki/Color_blindness
https://github.com/MaPePeR/jsColorblindSimulator/blob/master/colorblind.js
www.bgoncalves.com@bgoncalves
Viridis Color Scheme
www.bgoncalves.com@bgoncalves
Color Scheme Choosers http://tools.medialab.sciences-po.fr/iwanthue/
www.bgoncalves.com@bgoncalves
Color Scheme Choosers http://web.colorotate.org/
www.bgoncalves.com@bgoncalves
Color Scheme Choosers http://www.colourco.de/
www.bgoncalves.com@bgoncalves
Color Scheme Choosers http://www.colourlovers.com/palettes
www.bgoncalves.com@bgoncalves
Color Theory
Visualization
www.bgoncalves.com@bgoncalves
Fundamental Principles of Analytical Design
www.bgoncalves.com@bgoncalves
Fundamental Principles of Analytical Design
1. Show comparisons, contrasts and differences
2. Show causality, mechanism, explanation and systematic structure
3. Show multivariate data: more than one or two variables
4. Completely integrate words, numbers, images and diagrams
5. Documentation
6.Content matters most of all
“Information Visualization is a form of knowledge compression”

D. McCandless
www.bgoncalves.com@bgoncalves
Rules can be broken…
…sometimes
www.bgoncalves.com@bgoncalves
Fundamental tools
• Points
• Lines
• Areas
• Shapes
• Colors
• Text
• Each for these can be used to encode a given variable to produce
all the types of plots we are familiar with:
• Scatter plot - Just points (line)
www.bgoncalves.com@bgoncalves
Fundamental tools
• Points
• Lines
• Areas
• Shapes
• Colors
• Text
• Each for these can be used to encode a given variable to produce
all the types of plots we are familiar with:
• Scatter plot - Just points (line)
• Bar chart - Areas
www.bgoncalves.com@bgoncalves
Fundamental tools
• Points
• Lines
• Areas
• Shapes
• Colors
• Text
• Each for these can be used to encode a given variable to produce
all the types of plots we are familiar with:
• Scatter plot - Just points (line)
• Bar chart - Areas
• Bubble chart - Scatter plot + size + color (time)
www.bgoncalves.com@bgoncalves
Fundamental tools
• Points
• Lines
• Areas
• Shapes
• Colors
• Text
• Each for these can be used to encode a given variable to produce
all the types of plots we are familiar with:
• Scatter plot - Just points (line)
• Bar chart - Areas
• Bubble chart - Scatter plot + size + color (time)
• Pie chart - Areas + colors
www.bgoncalves.com@bgoncalves
Fundamental tools
• Points
• Lines
• Areas
• Shapes
• Colors
• Text
• Each for these can be used to encode a given variable to produce
all the types of plots we are familiar with:
• Scatter plot - Just points (line)
• Bar chart - Areas
• Bubble chart - Scatter plot + size + color (time)
• Pie chart - Areas + colors
• etc…
Matplotlib
www.bgoncalves.com@bgoncalves
Basic Plotting
X Axis
YAxis
Line Markers
Axis Label
Axis
Axes
Matplotlib uses an
object oriented
structure following
the same notation
www.bgoncalves.com@bgoncalves
Basic Plotting
• Matplotlib uses an object oriented structure following an intuitive notation
• Each Axes object contains one or more Axis objects.
• A Figure is a set of one or more Axes.
• Each Axes is associated with exactly one Figure and each set of Markers is associated
with exactly one Axes.
• In other words, Markers/Lines represent a dataset that is plotted against one or more Axis.
An Axes object is (effectively) a subplot of a Figure.
X
Y
www.bgoncalves.com@bgoncalves
Basic Plotting - Programmatically!
X
Y
www.bgoncalves.com@bgoncalves
Basic Plotting - Programmatically! https://matplotlib.org/2.0.0/
• While the Figure object controls the way in which the figure is displayed.
• .gca() - Get the current Axes, creating one if necessary
• .show() - Show the final figure
• .savefig(“filename.ext”, dpi=300) - Save the figure to “filename.ext” where “.ext”
defines the format the saved image ()
X
Y
www.bgoncalves.com@bgoncalves
Basic Plotting - Programmatically!
• The first step is to import the pyplot module from matplotlib and instanciating a Figure object:

• The convention is to import pyplot as plt
• To create subplots (Axes) you use .subplots(nrows, ncols, sharex=False, sharey=False)
instead of .figure(). set sharex and/or sharey to True to keep the same scale in both cases.
• .subplots - returns a (fig, ax_lst) tuple where ax_lst is a list of Axes and fig is the Figure.
• Axes have several methods of interest:
• .plot(x, y) - Make a scatter or line plot from a list of x, y coordinates.
• .imshow(mat) - Plot a matrix as if it were an image. Element 0,0 is plotted in the top right
corner.
• .bar(x, y) - Make a bar plot where x is a list of the lower left coordinates of each bar and
y is the respective height.
• .pie(values, labels=labels) - Produce a pie plot out of a list of values list and labeled
with labels
• .savefig(filename) - Write the current figure as an static image
import matplotlib.pyplot as plt
fig = plt.figure()
X
Y
www.bgoncalves.com@bgoncalves
Matplotlib - decorations
• The respective functions are named in an intuitive wa
Every Axes object has as methods:
• .set_xlabel(label)
• .set_ylabel(label)
• .set_title(title)
• And axis limits can be set using:
• .set_xlim(xmin, xmax)
• .set_ylim(ymin, ymax)
• Tick marks and labels are set using:
• .set_xticks(ticks)/.set_yticks(ticks)
• .set_xticklabels(labels)/.set_yticklabels(labels)
https://matplotlib.org/2.0.0/
www.bgoncalves.com@bgoncalves
Matplotlib - Images
• .imshow(fig) - Display an image on a set of axes.
• fig can be any matrix of numbers.
• Further plotting can occur by simply using the functions described above
https://matplotlib.org/2.0.0/
https://bmtgoncalves.github.io/DataVisualization/
https://github.com/bmtgoncalves/DataVisualization

More Related Content

What's hot

Data Analysis in Python
Data Analysis in PythonData Analysis in Python
Data Analysis in Python
Richard Herrell
 
Data visualization in Python
Data visualization in PythonData visualization in Python
Data visualization in Python
Marc Garcia
 
Python Seaborn Data Visualization
Python Seaborn Data Visualization Python Seaborn Data Visualization
Python Seaborn Data Visualization
Sourabh Sahu
 
PPT4: Frameworks & Libraries of Machine Learning & Deep Learning
PPT4: Frameworks & Libraries of Machine Learning & Deep Learning PPT4: Frameworks & Libraries of Machine Learning & Deep Learning
PPT4: Frameworks & Libraries of Machine Learning & Deep Learning
akira-ai
 
DATA VISUALIZATION USING MATPLOTLIB (PYTHON)
DATA VISUALIZATION USING MATPLOTLIB (PYTHON)DATA VISUALIZATION USING MATPLOTLIB (PYTHON)
DATA VISUALIZATION USING MATPLOTLIB (PYTHON)
Mohammed Anzil
 
Data Analysis and Visualization using Python
Data Analysis and Visualization using PythonData Analysis and Visualization using Python
Data Analysis and Visualization using Python
Chariza Pladin
 
MatplotLib.pptx
MatplotLib.pptxMatplotLib.pptx
MatplotLib.pptx
Paras Intotech
 
Python for data analysis
Python for data analysisPython for data analysis
Python for data analysis
Savitribai Phule Pune University
 
Basic of python for data analysis
Basic of python for data analysisBasic of python for data analysis
Basic of python for data analysis
Pramod Toraskar
 
Data Visualization(s) Using Python
Data Visualization(s) Using PythonData Visualization(s) Using Python
Data Visualization(s) Using Python
Aniket Maithani
 
Neural Text Embeddings for Information Retrieval (WSDM 2017)
Neural Text Embeddings for Information Retrieval (WSDM 2017)Neural Text Embeddings for Information Retrieval (WSDM 2017)
Neural Text Embeddings for Information Retrieval (WSDM 2017)
Bhaskar Mitra
 
Python - Numpy/Pandas/Matplot Machine Learning Libraries
Python - Numpy/Pandas/Matplot Machine Learning LibrariesPython - Numpy/Pandas/Matplot Machine Learning Libraries
Python - Numpy/Pandas/Matplot Machine Learning Libraries
Andrew Ferlitsch
 
Word2Vec
Word2VecWord2Vec
Word2Vec
hyunyoung Lee
 
Visualization and Matplotlib using Python.pptx
Visualization and Matplotlib using Python.pptxVisualization and Matplotlib using Python.pptx
Visualization and Matplotlib using Python.pptx
SharmilaMore5
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning Algorithms
Md. Main Uddin Rony
 
RDM 2020: Python, Numpy, and Pandas
RDM 2020: Python, Numpy, and PandasRDM 2020: Python, Numpy, and Pandas
RDM 2020: Python, Numpy, and Pandas
Henry Schreiner
 
Python NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | EdurekaPython NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | Edureka
Edureka!
 
String Matching Algorithms-The Naive Algorithm
String Matching Algorithms-The Naive AlgorithmString Matching Algorithms-The Naive Algorithm
String Matching Algorithms-The Naive Algorithm
Adeel Rasheed
 
List in python
List in pythonList in python
List in python
HARSHITHA EBBALI
 
Microsoft COCO: Common Objects in Context
Microsoft COCO: Common Objects in Context Microsoft COCO: Common Objects in Context
Microsoft COCO: Common Objects in Context
KhalidKhan412
 

What's hot (20)

Data Analysis in Python
Data Analysis in PythonData Analysis in Python
Data Analysis in Python
 
Data visualization in Python
Data visualization in PythonData visualization in Python
Data visualization in Python
 
Python Seaborn Data Visualization
Python Seaborn Data Visualization Python Seaborn Data Visualization
Python Seaborn Data Visualization
 
PPT4: Frameworks & Libraries of Machine Learning & Deep Learning
PPT4: Frameworks & Libraries of Machine Learning & Deep Learning PPT4: Frameworks & Libraries of Machine Learning & Deep Learning
PPT4: Frameworks & Libraries of Machine Learning & Deep Learning
 
DATA VISUALIZATION USING MATPLOTLIB (PYTHON)
DATA VISUALIZATION USING MATPLOTLIB (PYTHON)DATA VISUALIZATION USING MATPLOTLIB (PYTHON)
DATA VISUALIZATION USING MATPLOTLIB (PYTHON)
 
Data Analysis and Visualization using Python
Data Analysis and Visualization using PythonData Analysis and Visualization using Python
Data Analysis and Visualization using Python
 
MatplotLib.pptx
MatplotLib.pptxMatplotLib.pptx
MatplotLib.pptx
 
Python for data analysis
Python for data analysisPython for data analysis
Python for data analysis
 
Basic of python for data analysis
Basic of python for data analysisBasic of python for data analysis
Basic of python for data analysis
 
Data Visualization(s) Using Python
Data Visualization(s) Using PythonData Visualization(s) Using Python
Data Visualization(s) Using Python
 
Neural Text Embeddings for Information Retrieval (WSDM 2017)
Neural Text Embeddings for Information Retrieval (WSDM 2017)Neural Text Embeddings for Information Retrieval (WSDM 2017)
Neural Text Embeddings for Information Retrieval (WSDM 2017)
 
Python - Numpy/Pandas/Matplot Machine Learning Libraries
Python - Numpy/Pandas/Matplot Machine Learning LibrariesPython - Numpy/Pandas/Matplot Machine Learning Libraries
Python - Numpy/Pandas/Matplot Machine Learning Libraries
 
Word2Vec
Word2VecWord2Vec
Word2Vec
 
Visualization and Matplotlib using Python.pptx
Visualization and Matplotlib using Python.pptxVisualization and Matplotlib using Python.pptx
Visualization and Matplotlib using Python.pptx
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning Algorithms
 
RDM 2020: Python, Numpy, and Pandas
RDM 2020: Python, Numpy, and PandasRDM 2020: Python, Numpy, and Pandas
RDM 2020: Python, Numpy, and Pandas
 
Python NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | EdurekaPython NumPy Tutorial | NumPy Array | Edureka
Python NumPy Tutorial | NumPy Array | Edureka
 
String Matching Algorithms-The Naive Algorithm
String Matching Algorithms-The Naive AlgorithmString Matching Algorithms-The Naive Algorithm
String Matching Algorithms-The Naive Algorithm
 
List in python
List in pythonList in python
List in python
 
Microsoft COCO: Common Objects in Context
Microsoft COCO: Common Objects in Context Microsoft COCO: Common Objects in Context
Microsoft COCO: Common Objects in Context
 

Similar to Data Visualization using matplotlib

Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...
Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...
Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...
LaurenMichelle11
 
Word2vec and Friends
Word2vec and FriendsWord2vec and Friends
Word2vec and Friends
Bruno Gonçalves
 
UNIT_4_data visualization.pptx
UNIT_4_data visualization.pptxUNIT_4_data visualization.pptx
UNIT_4_data visualization.pptx
BhagyasriPatel2
 
R Visualization Assignment
R Visualization AssignmentR Visualization Assignment
R Visualization Assignment
Vassilis Kapatsoulias
 
Word2vec in Theory Practice with TensorFlow
Word2vec in Theory Practice with TensorFlowWord2vec in Theory Practice with TensorFlow
Word2vec in Theory Practice with TensorFlow
Bruno Gonçalves
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
rkottam
 
Color Your Single-Series Charts The Way You Like
Color Your Single-Series Charts The Way You LikeColor Your Single-Series Charts The Way You Like
Color Your Single-Series Charts The Way You Like
Collabion Technologies
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
rkottam
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
rkottam
 
P5js syracuse dev meetup 20181218
P5js syracuse dev meetup 20181218P5js syracuse dev meetup 20181218
P5js syracuse dev meetup 20181218
👨‍💻 Joshua Marris
 
Word2vec and Friends
Word2vec and FriendsWord2vec and Friends
Word2vec and Friends
Bruno Gonçalves
 
EN The Distance Formula by Slidesgo.pptx
EN The Distance Formula by Slidesgo.pptxEN The Distance Formula by Slidesgo.pptx
EN The Distance Formula by Slidesgo.pptx
SaurabhDahiya14
 
Coordinate geometry.pptx
Coordinate geometry.pptxCoordinate geometry.pptx
Coordinate geometry.pptx
RaunakShah18
 
Plan601 e session 3 demo
Plan601 e session 3 demoPlan601 e session 3 demo
Plan601 e session 3 demorkottamasu
 
Plan601 e session 3 demo
Plan601 e session 3 demoPlan601 e session 3 demo
Plan601 e session 3 demorkottam
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
rkottam
 
Northern New England TUG - January 2024
Northern New England TUG  -  January 2024Northern New England TUG  -  January 2024
Northern New England TUG - January 2024
patrickdtherriault
 

Similar to Data Visualization using matplotlib (20)

Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...
Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...
Blue Orange and Yellow Geometric Flat Shapes Scavenger Hunt Ice Breaker Class...
 
Word2vec and Friends
Word2vec and FriendsWord2vec and Friends
Word2vec and Friends
 
UNIT_4_data visualization.pptx
UNIT_4_data visualization.pptxUNIT_4_data visualization.pptx
UNIT_4_data visualization.pptx
 
R Visualization Assignment
R Visualization AssignmentR Visualization Assignment
R Visualization Assignment
 
Word2vec in Theory Practice with TensorFlow
Word2vec in Theory Practice with TensorFlowWord2vec in Theory Practice with TensorFlow
Word2vec in Theory Practice with TensorFlow
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
 
Color Your Single-Series Charts The Way You Like
Color Your Single-Series Charts The Way You LikeColor Your Single-Series Charts The Way You Like
Color Your Single-Series Charts The Way You Like
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
 
P5js syracuse dev meetup 20181218
P5js syracuse dev meetup 20181218P5js syracuse dev meetup 20181218
P5js syracuse dev meetup 20181218
 
Word2vec and Friends
Word2vec and FriendsWord2vec and Friends
Word2vec and Friends
 
EN The Distance Formula by Slidesgo.pptx
EN The Distance Formula by Slidesgo.pptxEN The Distance Formula by Slidesgo.pptx
EN The Distance Formula by Slidesgo.pptx
 
Coordinate geometry.pptx
Coordinate geometry.pptxCoordinate geometry.pptx
Coordinate geometry.pptx
 
Plan601 e session 3 demo
Plan601 e session 3 demoPlan601 e session 3 demo
Plan601 e session 3 demo
 
Chapter 13
Chapter 13Chapter 13
Chapter 13
 
Plan601 e session 3 demo
Plan601 e session 3 demoPlan601 e session 3 demo
Plan601 e session 3 demo
 
101 project ideas
101 project ideas101 project ideas
101 project ideas
 
Plan601 e session 2 demo
Plan601 e session 2 demoPlan601 e session 2 demo
Plan601 e session 2 demo
 
Inkscape - A brief
Inkscape - A briefInkscape - A brief
Inkscape - A brief
 
Northern New England TUG - January 2024
Northern New England TUG  -  January 2024Northern New England TUG  -  January 2024
Northern New England TUG - January 2024
 

More from Bruno Gonçalves

RNNs for Timeseries Analysis
RNNs for Timeseries AnalysisRNNs for Timeseries Analysis
RNNs for Timeseries Analysis
Bruno Gonçalves
 
Blockchain Technologies for Data Science
Blockchain Technologies for Data ScienceBlockchain Technologies for Data Science
Blockchain Technologies for Data Science
Bruno Gonçalves
 
Spatio Temporal Analysis of Language use.
Spatio Temporal Analysis of Language use.Spatio Temporal Analysis of Language use.
Spatio Temporal Analysis of Language use.
Bruno Gonçalves
 
Machine(s) Learning with Neural Networks
Machine(s) Learning with Neural NetworksMachine(s) Learning with Neural Networks
Machine(s) Learning with Neural Networks
Bruno Gonçalves
 
A practical Introduction to Machine(s) Learning
A practical Introduction to Machine(s) LearningA practical Introduction to Machine(s) Learning
A practical Introduction to Machine(s) Learning
Bruno Gonçalves
 
Making Sense of Data Big and Small
Making Sense of Data Big and SmallMaking Sense of Data Big and Small
Making Sense of Data Big and Small
Bruno Gonçalves
 
Human Mobility (with Mobile Devices)
Human Mobility (with Mobile Devices)Human Mobility (with Mobile Devices)
Human Mobility (with Mobile Devices)
Bruno Gonçalves
 
Twitterology - The Science of Twitter
Twitterology - The Science of TwitterTwitterology - The Science of Twitter
Twitterology - The Science of Twitter
Bruno Gonçalves
 
Mining Georeferenced Data
Mining Georeferenced DataMining Georeferenced Data
Mining Georeferenced Data
Bruno Gonçalves
 

More from Bruno Gonçalves (9)

RNNs for Timeseries Analysis
RNNs for Timeseries AnalysisRNNs for Timeseries Analysis
RNNs for Timeseries Analysis
 
Blockchain Technologies for Data Science
Blockchain Technologies for Data ScienceBlockchain Technologies for Data Science
Blockchain Technologies for Data Science
 
Spatio Temporal Analysis of Language use.
Spatio Temporal Analysis of Language use.Spatio Temporal Analysis of Language use.
Spatio Temporal Analysis of Language use.
 
Machine(s) Learning with Neural Networks
Machine(s) Learning with Neural NetworksMachine(s) Learning with Neural Networks
Machine(s) Learning with Neural Networks
 
A practical Introduction to Machine(s) Learning
A practical Introduction to Machine(s) LearningA practical Introduction to Machine(s) Learning
A practical Introduction to Machine(s) Learning
 
Making Sense of Data Big and Small
Making Sense of Data Big and SmallMaking Sense of Data Big and Small
Making Sense of Data Big and Small
 
Human Mobility (with Mobile Devices)
Human Mobility (with Mobile Devices)Human Mobility (with Mobile Devices)
Human Mobility (with Mobile Devices)
 
Twitterology - The Science of Twitter
Twitterology - The Science of TwitterTwitterology - The Science of Twitter
Twitterology - The Science of Twitter
 
Mining Georeferenced Data
Mining Georeferenced DataMining Georeferenced Data
Mining Georeferenced Data
 

Recently uploaded

一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
dwreak4tg
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
v3tuleee
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
ewymefz
 
Everything you wanted to know about LIHTC
Everything you wanted to know about LIHTCEverything you wanted to know about LIHTC
Everything you wanted to know about LIHTC
Roger Valdez
 
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
AbhimanyuSinha9
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
rwarrenll
 
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
Timothy Spann
 
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
74nqk8xf
 
Machine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptxMachine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptx
balafet
 
Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
Subhajit Sahu
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
TravisMalana
 
Influence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business PlanInfluence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business Plan
jerlynmaetalle
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
ahzuo
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
u86oixdj
 
The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...
jerlynmaetalle
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
slg6lamcq
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
g4dpvqap0
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
javier ramirez
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
ewymefz
 

Recently uploaded (20)

一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
一比一原版(BCU毕业证书)伯明翰城市大学毕业证如何办理
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
 
Everything you wanted to know about LIHTC
Everything you wanted to know about LIHTCEverything you wanted to know about LIHTC
Everything you wanted to know about LIHTC
 
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...Best best suvichar in gujarati english meaning of this sentence as Silk road ...
Best best suvichar in gujarati english meaning of this sentence as Silk road ...
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
 
My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.My burning issue is homelessness K.C.M.O.
My burning issue is homelessness K.C.M.O.
 
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
06-04-2024 - NYC Tech Week - Discussion on Vector Databases, Unstructured Dat...
 
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
一比一原版(Coventry毕业证书)考文垂大学毕业证如何办理
 
Machine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptxMachine learning and optimization techniques for electrical drives.pptx
Machine learning and optimization techniques for electrical drives.pptx
 
Adjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTESAdjusting primitives for graph : SHORT REPORT / NOTES
Adjusting primitives for graph : SHORT REPORT / NOTES
 
Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)Malana- Gimlet Market Analysis (Portfolio 2)
Malana- Gimlet Market Analysis (Portfolio 2)
 
Influence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business PlanInfluence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business Plan
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
 
The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...The affect of service quality and online reviews on customer loyalty in the E...
The affect of service quality and online reviews on customer loyalty in the E...
 
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
一比一原版(UniSA毕业证书)南澳大学毕业证如何办理
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
 

Data Visualization using matplotlib