Python Matplotlib Library: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
(Redirected page to Matplotlib Library)
 
m (Text replacement - " [[" to " [[")
 
(33 intermediate revisions by 4 users not shown)
Line 1: Line 1:
#REDIRECT[[Matplotlib_Library]]
A [[Python Matplotlib Library]] is a [[Python-based library|Python]] that is [[plotting library]] for [[data visualization]] and [[2D graphics]] .
* <B>Context:</B>
** Website: https://matplotlib.org
** Repository: https://github.com/matplotlib/matplotlib
** It can be intended to make publication quality plots using a syntax familiar to MATLAB users.
** It ranges from to being [[matplotlib v2.0.2]] to being [[matplotlib v3.3.4]].
* <B>Example(s):</B>
** Plotting a [[sine function]] in [[python]] using [[Matplotlib Pylab Module|<code>matplotlib.pylab</code> module]]:<P><div style="font-family:monospace; font-size:10.5pt;width:50%;align:left;background:#f0f5f5;padding-top:2px;padding-left:10px">import numpy as np        <P>          import matplotlib.pyplot as plt<P>          x = np.arange(0, 5, 0.1)<P>          y = np.sin(x)<P>          plt.plot(x, y)</div>
** [[Matplotlib]] examples gallery:
*** https://matplotlib.org/stable/gallery/index.html
** …
* <B>Counter-Example(s):</B>
** [[Seaborn Library]].
** [[SciPy Library]],
** [[Scikit-Learn Library]],
** [[Bokeh Library]].
* <B>See:</B> [[Document Figure]], [[Histogram]], [[NumPy]], [[Object-Oriented Programming]], [[Qt (Framework)]], [[GNUplot]], [[OpenGL]].
 
----
----
 
== References ==
 
=== 2021 ===
* (Wikipedia, 2021) ⇒ https://en.wikipedia.org/wiki/Matplotlib Retrieved:2021-2-28.
** '''Matplotlib''' is a [[Plotter|plotting]] [[Library (computer science)|library]] for the [[Python (programming language)|Python]] programming language and its numerical mathematics extension [[NumPy]]. It provides an [[Object-oriented programming|object-oriented]] [[API]] for embedding plots into applications using general-purpose [[GUI toolkit]]s like [[Tkinter]], [[wxPython]], [[Qt (software)|Qt]], or [[GTK+]]. There is also a [[Procedural programming|procedural]] "pylab" interface based on a [[state machine]] (like [[OpenGL]]), designed to closely resemble that of [[MATLAB]], though its use is discouraged. [[SciPy]] makes use of Matplotlib. Matplotlib was originally written by [[John D. Hunter]]. Since then it has an active development community  and is distributed under a [[BSD licenses|BSD-style license]]. Michael Droettboom was nominated as matplotlib's lead developer shortly before John Hunter's death in August 2012  and was further joined by Thomas Caswell. Matplotlib 2.0.x supports Python versions 2.7 through 3.6. Python 3 support started with Matplotlib 1.2. Matplotlib 1.4 is the last version to support Python 2.6.  Matplotlib has pledged not to support Python 2 past 2020 by signing the Python 3 Statement.
 
=== 2017b ===
* https://medium.com/@kailashahirwar/essential-cheat-sheets-for-machine-learning-and-deep-learning-researchers-efb6a8ebd2e5
** QUOTE: <HTML><IMG WIDTH=700 SRC=https://cdn-images-1.medium.com/max/1000/1*ykxp7OpgBXbRRHgjzSkeCA.png></HTML>
 
=== 2017 ===
* https://pypi.python.org/pypi/matplotlib/2.0.2
** QUOTE: [[matplotlib Library|matplotlib]] strives to produce [[publication quality]] [[2D graphics]] for interactive graphing, scientific publishing, user interface development and web application servers targeting multiple user interfaces and hardcopy output formats. There is a ‘pylab’ mode which emulates matlab graphics.
 
=== 2014 ===
* (Wikipedia, 2014) ⇒ http://en.wikipedia.org/wiki/matplotlib Retrieved:2014-8-2.
** '''matplotlib''' is a [[Plotter|plotting]] [[Library (computer science)|library]] for the [[Python (programming language)|Python]] programming language and its [[NumPy]] numerical mathematics extension. It provides an [[Object-oriented programming|object-oriented]] [[API]] for embedding plots into applications using general-purpose [[GUI toolkit]]s like [[wxPython]], [[Qt (framework)|Qt]], or [[GTK+]]. There is also a [[procedural]] "pylab" interface based on a [[state machine]] (like [[OpenGL]]), designed to closely resemble that of [[MATLAB]]. [[SciPy]] makes use of matplotlib.        <P>        matplotlib was originally written by John Hunter, has an active development community,  and is distributed under a [[BSD licenses|BSD-style license]]. Michael Droettboom was nominated as matplotlib's lead developer shortly before John Hunter's death in 2012.  , matplotlib 1.3.1 supports Python versions 2.6 through 3.3. Matplotlib 1.2 is the first version of matplotlib to support Python 3.x.
 
=== 2014 ===
* http://sourceforge.net/projects/matplotlib/
** QUOTE: [[matplotlib Library|Matplotlib]] is a [[python library]] for making publication quality plots using a syntax familiar to MATLAB users. Matplotlib uses numpy for numerics. Output formats include PDF, Postscript, SVG, and PNG, as well as screen display.
 
=== 2014 ===
* http://matplotlib.org/
** QUOTE: [[matplotlib Library|matplotlib]] is a [[python library|python]] [[2D plotting library]] which produces [[publication quality figure]]s in a variety of [[hardcopy format]]s and [[interactive environment]]s across [[platform]]s. [[matplotlib Library|matplotlib]] can be used in [[python script]]s, the [[python shell|python]] and [[ipython shell]] (ala MATLAB®* or Mathematica®†), [[web application server]]s, and six [[graphical user interface toolkit]]s.        <P>         [[matplotlib Library|matplotlib]] tries to make [[easy thing]]s easy and [[hard thing]]s possible. You can [[generate]] [[plot]]s, [[histogram]]s, [[power spectra]], [[bar chart]]s, [[errorchart]]s, [[scatterplot]]s, etc, with just a few lines of code.
 
----
 
__NOTOC__
[[Category:Concept]]
[[Category:Data Science]]

Latest revision as of 17:07, 1 June 2024

A Python Matplotlib Library is a Python that is plotting library for data visualization and 2D graphics .



References

2021

  • (Wikipedia, 2021) ⇒ https://en.wikipedia.org/wiki/Matplotlib Retrieved:2021-2-28.
    • Matplotlib is a plotting library for the Python programming language and its numerical mathematics extension NumPy. It provides an object-oriented API for embedding plots into applications using general-purpose GUI toolkits like Tkinter, wxPython, Qt, or GTK+. There is also a procedural "pylab" interface based on a state machine (like OpenGL), designed to closely resemble that of MATLAB, though its use is discouraged. SciPy makes use of Matplotlib. Matplotlib was originally written by John D. Hunter. Since then it has an active development community and is distributed under a BSD-style license. Michael Droettboom was nominated as matplotlib's lead developer shortly before John Hunter's death in August 2012 and was further joined by Thomas Caswell. Matplotlib 2.0.x supports Python versions 2.7 through 3.6. Python 3 support started with Matplotlib 1.2. Matplotlib 1.4 is the last version to support Python 2.6. Matplotlib has pledged not to support Python 2 past 2020 by signing the Python 3 Statement.

2017b

2017

2014

  • (Wikipedia, 2014) ⇒ http://en.wikipedia.org/wiki/matplotlib Retrieved:2014-8-2.
    • matplotlib is a plotting library for the Python programming language and its NumPy numerical mathematics extension. It provides an object-oriented API for embedding plots into applications using general-purpose GUI toolkits like wxPython, Qt, or GTK+. There is also a procedural "pylab" interface based on a state machine (like OpenGL), designed to closely resemble that of MATLAB. SciPy makes use of matplotlib.

      matplotlib was originally written by John Hunter, has an active development community, and is distributed under a BSD-style license. Michael Droettboom was nominated as matplotlib's lead developer shortly before John Hunter's death in 2012. , matplotlib 1.3.1 supports Python versions 2.6 through 3.3. Matplotlib 1.2 is the first version of matplotlib to support Python 3.x.

2014

2014