Share to:

Search Results: File:Matplotlib.pyplot Heat Map.png

Sorry, the article you're looking for isn't specifically available. Here are related topics:


File:Matplotlib.pyplot Heat Map.png
Sabtu, 2026-03-07 18:57:47

this work, hereby publish it under the following license: English matplotlib.pyplot Heat Map using inferno cmap. author name string: DoubleCritch Wikimedia...

Click to read more »
File:Analysis of Fourier series using Python Code.pdf
Jumat, 2025-06-20 14:25:42

function import numpy as np from scipy.signal import square import matplotlib.pyplot as plt from scipy.integrate import simps 5 6 Heduna Publications...

Click to read more »
File:New final Shyamal Bhar - Copy.pdf
Senin, 2025-02-03 04:47:08

libraries import numpy as np from scipy.signal import square import matplotlib.pyplot as plt from scipy.integrate import simps L=4 # Periodicity of the...

Click to read more »
File:Diagramme qq python matplotlib.svg
Selasa, 2025-12-09 18:09:32

import numpy as np from scipy import stats import matplotlib.pyplot as plt X = stats.norm.rvs(size=100) p = np.arange(0.1, 1, 0.1) qexp = np.quantile(X...

Click to read more »
File:Matplotlib scatter v.svg
Jumat, 2025-12-19 03:24:24

import matplotlib.pyplot as plt import numpy as np from numpy.random import rand x = rand(100) y = rand(100) plt.scatter(x, y) plt.savefig("matplotlib_scatter...

Click to read more »
File:Champ vecteurs python matplotlib.svg
Sabtu, 2025-11-22 01:06:21

import numpy as np import matplotlib.pyplot as plt base = np.arange(10) x, y = np.meshgrid(base, base) ux = -0.1*y uy = 0.1*x plt.quiver(x, y, ux, uy...

Click to read more »
File:Surface3D sinFoisSin python matplotlib.svg
Jumat, 2026-02-20 20:15:20

create this file. Deutsch ∙ English ∙ +/− import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # permet d'utiliser...

Click to read more »
File:NumPy Matplotlib sin x plotted with red dots.svg
Rabu, 2026-05-27 05:49:07

np import matplotlib.pyplot as plt # y = sin(x) x = np.linspace(0, 2*np.pi, 100) y = np.sin(x) plt.plot(x, y,"ro") plt.savefig('matplotlib_sin_x_red_dots...

Click to read more »
File:Matplotlib basic v.svg
Jumat, 2026-03-06 08:12:59

2015-08-08 import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 10, 100) y = np.exp(-x) plt.plot(x, y) plt.savefig("matplotlib_basic.svg")...

Click to read more »
File:Matplotlib 3d v.svg
Sabtu, 2026-03-21 22:39:45

# Author: Ika. 2015-08-08 from matplotlib import cm from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt import numpy as np fig =...

Click to read more »
File:Courbe polaire rayon aleatoire python matplotlib.svg
Selasa, 2025-12-09 16:32:31

import numpy as np import matplotlib.pyplot as plt theta = np.linspace(0, 2*np.pi, 20) theta[19] = theta[0] r = 1 + 0.2*np.random.randn(20) r[19] = r[0]...

Click to read more »
File:Sinus trace matplotlib escalier batons fleches.svg
Senin, 2025-12-29 01:52:04

create this file. Deutsch ∙ English ∙ +/− import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 2*np.pi, 20) y = np.sin(x) fig, listeAxes...

Click to read more »
File:Cartes couleur sinFoisSin python matplotlib.svg
Selasa, 2025-02-18 23:49:35

 This plot was created with Matplotlib. import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 2*np.pi, 20) y = x.copy() X, Y = np.meshgrid(x...

Click to read more »
File:Origins of English Words.svg
Senin, 2025-12-15 04:23:57

produced using MatPlotLib with the following (also Public Domain) code. #!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker...

Click to read more »
File:U.S. Births by Month.svg
Kamis, 2025-11-06 14:53:27

#!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker from matplotlib import numpy # This generates a bar graph showing birthdays...

Click to read more »
File:Japan Electricity Production 2009.svg
Selasa, 2026-03-24 06:27:25

as follows. #!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker from matplotlib import numpy # This generates a pie graph...

Click to read more »
File:Himmelblau function.svg
Jumat, 2026-02-20 20:11:46

Matplotlib v0.99 or later) from mpl_toolkits.mplot3d import Axes3D from matplotlib import cm from matplotlib.colors import LogNorm import matplotlib.pyplot...

Click to read more »
File:Japan Electricity Production 2014.svg
Minggu, 2025-11-30 20:22:18

produced using MatPlotLib with the following (also Public Domain) code. #!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker...

Click to read more »
File:U.S. Births by Time of Day.svg
Kamis, 2020-10-29 17:11:21

#!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker from matplotlib import numpy # This generates a bar graph showing births...

Click to read more »
File:U.S. Electricity Production 2015.svg
Selasa, 2025-12-16 04:19:51

produced using MatPlotLib with the following (also Public Domain) code. #!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker...

Click to read more »
File:Expinvsq5.svg
Sabtu, 2026-02-28 21:39:49

import matplotlib matplotlib.use('Agg') import numpy as np import matplotlib.pyplot as plt t = np.arange (-3, 3, .1) plt.plot (t, t * 0, 'r-', linewidth=2...

Click to read more »
File:Histogramme loi normale 50 ech numpy pyplot.png
Jumat, 2020-10-02 03:11:39

import numpy as np import matplotlib.pyplot as plt A = np.random.randn(100) plt.plot(A, np.ones_like(A), "|") plt.hist(A, bins=10, density=1) I, the copyright...

Click to read more »
File:Interpolation trois types.svg
Rabu, 2025-02-19 00:27:09

 This plot was created with Matplotlib. import numpy as np import matplotlib.pyplot as plt import matplotlib.pyplot as plt xp = np.linspace(0, 2*np.pi...

Click to read more »
File:Graphe fct carre Python Matplotlib Jupyter.png
Minggu, 2025-12-14 02:42:57

Graph of the square function with Python/Matplotlib. French Graphe de la fonction carré avec Python/Matplotlib. URL: https://commons.wikimedia.org/wiki/user:Cdang...

Click to read more »
File:Sinc re.svg
Selasa, 2025-12-23 21:04:37

depicting Im sinc(z).""" # Author: Ika. 2015-08-13 from matplotlib.pyplot import * import matplotlib.pyplot as plt import numpy as np low = -7.0 high = 7.0 tic...

Click to read more »
File:Poschl-Teller potential.svg
Rabu, 2020-08-26 22:10:23

and Matplotlib. from __future__ import division from numpy import cosh, arccosh, sqrt, linspace import matplotlib.pyplot as plt from matplotlib import...

Click to read more »
File:Matplotlib xkcd.png
Senin, 2021-08-09 05:02:26

Creative Commons Attribution-Share Alike 4.0 truetrue English Sine function image with matplotlib, xkcd themed Chinese (China) 使用matplotlib绘制的正弦函数图像,使用xkcd风格...

Click to read more »
File:Mpl example scatter plot.svg
Sabtu, 2025-09-06 12:56:00

########## """This generates a 100 points scatter graph.""" import matplotlib.pyplot as plt import numpy as np prng = np.random.RandomState(123) # Set...

Click to read more »
File:Division of x pow 2 times y pow 2 by x the sum of pow 4 and y pow 2 towards 0.png
Sabtu, 2026-05-02 18:58:04

matplotlib.ticker import LinearLocator, FormatStrFormatter import matplotlib.pyplot as plt import numpy as np fig = plt.figure() ax = fig.gca(projection='3d')...

Click to read more »
File:Mpl example line plot.svg
Sabtu, 2025-12-20 01:29:56

matplotlib.pyplot as plt import numpy as np fig, ax = plt.subplots() x = np.linspace(0, 10, 100) y = np.exp(-x) ax.plot(x, y) fig.savefig("matplotlib_basic...

Click to read more »
File:Mpl example histogram.svg
Sabtu, 2025-12-20 01:29:27

generates an histogram of 200 normal distributed samples.""" import matplotlib.pyplot as plt import numpy as np prng = np.random.RandomState(123) # Set...

Click to read more »
File:Distributions with equal medians.svg
Jumat, 2026-05-01 22:44:15

prepared with Python 3 and Matplotlib. The following source code is in public domain. import numpy as np import matplotlib.pyplot as plt import seaborn as...

Click to read more »
File:Mpl example 3D surface.svg
Jumat, 2026-02-20 20:18:20

function f(x, y) = sin(sqrt(x^2 + y^2)).""" import matplotlib.pyplot as plt import numpy as np from matplotlib import cm from mpl_toolkits.mplot3d import Axes3D...

Click to read more »
File:Continuous in x and y but non continuous.png
Sabtu, 2024-04-13 09:20:35

import Axes3D from matplotlib import cm from matplotlib.ticker import LinearLocator, FormatStrFormatter import matplotlib.pyplot as plt import numpy...

Click to read more »
File:IngMath fourier bsp15.svg
Selasa, 2026-05-12 22:20:54

import matplotlib.pyplot as plt import numpy as np T = 5*np.pi t = np.arange(0, T+.1, .1) y = np.pi/2 - 4/np.pi*(np.cos(t) + np.cos(3*t)/3**2 + np.cos(5*t)/5**2)...

Click to read more »
File:Sinc abs.svg
Senin, 2024-11-04 03:39:26

depicting |sinc(z)|.""" # Author: Ika. 2015-08-13 from matplotlib.pyplot import * import matplotlib.pyplot as plt import numpy as np low = -7.0 high = 7.0 tic...

Click to read more »
File:U.S. Historical Population.svg
Jumat, 2025-03-21 08:04:07

produced using MatPlotLib with the following (also Public Domain) code. #!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker...

Click to read more »
File:Percentile.png
Kamis, 2026-04-02 00:07:13

be reproduced using the following Python code: import matplotlib.pyplot as plt from matplotlib.patches import Ellipse import seaborn as sns color = sns...

Click to read more »
File:Mpl example polar plot.svg
Sabtu, 2025-12-20 01:30:19

########## ## Code for the figure ########## import matplotlib.pyplot as plt import numpy as np from matplotlib.ticker import NullFormatter # empty strings as...

Click to read more »
File:Sinc im.svg
Kamis, 2024-11-07 17:28:07

depicting Re sinc(z).""" # Author: Ika. 2015-08-13 from matplotlib.pyplot import * import matplotlib.pyplot as plt import numpy as np low = -7.0 high = 7.0 tic...

Click to read more »
File:Cauchy sequence illustration.svg
Minggu, 2025-11-23 23:23:40

from matplotlib.pyplot import * from mpl_toolkits.axes_grid.axislines import SubplotZero from numpy import arange, sin, exp x1 = arange(0.,9.1,.05) x2...

Click to read more »
File:Mpl example Rosenbrock function.svg
Jumat, 2026-02-20 20:18:20

+/− The matplotlib (mpl) version is 1.5.3, with Python 2.7 and numpy 1.10 ########## ## Code for the figure ########## import matplotlib.pyplot as plt...

Click to read more »
File:Japan Electricity Production 1980-2014.svg
Jumat, 2023-10-27 11:30:02

produced using MatPlotLib with the following (also Public Domain) code. #!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker...

Click to read more »
File:Sawtooth sampled.png
Minggu, 2025-05-04 03:58:45

Generated with the following code: import numpy as np import matplotlib.pyplot as plt frames_per_cycle = 16 freq = 2 nr_frames = frames_per_cycle * freq...

Click to read more »
File:Nonsmooth coordinate descent.svg
Jumat, 2020-08-21 11:17:04

with Python, SciPy and Matplotlib. from __future__ import division import numpy as np import matplotlib.pyplot as plt from matplotlib import rcParams rcParams['font...

Click to read more »
File:RosslerC126.svg
Sabtu, 2025-12-27 20:25:29

simulation of the Rossler system (c=12, period 6). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:RosslerC4.svg
Sabtu, 2025-12-27 20:26:51

simulation of the Rossler system (c=4, period 1). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:Collect pageview data of module.pdf
Senin, 2024-03-25 17:50:21

mwapi import pprint import pandas as pd import numpy as np import matplotlib.pyplot as plt from IPython.display import display from urllib.parse import...

Click to read more »
File:RosslerC6.svg
Sabtu, 2025-12-27 20:27:16

simulation of the Rossler system (c=6, period 2). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:Ufo reports in finland 1974 2022 2 1.png
Jumat, 2025-01-03 06:40:36

Python source code import math import numpy as np import matplotlib.pyplot as plt import matplotlib cases1=np.array([95,170,108,69,45,40,22,44,31,23,35,35...

Click to read more »
File:CarmichaelLambda.svg
Minggu, 2025-11-23 23:37:39

Created with python 2.7.13, matplotlib 2.0.0, sympy 1.1: from sympy import * import matplotlib.pyplot as plt nmin, nmax = 1, 1000 l = range(nmin,nmax)...

Click to read more »
File:RosslerC12.svg
Sabtu, 2025-12-27 20:24:52

simulation of the Rossler system (c=12, period 3). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:RosslerC87.svg
Sabtu, 2025-12-27 20:27:50

simulation of the Rossler system (c=8.7, period 8). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:Wikipedia bincounts.svg
Jumat, 2026-05-08 21:24:17

Generated with python: import numpy as np import pandas as pd import matplotlib.pyplot as plt np.random.seed(13) data = np.random.poisson(50, size = 1000)...

Click to read more »
File:RosslerC18.svg
Sabtu, 2025-12-27 20:26:18

simulation of the Rossler system (c=18, chaotic). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:MDKQ anim4.svg
Jumat, 2025-12-19 17:12:34

domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:BrittleAluminium320MPa S-N Curve.svg
Minggu, 2023-12-24 15:00:57

and Matplotlib. The data was obtained from the following image import numpy as np from scipy.interpolate import interp1d import matplotlib.pyplot as plt...

Click to read more »
File:MDKQ anim2.svg
Jumat, 2025-12-19 17:03:48

domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:MDKQ anim3.svg
Jumat, 2025-12-19 17:12:13

domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:LiverpoolPopulationHistory.svg
Kamis, 2025-12-18 15:26:44

license: #!/usr/bin/python import numpy as np import matplotlib.pyplot as plt import matplotlib.ticker as tkr def formatNumbers(x, pos): return "{number:1...

Click to read more »
File:Dice6 mean.png
Sabtu, 2026-03-14 15:50:53

import choices import seaborn as sns import matplotlib.pyplot as plt sns.set(color_codes=True) %matplotlib inline data = [1,2,3,4,5,6] m = [];l = 1000...

Click to read more »
File:Ufo reports in finland 1974 2022 1 1.png
Kamis, 2026-04-23 04:09:40

Python 3 source code import math import numpy as np import matplotlib.pyplot as plt import matplotlib cases1=np.array([95,170,108,69,45,40,22,44,31,23,35,35...

Click to read more »
File:MDKQ anim5.svg
Jumat, 2025-12-19 17:13:05

domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:Rose des vents exemple Python.svg
Rabu, 2025-01-08 03:22:09

 This W3C-invalid plot was created with Matplotlib. #!/usr/bin/python3 import numpy as np import matplotlib.pyplot as plt # ************** # * Constantes...

Click to read more »
File:MDKQ anim6.png
Senin, 2025-06-02 13:27:05

with Matplotlib. #This source code is public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt...

Click to read more »
File:RosslerC13.svg
Sabtu, 2025-12-27 20:25:55

simulation of the Rossler system (c=13, chaotic). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:RosslerVaryC.svg
Sabtu, 2025-12-27 20:36:14

bifurcation of the Rossler system with varying c. import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:MDKQ animA.png
Sabtu, 2025-01-18 20:53:34

with Matplotlib. #This source code is public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt...

Click to read more »
File:Heatmap of GCD Matrix.png
Jumat, 2025-10-17 14:58:13

import numpy as np import matplotlib.pyplot as plt import matplotlib import os from math import gcd # Ensure output directory exists os.makedirs("/mnt/data"...

Click to read more »
File:MDKQ anim4.png
Jumat, 2025-12-05 01:35:15

public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt x=[1,2,3,4,5,6,7] y=[2.0,2.5,2.5...

Click to read more »
File:MDKQ anim3.png
Jumat, 2025-12-05 01:34:29

public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt x=[1,2,3,4,5,6,7] y=[2.0,2.5,2.5...

Click to read more »
File:Mplwp chebyshevU30.svg
Sabtu, 2025-12-20 01:35:04

mplwp 1.6 #!/usr/bin/python # -*- coding: utf8 -*- import matplotlib.pyplot as plt import matplotlib as mpl import numpy as np from math import * code_website...

Click to read more »
File:Conditional norm.svg
Selasa, 2024-04-09 16:33:09

from matplotlib import gridspec import matplotlib.pyplot as plt import numpy as np from scipy.stats import norm linspace_size = 5000 linspace_left = -4...

Click to read more »
File:MDKQ anim ohne Ausreiser1.svg
Jumat, 2025-12-19 16:51:13

Kalliauer import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:MDKQ anim ohne Ausreiser.gif
Jumat, 2026-02-06 18:06:57

matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy.random import randn x=[1...

Click to read more »
File:MDKQ anim0.png
Jumat, 2025-12-05 01:31:40

public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt x=[1,2,3,4,5,6,7] y=[2.0,2.5,2.5...

Click to read more »
File:MDKQ anim ohne Ausreiser0.svg
Jumat, 2025-12-19 03:32:11

Kalliauer import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:MDKQ anim.svg
Jumat, 2025-12-19 17:02:37

domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:MDKQ anim1.png
Jumat, 2025-12-05 01:33:13

public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt x=[1,2,3,4,5,6,7] y=[2.0,2.5,2.5...

Click to read more »
File:Real average annual wages in G7.svg
Rabu, 2026-03-04 06:48:13

following license: import matplotlib as mp import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df...

Click to read more »
File:Runge phenomenon equidist chebushev.gif
Minggu, 2025-12-07 06:16:35

license of your choice. import matplotlib.pyplot as plt import numpy as np import matplotlib.ticker as tckr from matplotlib.animation import FuncAnimation...

Click to read more »
File:MDKQ anim ohne Ausreiser5.svg
Jumat, 2025-12-19 17:02:01

Kalliauer import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:Chapman function.svg
Kamis, 2024-02-22 08:48:44

import numpy as np import scipy.integrate import matplotlib.pyplot as plt @np.vectorize def chapman(x, theta): f = lambda l, x, theta: np.exp(-(np.sqrt(x**2...

Click to read more »
File:MDKQ anim6.svg
Rabu, 2025-02-19 00:14:47

Matplotlib by v. #This source code is public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as...

Click to read more »
File:MDKQ anim5.png
Senin, 2026-02-09 08:17:48

public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt x=[1,2,3,4,5,6,7] y=[2.0,2.5,2.5...

Click to read more »
File:MDKQ anim1.svg
Jumat, 2026-02-27 15:32:15

Matplotlib by v. #This source code is public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as...

Click to read more »
File:GeometricBrown1D.svg
Selasa, 2025-12-30 19:20:45

Brownian process with time step dt = .0001 import matplotlib.pyplot as pl import numpy as np import matplotlib.patches as mpatches t0 = 0.0 dt = 0.0001 t_final...

Click to read more »
File:MDKQ anim ohne Ausreiser4.svg
Jumat, 2025-12-19 17:01:20

Kalliauer import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:MDKQ anim ohne Ausreiser2.svg
Jumat, 2025-12-19 17:13:15

Kalliauer import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:Python Basics - With Illustrations from the Financial Markets.pdf
Selasa, 2023-07-04 01:12:19

Python and its data science related libraries such as NumPy, Pandas, and Matplotlib. The illustrative examples we use are associated with the financial markets...

Click to read more »
File:Lawoflargenumbers.svg
Jumat, 2025-12-19 17:17:15

using the following Python source code import numpy as np import matplotlib.pyplot as plt import seaborn as sns np.random.seed(0) x = np.arange(1, 1001...

Click to read more »
File:MDKQ anim0.svg
Jumat, 2025-12-19 17:03:10

domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:Parametric Helix.svg
Rabu, 2025-12-10 19:39:53

Created using python from matplotlib.pyplot import * from numpy import linspace, cos, sin from mpl_toolkits.mplot3d import Axes3D t = linspace(0,50,200)...

Click to read more »
File:Mpl screenshot figures and code.png
Jumat, 2026-03-27 11:22:01

previous work https://en.wikipedia.org/wiki/File:Matplotlib_screenshot.png , done by Geek3. The matplotlib (mpl) version is the development branch 2.x, with...

Click to read more »
File:Square signal and its antiderivatives.svg
Senin, 2020-10-05 06:26:03

Python (scipy/numpy/matplotlib) code: from matplotlib.pyplot import * from numpy import * from scipy.integrate import cumtrapz def f(x): return x*sin(1/x)...

Click to read more »
File:Circulation accordeon animation.gif
Senin, 2025-09-08 02:19:59

was created with Matplotlib. Python source #!/usr/bin/python3 import numpy as np import matplotlib.pyplot as plt import matplotlib.animation as animation...

Click to read more »
File:MDKQ6 anim.gif
Senin, 2025-12-01 04:12:38

matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy.random import randn x=[1...

Click to read more »
File:MDKQ anim ohne Ausreiser3.svg
Jumat, 2025-12-19 16:59:23

Kalliauer import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy...

Click to read more »
File:Most active tlp sites on the moon 3.png
Sabtu, 2024-06-08 23:46:40

from: https://svs.gsfc.nasa.gov/4720/ import matplotlib.pyplot as plt import numpy as np from matplotlib.image import imread import imageio from mpl_toolkits...

Click to read more »
File:Feigenbaum Tree.gif
Sabtu, 2024-03-16 19:34:03

(2023) %reset -f %matplotlib notebook import numpy as np import matplotlib.pyplot as plt from matplotlib import rc from matplotlib.animation import FuncAnimation...

Click to read more »
File:BesselProcess1D.svg
Minggu, 2025-11-23 03:08:34

= 3, 10, 20 and time step dt = .0001 import matplotlib.pyplot as pl import numpy as np import matplotlib.patches as mpatches t0 = 0.0 dt = 0.0001 t_final...

Click to read more »
File:Multiplanetary systems compactness mass relation 1.png
Minggu, 2026-04-19 22:48:56

import requests from io import StringIO import numpy as np import matplotlib.pyplot as plt MSUN_TO_MEARTH = 332946 ========================= 1. HAE DATA...

Click to read more »
File:Niger-demography.svg
Selasa, 2020-06-16 14:47:25

import numpy as np import matplotlib.pyplot as plt from matplotlib import rc fontsize=24 fontsize_small=16 rc('font', family='sans-serif', serif=['Latin...

Click to read more »
File:HenonMap.svg
Jumat, 2025-12-12 19:34:26

# An Euler method based simulation of the Henon Map. import matplotlib.pyplot as pl import numpy as np t_final = 50000 a, b = 1.4, 0.3 ax = pl.figure()...

Click to read more »
File:Schwarz triangle function.svg
Senin, 2023-11-13 02:08:47

 The SVG code is valid.  This plot was created with Matplotlib. I, the copyright holder of this work, hereby publish it under the following license: English...

Click to read more »
File:Nepal-LifeExpectancy.svg
Senin, 2025-12-22 07:11:25

Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt from matplotlib import rc fontsize=24 fontsize_small=16 rc('font', family='sans-serif'...

Click to read more »
File:Ufo reports in france by year according of GEIPAN archives 1.png
Senin, 2025-10-20 23:17:16

InfoField  This plot was created with Matplotlib. Source code InfoField import pandas as pd import matplotlib.pyplot as plt import numpy as np # Ladataan...

Click to read more »
File:Euler-Maruyama-Verfahren zur Berechnung eines Ornstein-Uhlenbeck-Prozesses.svg
Senin, 2024-12-09 00:30:59

import numpy as np import matplotlib.pyplot as plt tBegin=0 tEnd=2 dt=.00001 t = np.arange(tBegin, tEnd, dt) N = t.size IC=0 theta=1 mu=1.2 sigma=0.3...

Click to read more »
File:Supercomputing-rmax-graph.png
Minggu, 2025-12-07 01:36:23

   This plot was created with Matplotlib. English author name string: Lucaswilkins Wikimedia username: Lucaswilkins...

Click to read more »
File:Social expenditure of Japan.svg
Senin, 2025-05-05 11:02:09

import matplotlib.pyplot as plt import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") fig, ax =...

Click to read more »
File:Files without categories on Commons over time (count and %) since February 2026.svg
Sabtu, 2026-05-02 23:45:41

was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt import matplotlib.dates as mdates from matplotlib.ticker import FixedLocator...

Click to read more »
File:Nepal-under-five-mortality.svg
Senin, 2025-12-22 07:11:24

Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt from matplotlib import rc fontsize=24 fontsize_small=16 rc('font', family='sans-serif'...

Click to read more »
File:Population ages of Japan, by prefecture.svg
Kamis, 2026-05-28 02:01:28

import matplotlib as mpl from cycler import cycler import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep =...

Click to read more »
File:Lebesgue Integration and Upper Sums.gif
Selasa, 2025-12-02 17:11:36

Ika, 2013-09-14 import numpy as np import matplotlib.pyplot as plt import scipy.special as sp from matplotlib.patches import Polygon import random fig=plt...

Click to read more »
File:Labour force participation rate in Japan.svg
Jumat, 2023-11-17 14:32:13

import matplotlib.pyplot as plt import matplotlib.ticker as ticker from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df_lfs...

Click to read more »
File:Interior extremum graph.svg
Kamis, 2026-01-29 05:51:47

import matplotlib.pyplot as plt import numpy as np import math plt.rcParams['figure.figsize'] = (3,3) LEFT = -math.pi RIGHT = math.pi def f(x): return...

Click to read more »
File:Population Projections for Japan.svg
Jumat, 2023-11-17 14:47:48

the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df1 = pd.read_csv("real...

Click to read more »
File:Renewable energy by source irena-no.svg
Sabtu, 2026-01-03 19:44:26

create this file. Deutsch ∙ English ∙ +/− import numpy as np import matplotlib.pyplot as plt hydro = [1056729, 1089846, 1136714, 1175603, 1211620, 1246725...

Click to read more »
File:Labour force participation rate by sex.svg
Kamis, 2026-04-23 13:19:51

as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib. patches as mpatches from matplotlib. lines import...

Click to read more »
File:Riemann Integration and Darboux Lower Sums.gif
Senin, 2020-10-26 05:10:39

Ika, 2013-09-14 import numpy as np import matplotlib.pyplot as plt import scipy.special as sp from matplotlib.patches import Polygon import random fig=plt...

Click to read more »
File:Discrete Gaussian kernel.svg
Jumat, 2026-05-01 09:27:52

* np.exp(-n**2/(2*t)) return G if __name__ == '__main__': import matplotlib.pyplot as plt plt.figure(figsize=(5, 6)) for t in (0.5, 1, 2, 4): N = 6 n...

Click to read more »
File:Hospital beds in OECD.svg
Senin, 2023-02-06 17:32:45

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.csv", index_col=[0])...

Click to read more »
File:English Wikipedia article for creation (AfC) decline reasons chart – Technology AfCs.svg
Rabu, 2026-04-22 00:59:45

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt # Data labels = [ "Lacks notability", "LLM"...

Click to read more »
File:OECD General Consumption Taxes.svg
Senin, 2021-11-01 21:13:16

import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.sort_values(by=["Val"], ascending=True)...

Click to read more »
File:Gaussian curvature.svg
Jumat, 2026-02-20 19:23:46

numpy as np from numpy import pi, cos, sin, sqrt, outer, ones import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig = plt.figure(figsize=(10...

Click to read more »
File:Slater-Determinant.png
Jumat, 2022-06-24 05:09:39

Python 3.7.1 matplotlib 3.0.2 from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt from matplotlib import cm from matplotlib.ticker import...

Click to read more »
File:MDKQ anim ohne Ausreiserx.svg
Jumat, 2026-03-20 02:43:05

matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt import matplotlib.patches as mpatches from numpy.random import randn x=[1...

Click to read more »
File:RosslerC9.svg
Minggu, 2020-10-11 05:17:01

simulation of the Rossler system (c=9, chaotic). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:MDKQ anim2.png
Jumat, 2025-12-05 01:33:51

public domain import numpy, pylab from matplotlib.font_manager import FontProperties import matplotlib.pyplot as plt x=[1,2,3,4,5,6,7] y=[2.0,2.5,2.5...

Click to read more »
File:Riemann Integration and Darboux Upper Sums.gif
Senin, 2020-10-26 05:10:39

Ika, 2013-09-15 import numpy as np import matplotlib.pyplot as plt import scipy.special as sp from matplotlib.patches import Polygon import random fig=plt...

Click to read more »
File:English Wikipedia article for creation (AfC) decline reasons chart – Business AfCs.svg
Rabu, 2026-04-22 01:00:20

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt # Data labels = [ "Lacks notability", "LLM"...

Click to read more »
File:Przyklad wykresu.svg
Senin, 2026-06-01 09:23:09

valid.  This plot was created with Matplotlib. Source code InfoField import numpy as np import matplotlib.pyplot as plt # dane x = np.linspace(0, 12...

Click to read more »
File:Instability of Euler's method.svg
Rabu, 2025-02-19 00:35:04

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from numpy import linspace, exp from math import floor la =...

Click to read more »
File:Gaussian mechanism.png
Sabtu, 2026-01-31 07:04:08

the author to public domain. import numpy as np import matplotlib.pyplot as plt import matplotlib.colors as colors import scipy.stats as stats plt.rc('text'...

Click to read more »
File:Lemniscate-of-Gerono2.svg
Rabu, 2024-07-10 13:07:18

 W3C-validity not checked. import matplotlib as mp import matplotlib.pyplot as plot import numpy as np from math import pi style = { "axes.linewidth":...

Click to read more »
File:Infant-under-five-mortality-worldmap-2016.svg
Kamis, 2022-02-24 22:50:26

and Matplotlib Basemap Toolkit. """ from mpl_toolkits.basemap import Basemap import matplotlib.pyplot as plt import numpy as np from matplotlib.patches...

Click to read more »
File:Health expenditure and Life expectancy in OECD.svg
Senin, 2026-02-02 20:50:35

following license: import matplotlib.pyplot as plt import pandas as pd import matplotlib.ticker as ticker import matplotlib.cm as cm df1 = pd.read_csv("data...

Click to read more »
File:Revenue of Government 2020 in OECD.svg
Senin, 2023-08-28 00:32:51

publish it under the following license: import matplotlib as mpl from cycler import cycler import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data...

Click to read more »
File:IWG plc locations.png
Selasa, 2024-12-17 16:37:47

install https://github.com/matplotlib/basemap/archive/master.zip from mpl_toolkits.basemap import Basemap import matplotlib.pyplot as plt import pandas df...

Click to read more »
File:Reciprocal Histogram.svg
Rabu, 2024-08-28 09:56:42

publish it under the following license: import numpy as np import matplotlib.pyplot as plt from scipy import stats N = 1000000 orig = stats.reciprocal...

Click to read more »
File:US Net Gas Imports.svg
Selasa, 2025-12-23 08:45:30

Generated with: import csv import matplotlib import matplotlib.pyplot as plt import matplotlib.ticker as plticker lines = [None, None, None] with...

Click to read more »
File:General goverrnment employment in OECD countries.svg
Selasa, 2021-06-15 03:00:38

import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.sort_values(by=["Val"], ascending=True)...

Click to read more »
File:Export-Worldmap-2016.svg
Minggu, 2024-08-18 03:54:17

Basemap import matplotlib.pyplot as plt import matplotlib.colors as colors from matplotlib.colors import LogNorm import numpy as np from matplotlib.patches import...

Click to read more »
File:Doctors in G20 countries.svg
Minggu, 2026-05-03 16:23:49

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df=pd.read_csv("data...

Click to read more »
File:Rod diameter change poisson.svg
Rabu, 2025-02-19 00:42:50

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField from matplotlib.pyplot import * from numpy import * dL = linspace(-10...

Click to read more »
File:Quadratic basis.svg
Rabu, 2025-02-19 00:25:09

Commons Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt """ Plots the function f(x) = x**n over a given interval. Arguments:...

Click to read more »
File:English Wikipedia article for creation (AfC) decline reasons chart – Organization AfCs.svg
Rabu, 2026-04-22 01:00:44

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt # Data labels = [ "Lacks notability", "Reads...

Click to read more »
File:Excess earths in ukraine during years 1932 - 1934 1.png
Rabu, 2026-01-07 21:40:18

Source of data Python 3 source code import matplotlib.pyplot as plt import numpy as np from matplotlib.ticker import FuncFormatter Data koko Ukrainalle...

Click to read more »
File:Reciprocal cdf.svg
Rabu, 2025-12-10 22:43:26

publish it under the following license: import numpy as np import matplotlib.pyplot as plt from scipy import stats X = np.arange(7) plt.clf() plt.figure(figsize=(4...

Click to read more »
File:Temporary employment in OECD.svg
Sabtu, 2024-07-13 04:21:55

import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.sort_values(by=["Val"], ascending=True)...

Click to read more »
File:English Wikipedia article for creation (AfC) decline reasons chart – Art AfCs.svg
Rabu, 2026-04-22 01:56:55

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt # Data labels = [ "Lacks notability", "Lacks...

Click to read more »
File:Suomen ensimmainen koronavirus aalto kevat 22 ja logistinen kayra ennuste 1.svg
Minggu, 2022-07-24 23:03:47

matplotlib.pyplot as plt from scipy.optimize import leastsq import math as math import pandas as pd import matplotlib.pyplot as plt import matplotlib...

Click to read more »
File:One-player chessboard.png
Jumat, 2024-10-25 06:09:19

== source code to generate this image import numpy as np import matplotlib.pyplot as plt B=np.zeros([65,9,2]) A=np.zeros([65,9,2]) for i in range(65):...

Click to read more »
File:Lebesgue Integration and Lower Sums.gif
Kamis, 2025-12-04 08:56:42

Ika, 2013-09-14 import numpy as np import matplotlib.pyplot as plt import scipy.special as sp from matplotlib.patches import Polygon import random fig=plt...

Click to read more »
File:Comoving distance and lookback time (Planck 2018).png
Selasa, 2024-06-04 21:31:03

with the following python code, using astropy, numpy, and matplotlib: import matplotlib.pyplot as plt import numpy as np import astropy.units as u from...

Click to read more »
File:The effective job offer rate in Japan.svg
Jumat, 2023-11-17 14:56:02

the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data...

Click to read more »
File:Employed person in Japan by type.svg
Jumat, 2023-11-17 14:17:35

import matplotlib as mpl from cycler import cycler import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep =...

Click to read more »
File:Reciprocal pdf.svg
Minggu, 2024-07-14 08:05:37

publish it under the following license: import numpy as np import matplotlib.pyplot as plt from scipy import stats plt.clf() plt.figure(figsize=(4,3.2))...

Click to read more »
File:Employment protection legislation compare.svg
Minggu, 2025-06-22 15:45:18

import matplotlib.pyplot as plt import pandas as pd import seaborn as sns df=pd.read_csv("data.csv", index_col=[0]) sns.set() sns.set_style('whitegrid')...

Click to read more »
File:Laplace mechanism.png
Jumat, 2023-05-12 19:09:32

author into public domain. import numpy as np import matplotlib.pyplot as plt import matplotlib.colors as colors import scipy.stats as stats plt.rc('text'...

Click to read more »
File:Mplwp sec csc piaxis.svg
Sabtu, 2025-12-20 01:45:59

source #!/usr/bin/python # -*- coding: utf8 -*- import matplotlib.pyplot as plt import matplotlib as mpl import numpy as np from math import * code_website...

Click to read more »
File:Isothermal GIF.gif
Selasa, 2026-03-03 15:57:22

Code to generate the last frame. from matplotlib.pyplot import * from numpy import linspace, arange from matplotlib.patches import Polygon x1 = linspace(0...

Click to read more »
File:Forward and backward Euler method.png
Kamis, 2020-10-08 19:39:19

import numpy as np import matplotlib.pyplot as plt a = float(5) # Maximal value of the domain n = float(30) # Number of divisions dt = a/n # Size of each...

Click to read more »
File:Disposable income Gini in G7 countries.svg
Jumat, 2026-05-01 15:45:52

the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data...

Click to read more »
File:LogGamma Analytic Function.png
Senin, 2022-04-18 22:33:37

Attribution-Share Alike 4.0 truetrue import matplotlib as mpl import matplotlib.pyplot as plt from matplotlib import cm from mpl_toolkits.mplot3d import...

Click to read more »
File:Equipotential by Zureks.png
Kamis, 2025-11-27 17:33:48

created with Python Matplotlib using the following code: import numpy as np from matplotlib import pyplot as plt from matplotlib import colors cmap =...

Click to read more »
File:Healthy Life Years and LEB.svg
Senin, 2025-11-17 19:24:22

hereby publish it under the following license: import matplotlib as mpl import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd...

Click to read more »
File:Shepard interpolation 1 dimension.png
Senin, 2023-09-11 00:26:47

archive copy at the Wayback Machine, matplotlib) used to create this image: import numpy as np import matplotlib.pyplot as plt def weight( pointA, pointB...

Click to read more »
File:Feigenbaum tree with bias.gif
Sabtu, 2024-03-16 19:35:16

(2023) %reset -f %matplotlib notebook import numpy as np import matplotlib.pyplot as plt from matplotlib import rc from matplotlib.animation import FuncAnimation...

Click to read more »
File:Gaussianbeam travelling grey.gif
Sabtu, 2020-09-26 09:28:56

plot was created with Matplotlib by n. The image is created by the following python source-code. Requirements: python Matplotlib plotting library I, the...

Click to read more »
File:Sierpinski triangle.svg
Jumat, 2026-02-27 12:20:05

 This plot was created with Matplotlib. Source code InfoField from __future__ import division import matplotlib.pyplot as plt plt.figure() plt.subplot(1...

Click to read more »
File:RosslerAttractor.svg
Selasa, 2026-02-17 11:12:22

method based simulation of the Rossler system. import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:Gewinne Deutsche Bundesbank ab 1989.svg
Jumat, 2023-10-27 14:27:20

Daten und Überschreiben des Bildes ist ausdrücklich erwünscht. import matplotlib.pyplot as plt import pandas as pd data = pd.read_csv('data.csv') plt.ylabel('Gewinn...

Click to read more »
File:RosslerC85.svg
Sabtu, 2024-11-30 05:49:45

simulation of the Rossler system (c=8.5, period 4). import matplotlib.pyplot as pl from matplotlib.lines import Line2D import numpy as np t0 = 0.0 dt = 0...

Click to read more »
File:English Wikipedia article for creation (AfC) decline reasons chart – Persons AfCs.svg
Jumat, 2026-04-24 17:19:01

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt # Data labels = [ "Lacks notability", "Lacks...

Click to read more »
File:Sawtooth harmonics.png
Kamis, 2025-09-04 13:18:07

Generated with the following code: import numpy as np import matplotlib.pyplot as plt frames_per_cycle = 256 freq = 3 nr_frames = frames_per_cycle * freq...

Click to read more »
File:Productivity - GDP per hour worked in OECD.svg
Jumat, 2023-11-17 14:48:52

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:Poisson approximation to Binomial.svg
Selasa, 2020-08-25 02:34:19

import numpy as np import matplotlib.pyplot as plt from scipy import stats X = np.arange(7) plt.clf() plt.figure(figsize=(4,3.2)) plt.axes([0.17,0.13...

Click to read more »
File:The Colors of Noise.svg
Minggu, 2026-01-04 13:16:05

import colorednoise as cn import matplotlib.pyplot as plt from matplotlib import mlab betas = [-2, -1, 0, 1, 2] colors = ['violet', 'blue', 'gray', 'pink'...

Click to read more »
File:Mplwp tan cot piaxis.svg
Sabtu, 2025-12-20 01:47:35

source #!/usr/bin/python # -*- coding: utf8 -*- import matplotlib.pyplot as plt import matplotlib as mpl import numpy as np from math import * code_website...

Click to read more »
File:Social expenditure in OECD.svg
Rabu, 2020-09-23 17:03:32

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.csv", index_col=[0])...

Click to read more »
File:Mpl example Helmoltz coils.svg
Sabtu, 2025-12-20 01:28:59

utf-8 -*- from __future__ import division import matplotlib.pyplot as plt import numpy as np from matplotlib.cm import viridis as colormap # future default...

Click to read more »
File:BetaDistrMode.svg
Kamis, 2026-02-19 22:37:31

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Proportionality.svg
Kamis, 2024-08-22 01:59:53

 W3C-validity not checked. import matplotlib as mp import matplotlib.pyplot as plot import numpy as np from math import pi style = { "axes.linewidth":...

Click to read more »
File:Health spending percent of GDP in G20 countries.svg
Jumat, 2023-11-17 14:24:22

import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data...

Click to read more »
File:T distribution 30df enhanced.svg
Rabu, 2025-02-19 00:35:11

Commons Attribution-Share Alike 3.0 truetrue import numpy as np import matplotlib.pyplot as plt import scipy.special as sp X = np.arange(-4, 4, 0.01) # range...

Click to read more »
File:Real minimum wages in OECD.svg
Jumat, 2023-11-17 14:50:16

license: import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data...

Click to read more »
File:Adiabatic GIF.gif
Senin, 2023-07-10 23:34:04

Code to generate the last frame. from matplotlib.pyplot import * from numpy import linspace, arange from matplotlib.patches import Polygon x1 = linspace(0...

Click to read more »
File:Crude marriage rate in OECD.svg
Sabtu, 2024-04-27 01:55:12

hereby publish it under the following license: import matplotlib as mpl import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd...

Click to read more »
File:Tobacco Daily smokers in OECD.svg
Minggu, 2025-05-04 10:05:12

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T df = df...

Click to read more »
File:Tohoku Population 1920-2020.svg
Rabu, 2022-12-21 08:47:56

with Matplotlib in Python using the following code. #!/usr/bin/env python from matplotlib import pyplot from matplotlib import ticker from matplotlib import...

Click to read more »
File:Gaussianbeam travelling PRGn.gif
Sabtu, 2025-11-29 23:04:09

plot was created with Matplotlib by n. The image is created by the following python source-code. Requirements: python Matplotlib plotting library I, the...

Click to read more »
File:Temporary employment Timeline.svg
Jumat, 2023-11-17 14:55:36

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T df = df...

Click to read more »
File:Average annual wages in OECD.svg
Jumat, 2025-07-18 17:56:06

license: import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data...

Click to read more »
File:Hiroshima bomb effects diagram.svg
Kamis, 2024-09-12 20:46:28

This image is produced with this matplotlib script import matplotlib.pyplot as plt in ubuntu you need python-matplotlib, python-tk poltto1 = plt.Circle((0...

Click to read more »
File:WienerProcess3D.svg
Rabu, 2025-12-17 18:54:35

time step dt = .0001 from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 2 T = np.arange(t0...

Click to read more »
File:Beta function on real plane.png
Minggu, 2025-11-23 03:57:25

SVG elements etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np from scipy.special import beta # Prepare...

Click to read more »
File:ItoIntegralWienerProcess.svg
Jumat, 2026-05-29 13:05:25

Ito Integral of a Wiener process with time step dt = .0001 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 3.9 T = np...

Click to read more »
File:English Wikipedia article for creation (AfC) decline reasons chart.svg
Selasa, 2026-04-21 22:41:03

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt # Data labels = [ "Lacks notability", "Lacks...

Click to read more »
File:PR curve with optimal fscore.png
Kamis, 2025-07-10 04:44:18

import matplotlib.pyplot as plt import numpy as np from sklearn.datasets import make_classification from sklearn.linear_model import LogisticRegression...

Click to read more »
File:Public and private health expenditure by country.svg
Jumat, 2025-12-12 23:37:43

import matplotlib as mpl import numpy as np from cycler import cycler import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv"...

Click to read more »
File:Quadratic-function-x2-minus4x-plus2.svg
Kamis, 2020-09-17 20:10:45

numpy as np from numpy import arange, array import matplotlib as mp import matplotlib.pyplot as pyplot minus = u"\u2212" blue = [0.2,0.4,0.6,1.0] green...

Click to read more »
File:DFT 2sin(t) + cos(4t) 25 points.svg
Jumat, 2024-05-03 19:16:27

imaginary. Generated with: ‎ #!/usr/bin/env python import math import matplotlib.pyplot as plt import numpy as np N = 25 x = np.array([2 * math.sin(i * 2...

Click to read more »
File:Gamma function.svg
Minggu, 2024-08-18 05:16:19

math import gamma from numpy import arange, array import matplotlib as mp import matplotlib.pyplot as plot lw_grid = 1.6 lw_line = 2 axes_color = "#505050"...

Click to read more »
File:Civil servant persons in Japan Timeline.svg
Senin, 2024-07-15 01:47:51

the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data...

Click to read more »
File:Labour force participation rate (25-64 age).svg
Kamis, 2025-05-01 16:25:06

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.csv", index_col=0) df = df.T fig, ax = plt.subplots(figsize=(12...

Click to read more »
File:BetaDistrMean.svg
Kamis, 2026-02-19 22:37:21

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Weekly working time in OECD Men.svg
Sabtu, 2026-01-24 07:34:34

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("men.tsv", index_col=0 , sep = "\t") df = df.T df = df...

Click to read more »
File:General government debt in OECD.svg
Senin, 2022-11-21 19:00:52

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:PWLDuffingAttractor.svg
Kamis, 2025-12-18 17:16:54

simulation of the PWL Duffing chaotic Attractor with i=-15. import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.01 t_final = 1000 T = np...

Click to read more »
File:Labour force Projections for Japan 2024.svg
Jumat, 2024-11-08 06:13:00

the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df1 = pd.read_csv("data...

Click to read more »
File:Population change rate of Japan East.svg
Sabtu, 2025-05-10 06:48:04

import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("east...

Click to read more »
File:Absolute-value-function.svg
Selasa, 2023-07-04 19:59:44

numpy as np from numpy import arange, array import matplotlib as mp import matplotlib.pyplot as pyplot minus = u"\u2212" blue = [0.2,0.4,0.6,1.0] green...

Click to read more »
File:Physicians and Doctor consultants in OECD.svg
Jumat, 2023-11-17 14:47:00

Alike 3.0 truetrue import matplotlib.pyplot as plt import pandas as pd import matplotlib.ticker as ticker import matplotlib.cm as cm df1 = pd.read_csv("data...

Click to read more »
File:Mental Hospital average stay length in OECD.svg
Minggu, 2022-11-27 04:17:34

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T df = df...

Click to read more »
File:Verwendungen in deutschen Wikipedia-Artikeln von Charts nach Jahr ihres neuesten Datenpunkts.svg
Minggu, 2026-04-26 05:36:08

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt years = [ 1989,1990,1992,1994,1996,1998...

Click to read more »
File:5th-root-of-unity.jpg
Kamis, 2023-06-01 16:08:56

import numpy as np from numpy import vectorize import matplotlib as mp import matplotlib.pyplot as plot from colorsys import hls_to_rgb # line width of...

Click to read more »
File:9-bit RGB Cube.gif
Sabtu, 2025-11-15 23:14:16

Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation from mpl_toolkits.mplot3d...

Click to read more »
File:Lebesgue-3d-step2-animated.webm
Minggu, 2026-02-15 22:13:10

import numpy as np import matplotlib.pyplot as plt from matplotlib import animation from mpl_toolkits.mplot3d import proj3d import zCurve as z fig, ax...

Click to read more »
File:8-bit grayscale.gif
Sabtu, 2025-11-15 23:06:10

Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation from mpl_toolkits.mplot3d...

Click to read more »
File:3-bit grayscale.gif
Rabu, 2025-11-12 15:36:40

Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation from mpl_toolkits.mplot3d...

Click to read more »
File:Public Assistance in Japan.svg
Jumat, 2023-11-17 14:49:28

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:Root-raised-cosine-impulse.svg
Sabtu, 2025-12-27 16:25:55

create this file. Deutsch ∙ English ∙ +/− from numpy import * from matplotlib.pyplot import * from mpl_toolkits.axes_grid.axislines import SubplotZero...

Click to read more »
File:OECD Labour force participation rate.svg
Jumat, 2023-11-17 14:44:09

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:Interpolation lineaire numpy interp trois extrapolations.svg
Rabu, 2025-02-19 00:26:09

 This plot was created with Matplotlib. import numpy as np import matplotlib.pyplot as plt # ********************** # * numpy.interp() * # * sans option...

Click to read more »
File:3-bit RGB Cube.gif
Rabu, 2025-11-12 15:38:22

Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation from mpl_toolkits.mplot3d...

Click to read more »
File:Nodary.svg
Rabu, 2023-11-08 08:20:06

This file was created with Python,NumPy and Matplotlib. from __future__ import division import matplotlib.pyplot as plt import numpy as np from scipy.integrate...

Click to read more »
File:Fertility rate in OECD.svg
Sabtu, 2026-02-28 02:46:30

the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker import numpy as...

Click to read more »
File:Part-time employment rate in OECD.svg
Kamis, 2025-08-14 07:41:32

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T df = df...

Click to read more »
File:Children poverty rate in OECD.svg
Selasa, 2024-02-27 12:31:54

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd df=pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:Signum-function.svg
Sabtu, 2025-12-13 10:47:32

numpy as np from numpy import arange, array import matplotlib as mp import matplotlib.pyplot as pyplot minus = u"\u2212" blue = [0.2,0.4,0.6,1.0] green...

Click to read more »
File:ConvexCombination-2D.gif
Selasa, 2026-03-17 14:01:02

import matplotlib matplotlib.rcParams['text.usetex'] = True # uncomment if you donot have latex installed import numpy as np import matplotlib.pyplot as plt...

Click to read more »
File:Comparaison interpolation scipy interpolate polynomes.svg
Minggu, 2026-02-22 01:45:56

import numpy as np from scipy import interpolate import matplotlib.pyplot as plt xp = np.linspace(0, 2*np.pi, 5) yp = np.sin(xp) finterpa = interpolate...

Click to read more »
File:OECD Social Security Contributions.svg
Selasa, 2026-01-27 12:01:53

import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.sort_values(by=["Total"], ascending=True)...

Click to read more »
File:Revenue of General taxes on goods and services in OECD.svg
Senin, 2026-03-02 12:34:23

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T fig, ax...

Click to read more »
File:Pareto front.png
Selasa, 2026-04-07 10:46:14

sample data to illustrate trade-offs between two objectives import matplotlib.pyplot as plt import numpy as np # Sample data: objective 1 (e.g., cost)...

Click to read more »
File:Foreign residents in Japan.svg
Minggu, 2024-12-22 06:27:48

publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data.tsv"...

Click to read more »
File:Social expenditure Timeline in OECD.svg
Rabu, 2024-08-21 18:58:09

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Lebesgue-3d-step3-animated.gif
Jumat, 2026-01-09 21:47:20

import numpy as np import matplotlib.pyplot as plt from matplotlib import animation from mpl_toolkits.mplot3d import proj3d import zCurve as z fig, ax...

Click to read more »
File:Sine.gif
Selasa, 2020-10-20 04:18:13

import math as m import numpy as np import matplotlib.pyplot as plt import scipy.special as sp # import matplotlib.animation as animation def draw_frame(n...

Click to read more »
File:Fallout 30days 1mt burst 15mph mortality.svg
Sabtu, 2020-09-12 16:14:23

library 2017 import matplotlib.pyplot as plt from matplotlib import cm, colors, colorbar import matplotlib.lines as mlines import matplotlib.patches as mpatches...

Click to read more »
File:Einwohnerentwicklung Stadthagen.svg
Kamis, 2026-06-04 12:55:41

following license: <source lang="python"> import pandas as pd import matplotlib.pyplot as plt import seaborn as sns data = { 'Jahr': [1961, 1970, 1987, 1990...

Click to read more »
File:Logarithmic-integral function.svg
Jumat, 2024-11-15 09:55:47

symbols, li from sympy.plotting import plot x = symbols('x') from matplotlib.pyplot import rcParams rcParams['text.usetex']=True rcParams['axes.grid']=True...

Click to read more »
File:Gender wage gap.svg
Kamis, 2025-12-25 03:20:46

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T df = df...

Click to read more »
File:Wellenpakete Summe.svg
Selasa, 2024-09-10 21:17:26

archive copy at the Wayback Machine Python-Paket: numpy Python-Paket: matplotlib Nach der Installation von Python den Quelltext in eine Datei plot.py kopieren...

Click to read more »
File:Population Pyramids of Japan (Projections 2065,IPSS).svg
Minggu, 2023-07-30 22:41:21

license: import numpy as np import pandas as pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker df = pd.read_csv("data2.tsv", index_col=0...

Click to read more »
File:National health expenditure in Japan.svg
Jumat, 2023-11-17 14:42:12

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:Disk population stellar histograms by abundances of elements 1.png
Jumat, 2026-05-01 13:01:36

fits Python 3 from astropy.io import fits import pandas as pd import matplotlib.pyplot as plt import seaborn as sns Avaa FITS-tiedosto fits_file = "./data1/galah4...

Click to read more »
File:Some harappan cities area and growth rate 1 1 1 1.png
Jumat, 2025-12-12 14:23:05

source code import numpy as np import pandas as pd import matplotlib.pyplot as plt from matplotlib.patches import Patch Data mohenjodaro_years = [2900, 2600...

Click to read more »
File:OECD health expenditure per capita by country.svg
Minggu, 2026-04-05 13:42:51

import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.sort_values(by=["Total"], ascending=True)...

Click to read more »
File:Barabasi Albert model.gif
Senin, 2023-10-30 12:27:36

#import pylab from pylab import pi, cos, sin, linspace, array import matplotlib.pyplot as plt import os node_number = 20 initial_nodes = 2 animation = False...

Click to read more »
File:BetaDistrMedian.svg
Kamis, 2026-02-19 22:37:20

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Labour force participation rate (Woman) by age.svg
Jumat, 2023-11-17 14:32:11

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T fig, ax...

Click to read more »
File:Gaas inas quantum dot.jpg
Selasa, 2022-09-20 18:49:13

scipy.ndimage import rotate import matplotlib.pyplot as plt import matplotlib.patheffects as patheffects import matplotlib.font_manager as fm from mpl_toolkits...

Click to read more »
File:Comparison of prime-counting approximations.svg
Sabtu, 2026-01-10 01:46:25

# Author: Vickvvy, 2025-05-19 import matplotlib.pyplot as plt from sympy import primepi from scipy.integrate import quad import numpy as np def xlogx(x):...

Click to read more »
File:Interpolation constante interpolate interp1d nearest et zero.svg
Kamis, 2025-12-04 14:24:04

import numpy as np from scipy import interpolate import matplotlib.pyplot as plt # ********************************* # * scipy.interpolate.interp1d()...

Click to read more »
File:OECD generic pharmaceuticals share.svg
Minggu, 2025-11-16 11:57:47

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data...

Click to read more »
File:Lebesgue-3d-step2-animated.gif
Minggu, 2026-02-15 22:13:19

import numpy as np import matplotlib.pyplot as plt from matplotlib import animation from mpl_toolkits.mplot3d import proj3d import zCurve as z fig, ax...

Click to read more »
File:Energie elastique gaz comprime.svg
Kamis, 2026-05-07 22:30:57

cdang. Source code InfoField import numpy as np import matplotlib.pyplot as plt import matplotlib.ticker as ticker # ************* # * Fonctions * # *************...

Click to read more »
File:Comparaison filtres median savitzky golay scipy.svg
Senin, 2024-04-08 15:16:06

InfoField import numpy as np import scipy.signal as signal import matplotlib.pyplot as plt epsilon = 0.1 # amplitude du bruit x = np.linspace(0, 2, 40)...

Click to read more »
File:LorenzModified3D.svg
Kamis, 2025-12-18 17:48:59

Modified Lorenz System. from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.001 t_final = 100 T = np...

Click to read more »
File:Revenue of Japan Government.svg
Sabtu, 2025-03-01 18:49:28

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:Fallout 30days 1mt burst 15mph 2.svg
Minggu, 2024-12-15 08:24:26

library 2017 import matplotlib.pyplot as plt from matplotlib import cm, colors, colorbar import matplotlib.lines as mlines import matplotlib.patches as mpatches...

Click to read more »
File:BetaDistrMeanMedianDiff.svg
Kamis, 2026-02-19 22:37:34

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Number of uses of charts by year of latest chart data in English Wikipedia articles.svg
Minggu, 2026-04-26 05:36:09

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt years = [ 1989,1990,1992,1994,1996,1998...

Click to read more »
File:Area under rectangular hyperbola.svg
Sabtu, 2026-01-10 01:46:47

# Author: Vickvvy, 2023-12-14 import matplotlib.pyplot as plt import numpy as np def f(x): return 1/x x = np.linspace(0.01, 8, 1000) y = f(x) fig, ax...

Click to read more »
File:Square Lead Screw Efficiency.svg
Senin, 2024-08-19 17:24:06

Code to create plot import matplotlib.pyplot as plt Create plot object fig, ax = plt.subplots() Define plot layout ax.set_xlabel('Lead angle (\u00B0)')...

Click to read more »
File:Social benefits for elderly in Japan.svg
Jumat, 2023-11-17 14:52:44

publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data.tsv"...

Click to read more »
File:BetaDistrCDF1.svg
Kamis, 2026-02-19 22:37:33

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Raised-cosine-ISI.svg
Minggu, 2025-12-14 23:55:08

Created using python and matplotlib library. from numpy import * from matplotlib.pyplot import * from mpl_toolkits.axes_grid.axislines import SubplotZero...

Click to read more »
File:BMI-30-Worldmap-2014.svg
Selasa, 2023-10-10 12:17:39

import matplotlib.pyplot as plt from matplotlib.patches import Polygon, PathPatch from matplotlib.collections import PatchCollection from matplotlib.colors...

Click to read more »
File:Detecting priority modules.pdf
Minggu, 2024-07-14 19:21:39

pandas as pd import numpy as np import plotly.express as px import matplotlib.pyplot as plt from IPython.display import display from urllib.parse import...

Click to read more »
File:ItoWienerProcess2D.svg
Minggu, 2025-12-14 23:47:03

simulation of 2D drifted Wiener process with time step dt = .0001 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 2 T = np.arange(t0...

Click to read more »
File:Ufo reports reliability classes from french geipan archive reports 1.png
Senin, 2025-10-20 23:19:27

########################################## import pandas as pd import matplotlib.pyplot as plt import matplotlib.colors as mcolors # Ladataan data csv-tiedostosta käyttäen...

Click to read more »
File:Eridu temple area evolution 2 1.png
Minggu, 2024-07-14 10:25:10

Python3 source code Source od data: Finnish wiki import matplotlib import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy.interpolate...

Click to read more »
File:OrnsteinUhlenbeckProcess2D.svg
Minggu, 2022-10-02 04:44:16

of 2D Ornstein-Uhlenbeck process with time step dt = .0001 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 2 T = np.arange(t0...

Click to read more »
File:Old-age support ratio in OECD.svg
Minggu, 2025-12-21 18:50:21

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data...

Click to read more »
File:Suomen kevaan 2020 koronavirusaallon sairaana olevien seird 1.svg
Sabtu, 2026-04-18 04:34:28

import matplotlib.pyplot as plt import pandas as pd import matplotlib.dates as mdates from matplotlib.ticker import NullFormatter from matplotlib.dates...

Click to read more »
File:Oecd-mentalhealthconsult.svg
Selasa, 2023-05-23 16:59:50

import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") fig, ax = plt.subplots(figsize=(8...

Click to read more »
File:Conic x^2+2xy+y^2−8x=0.svg
Minggu, 2025-08-31 03:07:38

Requirements: python-2.6 with numpy and matplotlib-1.0.1 from matplotlib.pyplot import * from numpy import * from mpl_toolkits.axes_grid.axislines import...

Click to read more »
File:Life Expectancy in OECD.svg
Senin, 2025-11-17 19:24:48

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T fig, ax...

Click to read more »
File:Mean of sample vs size of sample.svg
Selasa, 2026-04-07 02:31:42

Python code for this plot from random import random, seed from matplotlib import pyplot as plt # Run random trials random uniformly distributed from 0...

Click to read more »
File:BetaDistrMedianApprDiff.svg
Kamis, 2026-02-19 22:37:21

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Equal areas under xy=1 by multiplicative scaling.svg
Sabtu, 2026-01-10 01:47:06

# Author: Vickvvy, 2025-08-06 import matplotlib.pyplot as plt import numpy as np def f(x): return 1/x x = np.linspace(1.5, 11, 1000) y = f(x) fig, ax...

Click to read more »
File:RosslerAttractor3D.svg
Selasa, 2020-10-27 10:54:55

the Rossler system. from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.02 t_final = 60 T = np.arange(t0...

Click to read more »
File:Life expectancy in Japan (IPSS).svg
Selasa, 2025-09-09 04:28:11

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data...

Click to read more »
File:Numerical solution rate equations.png
Jumat, 2025-08-22 02:16:12

import matplotlib.pyplot as plt import numpy as np from scipy.integrate import odeint # Numerical solution using an ordinariy differential equation solver...

Click to read more »
File:Domestic cat larynges can produce purring frequencies without neural input.pdf
Minggu, 2026-03-01 07:19:03

S1, panel C were generated with the matplotlib.pyplot.violinplot function contained in the open source matplotlib software framework for the Python programming...

Click to read more »
File:Income redistribution in Japan by income class.svg
Jumat, 2023-11-17 14:28:49

following license: import matplotlib as mp import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df...

Click to read more »
File:OECD pharmaceuticals expenditure.svg
Sabtu, 2026-01-03 06:34:02

import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.fillna(0) df = df.assign(key=df["Prescription"]...

Click to read more »
File:Population Trends in Japan, by Age.svg
Jumat, 2023-11-17 14:47:50

publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data.tsv"...

Click to read more »
File:ItoProcess1D.svg
Selasa, 2022-05-31 19:31:00

time step dt = .0001 # mu is zero. sigma is a Ricker wavelet. import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 10.0 T = np...

Click to read more »
File:Household income of Japan.svg
Rabu, 2024-11-20 16:24:20

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Healthcare expenditures in Japan by Age.svg
Sabtu, 2025-06-21 12:06:51

publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import matplotlib.ticker as ticker df1 = pd.read_csv("data.tsv"...

Click to read more »
File:LuChenAttractorModified3D.svg
Kamis, 2025-12-18 17:48:38

system with d2 = 0. from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.001 t_final = 100 T = np...

Click to read more »
File:Unemployment rate in Japan.svg
Rabu, 2024-10-09 20:46:28

hereby publish it under the following license: import matplotlib.pyplot as plt import matplotlib.ticker as ticker from cycler import cycler import pandas...

Click to read more »
File:VoigtCDF.svg
Rabu, 2025-12-17 18:22:17

Distribution import matplotlib.pyplot as pl import numpy as np from scipy.special import wofz import scipy.integrate as integral import matplotlib.patches as mpatches...

Click to read more »
File:Equipotential of dipole.svg
Minggu, 2025-11-30 00:54:01

import numpy as np from matplotlib import pyplot as plt from matplotlib import colors cmap = colors.ListedColormap( [np.clip((2 * x, 2 * (1 - x), 4 *...

Click to read more »
File:GDP growth rate in Japan.svg
Jumat, 2025-08-01 13:49:18

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Labour force of Japan.svg
Jumat, 2026-05-22 17:30:34

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import numpy as np df = pd.read_csv("data.tsv", index_col=0 , sep = "\t")...

Click to read more »
File:BernoulliTrialsCs.svg
Kamis, 2023-11-16 04:27:10

Zdrojový kód / source code, Python 3: import numpy as np import matplotlib.pyplot as plt import seaborn as sns np.random.seed(0) x = np.arange(1, 1001...

Click to read more »
File:Bilanzsumme der Deutschen Bundesbank.png
Kamis, 2025-06-05 04:16:20

ist ausdrücklich erwünscht. from datetime import datetime import matplotlib.pyplot as plt import pandas as pd import numpy as np data = pd.read_csv('BBK01...

Click to read more »
File:Population history of rome 1 1 1 1.png
Minggu, 2025-08-10 08:30:51

1875;252000 1950;1884000 2000;3708000 import pandas as pd import matplotlib.pyplot as plt import numpy as np df1 = pd.read_csv('wikiroma1.csv', sep=';'...

Click to read more »
File:HeatEquationExplicitApproximate.svg
Jumat, 2026-02-20 20:11:45

from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np import matplotlib.patches as mpatches t0 = 0.0 t_final = 1.0 n_grid...

Click to read more »
File:Pageviews of the RNA editing article (with 7-day moving average).svg
Kamis, 2026-04-23 22:43:26

valid.  This plot was created with Matplotlib. Source code InfoField import pandas as pd import matplotlib.pyplot as plt import sys from pathlib import...

Click to read more »
File:Life expectancy in Japan by Prefecture.svg
Senin, 2026-03-30 02:37:04

license: import numpy as np import pandas as pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker df = pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:OECD Social Expenditure by Braunch.svg
Jumat, 2023-11-17 14:44:11

following license: import numpy as np from cycler import cycler import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv", index_col=0...

Click to read more »
File:Incidence of involuntary part time workers.svg
Jumat, 2023-11-17 14:28:43

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T df = df...

Click to read more »
File:Pollen diagram of Berelekh 2, Indigirka.svg
Rabu, 2025-02-05 11:57:35

program input ; separated csv import numpy as np import matplotlib.pyplot as plt import matplotlib.patches as mpatches pypol 1 python csw pollen percentage...

Click to read more »
File:Consumer Price index of Japan, comparison year.svg
Sabtu, 2024-04-13 03:23:01

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:ChuaAttractorModified.svg
Sabtu, 2025-11-29 15:43:36

Modified Chua Attractor. from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.01 t_final = 1000 T = np...

Click to read more »
File:Normal Distribution PDF.svg
Sabtu, 2025-11-22 02:42:33

5)), add=TRUE,type="l",lwd=2,col="green") import numpy as np import matplotlib.pyplot as plt def make_gauss(N, sig, mu): return lambda x: N/(sig * (2*np...

Click to read more »
File:BetaDistrMedianApprMeanMode.svg
Kamis, 2026-02-19 22:37:38

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Pageviews of the CRISPR RNA article (with 7-day moving average).svg
Kamis, 2026-04-23 22:38:45

valid.  This plot was created with Matplotlib. Source code InfoField import pandas as pd import matplotlib.pyplot as plt import sys from pathlib import...

Click to read more »
File:Gini and Income redistribution in Japan.svg
Rabu, 2024-01-31 20:19:18

0 truetrue import matplotlib as mp import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df...

Click to read more »
File:BrownExcursion1D.svg
Minggu, 2025-11-23 18:44:50

realization of 1D Brownian Excursion process time step dt = .0001 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 1.0 T = np...

Click to read more »
File:DriftedWienerProcess1D.svg
Jumat, 2026-02-27 23:50:41

simulation of 1D drifted Wiener process with time step dt = .0001 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 2 T = np.arange(t0...

Click to read more »
File:Figure.svg
Rabu, 2025-05-14 22:23:59

wurde mit folgendem Python-Code erzeugt: import pandas as pd import matplotlib.pyplot as plt import numpy as np # Daten laden df = pd.read_csv("data.csv"...

Click to read more »
File:DKW bounds.svg
Kamis, 2025-12-11 21:58:15

Creative Commons CC0 Public Domain Dedication import numpy as np import matplotlib.pyplot as plt from scipy import stats def ecdf(x): x_sort = np.sort(x) y...

Click to read more »
File:Hartree-Products vs Slater-Determinants.png
Jumat, 2026-01-23 04:22:43

Generated with Python 3.7.1 matplotlib 3.0.2 import numpy as np from matplotlib import pyplot as plt import math def gaussian(x, alpha): return math.exp(-alpha*x*x/2)...

Click to read more »
File:Dementia Prevalence in OECD.svg
Jumat, 2026-02-27 18:52:52

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data...

Click to read more »
File:Live births and deaths of Japan.svg
Senin, 2024-07-22 22:28:50

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data...

Click to read more »
File:Periodogram.svg
Rabu, 2025-12-10 15:52:56

import numpy as np from scipy import signal import matplotlib.pyplot as plt w_1 = 30 # frequency of the 1st component of the signal (Hz) w_2 = 50 # frequency...

Click to read more »
File:BatesCDF.svg
Minggu, 2025-11-23 03:04:51

# CDF of Bates Distribution import matplotlib.pyplot as pl import numpy as np import matplotlib.patches as mpatches import scipy.integrate as integral...

Click to read more »
File:Archimedean spiral polar.svg
Selasa, 2023-09-12 09:46:27

import numpy as np from fractions import Fraction import matplotlib from matplotlib.pyplot import figure, show, rc, grid def updateThetaAxis(ax): thetaFractions...

Click to read more »
File:The seniority-based wage system in Japan.svg
Jumat, 2023-11-17 14:56:04

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Suicide rates in G20 countries.svg
Jumat, 2023-11-17 14:54:14

publish it under the following license: import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Tax rates on dividend income in OECD.svg
Jumat, 2023-11-17 14:55:22

import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.fillna(0) df = df...

Click to read more »
File:Trade union membership rate in OECD.svg
Sabtu, 2023-06-03 07:20:45

publish it under the following license: import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:FD e mu.svg
Sabtu, 2026-03-28 15:13:18

the source used to create this file. Deutsch ∙ English ∙ +/− from matplotlib.pyplot import * from numpy import * from mpl_toolkits.axisartist import *...

Click to read more »
File:2 example.svg
Jumat, 2023-05-26 05:35:09

 This W3C-invalid plot was created with Matplotlib. This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. You...

Click to read more »
File:Fallout 30days 1mt burst 15mph.svg
Jumat, 2025-12-12 03:25:51

library 2017 import matplotlib.pyplot as plt from matplotlib import cm, colors, colorbar import matplotlib.lines as mlines import matplotlib.patches as mpatches...

Click to read more »
File:Mental health workers in OECD.svg
Jumat, 2025-08-08 10:51:04

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data...

Click to read more »
File:Expinvsqlau GIF.gif
Kamis, 2026-04-30 10:50:04

import math as m import numpy as np import matplotlib.pyplot as plt import scipy.special as sp # import matplotlib.animation as animation def draw_frame(n...

Click to read more »
File:BatesPDF.svg
Jumat, 2025-11-21 23:59:52

# PDF of Bates Distribution import matplotlib.pyplot as pl import numpy as np import matplotlib.patches as mpatches t0 = 0.0 dt = 0.001 t_final = 1.0 T...

Click to read more »
File:OECD Tax revenue.svg
Sabtu, 2025-05-17 20:22:40

this work, hereby publish it under the following license: import matplotlib.pyplot as plt import pandas as pd from cycler import cycler df = pd.read_csv("data...

Click to read more »
File:OrnsteinUhlenbeckProcess3D.svg
Minggu, 2022-10-02 04:44:25

time step dt = .0001 from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.0001 t_final = 2 T = np.arange(t0...

Click to read more »
File:T distribution 3df enhanced.svg
Senin, 2025-01-06 04:08:10

Commons Attribution-Share Alike 3.0 truetrue import numpy as np import matplotlib.pyplot as plt import scipy.special as sp X = np.arange(-4, 4, 0.01) # range...

Click to read more »
File:Pretiglian curve lisiecki raymo 2005 1.png
Senin, 2025-12-29 19:10:07

11 13.9.2020 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:QHO-Fockstate0123.png
Sabtu, 2025-12-13 10:53:21

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Public Assitance Population in Japan, by age.svg
Jumat, 2023-11-17 14:49:30

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.fillna(method...

Click to read more »
File:Burr pdf.svg
Minggu, 2025-11-23 22:32:10

from matplotlib.pyplot import * from numpy import linspace def calc_burr_pdf(x,c,k): y = c*k*x**(c-1)/(1+x**c)**(k+1); return y x = linspace(0,3,10**5)...

Click to read more »
File:Sampling distribution.png
Jumat, 2024-05-17 21:26:41

import matplotlib.pyplot as plt import numpy as np xs=np.linspace(-1,1, num=1000) from scipy.stats import norm sigma=1 n=16 cdf_16 = norm.pdf(xs, loc=0...

Click to read more »
File:First marriage Ages in Japan.svg
Jumat, 2023-11-17 14:21:13

from cycler import cycler import pandas as pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker plt.rcParams["axes.prop_cycle"] = plt...

Click to read more »
File:Frechet cdf.svg
Senin, 2020-08-31 09:06:00

from matplotlib.pyplot import * from numpy import linspace, exp def calc_frechet_cdf(x,a,s): y = exp( -(x/s)**(-a)) return y x = linspace(0.2,5,10**5)...

Click to read more »
File:Consumer price indexes of Japan, COICOP 2018.svg
Sabtu, 2024-04-13 03:27:58

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Percentile interpolation.png
Rabu, 2024-10-30 02:31:42

The plot may be reproduced using the following Python code: import matplotlib.pyplot as plt import numpy as np import seaborn as sns def fractile(l, p...

Click to read more »
File:Unemployment rate in OECD.svg
Jumat, 2023-11-17 15:00:02

import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t")...

Click to read more »
File:Population history of area inside current italia borders 1 1 1 1.png
Minggu, 2025-08-10 08:30:38

1800;18.1 1900;33.2 2000;56.94 python3 code import pandas as pd import matplotlib.pyplot as plt import numpy as np df = pd.read_csv('italiapop1.csv', sep=';'...

Click to read more »
File:QHO-groundstate.png
Senin, 2022-05-30 22:25:15

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Pageviews of the CRISPR gene editing article (with 7-day moving average).svg
Kamis, 2026-04-23 22:51:46

valid.  This plot was created with Matplotlib. Source code InfoField import pandas as pd import matplotlib.pyplot as plt import sys from pathlib import...

Click to read more »
File:Public Assitance Population in Japan, by type.svg
Jumat, 2023-11-17 14:49:32

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Fast Multipoles - Local Expansion.svg
Jumat, 2023-11-10 21:03:37

numpy as np import numpy.polynomial.chebyshev as np_cheby import matplotlib.pyplot as pl def f(x): x = np.asarray(x) with np.errstate(divide='ignore'):...

Click to read more »
File:QHO-coherentstate2-animation.gif
Rabu, 2023-01-04 15:58:45

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:R-luvun vaikutus tartuntojen kasvuun 1.svg
Selasa, 2025-12-16 06:27:06

import matplotlib.pyplot as plt import pandas as pd import matplotlib.dates as mdates from matplotlib.ticker import NullFormatter from matplotlib.dates...

Click to read more »
File:QHO-Fockstate3.png
Sabtu, 2025-12-13 10:53:39

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:H1-ba boundary 1.svg
Kamis, 2025-10-09 16:52:43

0001 15.9.2020 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Income redistribution in Japan by age.svg
Jumat, 2023-11-17 14:28:47

the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd import matplotlib.ticker as ticker df = pd.read_csv("data...

Click to read more »
File:ArgusCDF.svg
Rabu, 2023-09-13 18:17:15

of ARGUS Distribution import matplotlib.pyplot as pl import numpy as np from scipy.special import wofz import matplotlib.patches as mpatches import scipy...

Click to read more »
File:QHO-catstate-even1-animation.gif
Rabu, 2023-01-04 15:57:53

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:HotCat users by Wikipedia language version, May 2021.svg
Rabu, 2026-04-15 04:59:12

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt # Data labels = ["bg","cs","fi","id","it"...

Click to read more »
File:Frechet pdf.svg
Jumat, 2026-04-10 06:41:13

from matplotlib.pyplot import * from numpy import linspace, exp def calc_frechet_pdf(x,a,s): y = (a/s) * ((x/s)**(-1-a)) * exp(- (x/s)**(-a) ) return...

Click to read more »
File:DFT 2sin(t) + sin(4t).svg
Jumat, 2024-05-03 19:16:28

Generated with: ‎ #!/usr/bin/env python import math import matplotlib.pyplot as plt import numpy as np N = 25 x = np.array([2 * math.sin(i * 2 * math...

Click to read more »
File:Sim-free-fall-plot-matplotlib.svg
Senin, 2024-04-01 08:36:36

print("Endgeschwindigkeit:", round(vy,3), "m/s") ## Diagramm: import matplotlib.pyplot as plt plt.plot(list_t, list_y, 'ro') plt.ylabel('Höhe (m)') plt.xlabel('Zeit...

Click to read more »
File:QHO-coherentstate1-animation.gif
Minggu, 2025-12-07 01:12:57

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Quadratic-function-z2-minus4z-minus2iz-plus5.jpg
Kamis, 2026-03-12 16:03:28

import numpy as np from numpy import vectorize import matplotlib as mp import matplotlib.pyplot as plot from colorsys import hls_to_rgb # line width of...

Click to read more »
File:Regressions sine demo.svg
Jumat, 2023-06-23 02:21:23

clause import time import numpy as np import matplotlib matplotlib.use('svg') import matplotlib.pyplot as plt from sklearn.svm import SVR from sklearn...

Click to read more »
File:QHO-coherentstate3-animation.gif
Sabtu, 2026-04-04 14:58:07

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:BrownFractionalH75Seed1.svg
Rabu, 2023-12-27 01:34:53

realization of 1D Fractional Brownian motion with time step dt = .5 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.5 t_final = 1000.0 T = np...

Click to read more »
File:Pi 30K.gif
Kamis, 2026-03-26 10:17:45

 This plot was created with Matplotlib. I, the copyright holder of this work, hereby publish it under the following license: This file is licensed under...

Click to read more »
File:Annual working time in OECD.svg
Jumat, 2023-11-17 13:52:39

publish it under the following license: import numpy as np import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Exoplanet distance mass relation by planet pairs inner to outer 1.png
Senin, 2026-04-20 11:52:02

import numpy as np import matplotlib.pyplot as plt from scipy.stats import linregress import matplotlib import matplotlib.colors as colors MSUN_TO_MEARTH...

Click to read more »
File:Population growth of late epipaleolithic and neolithic near east 1.png
Senin, 2025-11-24 20:38:32

code ## estimation by chatgpt 4o # ## 2024 08 12 0000.0000 import matplotlib.pyplot as plt import numpy as np # Oletettu väestönkehitys (arvioitu) #years...

Click to read more »
File:US and UK enwiki views.png
Jumat, 2025-03-14 22:28:48

import pandas as pd import requests import json import matplotlib.pyplot as plt api = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/top-by-country/en...

Click to read more »
File:Estimated and expected variance of cumulative sum.png
Selasa, 2026-03-17 14:01:00

import matplotlib.pyplot as plt import numpy as np import pandas as pd num_realizations = 300 len_process = 1000 input_std = 0.1 random_nrs = pd.DataFrame(...

Click to read more »
File:Allometric Law of Body Mass vs Cruising Speed in Constructal Theory.svg
Jumat, 2025-06-20 07:14:23

with Python,NumPy and Matplotlib. from __future__ import division import numpy as np import matplotlib.pyplot as plt from matplotlib import rcParams rcParams['font...

Click to read more »
File:BrownFractionalH95.svg
Rabu, 2023-12-27 01:34:55

realization of 1D Fractional Brownian motion with time step dt = .5 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.5 t_final = 1000.0 T = np...

Click to read more »
File:Labour force of Japan by age.svg
Jumat, 2023-11-17 14:32:07

import matplotlib.pyplot as plt import pandas as pd import numpy as np df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df = df.T fig, ax = plt...

Click to read more »
File:R-luvun vaikutus tartuntojen kasvuun 2.svg
Senin, 2025-11-17 06:47:17

import matplotlib.pyplot as plt import pandas as pd import matplotlib.dates as mdates from matplotlib.ticker import NullFormatter from matplotlib.dates...

Click to read more »
File:QHO-Fockstate1.png
Rabu, 2020-10-14 16:16:01

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-catstate-odd1-animation.gif
Minggu, 2025-12-07 00:15:34

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Suomen korona epidemia parantuneita sairaana kuolleita tapauksia kevat 2020 1.svg
Rabu, 2022-03-30 16:40:45

pd import matplotlib.pyplot as plt import locale from datetime import datetime, timedelta import matplotlib.ticker as ticker import matplotlib.dates as...

Click to read more »
File:QHO-catstate-odd2-animation.gif
Rabu, 2023-01-04 15:58:18

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-catstate-odd3-animation.gif
Rabu, 2023-01-04 15:58:25

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:ArgusPDF.svg
Rabu, 2023-09-13 18:17:23

of ARGUS Distribution import matplotlib.pyplot as pl import numpy as np from scipy.special import wofz import matplotlib.patches as mpatches import scipy...

Click to read more »
File:DoubleScrollAttractor3D.svg
Rabu, 2025-12-03 14:06:57

Double Scroll system. from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.001 t_final = 100 T = np...

Click to read more »
File:Mpl example Mandelbrot set.svg
Rabu, 2025-02-19 10:32:58

svg , done by Morn, with a source code that uses object-oriented matplotlib interface and without Python wildcard import. I, the copyright holder...

Click to read more »
File:Wikipedias' article depth vs number of articles.png
Rabu, 2026-03-18 00:27:59

PNG development InfoField  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt import numpy as np # Data (lang, num_articles...

Click to read more »
File:Matplotlib histogram v.svg
Rabu, 2020-09-30 03:40:02

import matplotlib.pyplot as plt import numpy as np from numpy.random import normal x = normal(size=200) plt.hist(x, bins=30) plt.savefig("matplotlib_histogram...

Click to read more »
File:QHO-catstate-even2-animation.gif
Rabu, 2023-01-04 15:57:59

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Average wages and GDP per hour worked in G7.svg
Jumat, 2023-10-06 12:52:32

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("productivity.tsv", index_col=0 , sep = "\t") df = df.T...

Click to read more »
File:Mplwp polylogarithm m3to3.svg
Sabtu, 2025-12-20 01:44:59

This media was created with mplwp (matplotlib extension for Wikipedia plots) Here is a listing of the source used to create this file. Deutsch ∙ English ∙...

Click to read more »
File:Mode Beta Distribution for alpha and beta from 1 to 5 - J. Rodal.jpg
Kamis, 2025-12-11 01:13:39

etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl from matplotlib import cm import numpy as np from scipy.special import...

Click to read more »
File:Cold relic abundance.svg
Senin, 2024-03-25 06:37:41

"""(c)osanshouo 2020, CC-BY 4.0""" import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt plt.rcParams["text.usetex"] = True plt.rcParams["font...

Click to read more »
File:QHO-catstate-even3-animation.gif
Senin, 2025-10-20 15:16:37

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-coherentstate1-animation-color.gif
Minggu, 2025-12-07 01:13:33

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-groundstate-animation-color.gif
Minggu, 2025-12-07 01:15:06

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:BrownFractionalH55.svg
Minggu, 2025-11-23 18:44:04

realization of 1D Fractional Brownian motion with time step dt = .5 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.5 t_final = 1000.0 T = np...

Click to read more »
File:QHO-Fockstate2.png
Minggu, 2024-12-22 16:52:26

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:BrownFractionalH75Seed2.svg
Minggu, 2025-11-23 18:43:17

realization of 1D Fractional Brownian motion with time step dt = .5 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.5 t_final = 1000.0 T = np...

Click to read more »
File:Ngrip deltao18 middle weichselian 59000 45000 1.svg
Kamis, 2025-10-09 16:52:54

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Logarithm GIF.gif
Minggu, 2025-11-30 16:05:33

import math as m import numpy as np import matplotlib.pyplot as plt import scipy.special as sp # import matplotlib.animation as animation def draw_frame(n...

Click to read more »
File:Bode Plot (Frequency Response) of an Ideal Differentiator.svg
Sabtu, 2023-10-14 15:49:56

Attribution-Share Alike 4.0 truetrue Python source : import numpy as np import matplotlib.pyplot as plt # Generating angular frequency values omega = np.logspace(-1...

Click to read more »
File:Development of site number in cholistan area at harappan period 1 1 1 1.png
Senin, 2025-05-26 13:50:20

Code Python3 import numpy as np import matplotlib.pyplot as plt import matplotlib as mpl cons 1992. The Consequences of River Changes for...

Click to read more »
File:QHO-coherent3-squeezed2dB-animation.gif
Minggu, 2025-12-07 01:14:01

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Trade effect to strength of center 1.png
Rabu, 2025-05-07 19:24:44

Python3 source code import numpy as np import math import scipy import matplotlib.pyplot as plt def strength_of_center(center_strength, distance, Trade): Roo0...

Click to read more »
File:Uses of data graphics in English Wikipedia vs German Wikipedia by year of latest data of the charts.svg
Minggu, 2026-04-26 05:36:08

SVG code is valid.  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt years = [ 1989,1990,1992,1994,1996,1998...

Click to read more »
File:QHO-Fockstate1+2squeezed-animation.gif
Minggu, 2025-12-07 01:10:45

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Quadratic-function-z2-minus4z-plus5.jpg
Kamis, 2026-05-28 18:05:32

import numpy as np from numpy import vectorize import matplotlib as mp import matplotlib.pyplot as plot from colorsys import hls_to_rgb # line width of...

Click to read more »
File:Barnes-Hut tree construction.png
Rabu, 2023-11-01 01:31:50

following Python source code. import numpy as np import matplotlib.pyplot as plt import matplotlib.cm as cm def cube_plot(ax, pos, level, idx): d = 1./2**level...

Click to read more »
File:Coropuna peat bog pollen 1 1 1 1.png
Jumat, 2026-01-23 11:07:38

1177/0959683611409772] Python3 source code import pandas as pd import matplotlib.pyplot as plt import pandas as pd Ladataan alkuperäinen CSV-tiedosto file_path...

Click to read more »
File:GaussianUpwind1D.gif
Sabtu, 2020-09-26 09:34:30

solution of 1D Gaussian advection equation by Upwind Scheme. import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.1 t_final = 2 x0 = -2.0 dx...

Click to read more »
File:Kuwait-population-pyramid-2017.svg
Kamis, 2020-10-22 05:54:24

Attribution-Share Alike 4.0 truetrue import numpy as np import matplotlib.pyplot as plt from matplotlib import rc fontsize=24 fontsize_small=16 rc('font', family='sans-serif'...

Click to read more »
File:QHO-catstate-odd1-animation-color.gif
Minggu, 2025-12-07 00:15:09

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Ufo reports by hour nuforc 1.svg
Minggu, 2023-01-01 21:28:30

python 3 1.1.2023 v 0000.0002 import pandas as pd import matplotlib as mpl import matplotlib.pyplot as plt import numpy as np import datetime ufo_df = pd...

Click to read more »
File:BrownFractionalH75Seed0.svg
Minggu, 2025-11-23 18:43:41

realization of 1D Fractional Brownian motion with time step dt = .5 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.5 t_final = 1000.0 T = np...

Click to read more »
File:Laugerie interstadial ngrip delta o18 1.svg
Kamis, 2025-10-09 16:52:46

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Social security contributions of Japan.svg
Jumat, 2023-11-17 14:52:48

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Galactic disk stellar elements correlation matrix xfe 1.png
Minggu, 2025-03-16 02:20:36

io import fits import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import matplotlib Avaa FITS-tiedosto fits_file = "./data1/galah4...

Click to read more »
File:Ngrip deltao18 middle weichselian 48000 28000 1.svg
Kamis, 2025-10-09 16:52:52

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Count of Wikimedia Commons categories with open Category for Discussion (CfD) cases over time.png
Kamis, 2026-04-16 22:45:55

InfoField  This plot was created with Matplotlib. Source code InfoField import matplotlib.pyplot as plt import matplotlib.dates as mdates from datetime import...

Click to read more »
File:QHO-coherent3-phasesqueezed2dB-animation.gif
Senin, 2026-01-05 20:38:53

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Suomen koronavirus epidemia paivittaiset tapaukset ja kuolemat kevat 2020 1.svg
Senin, 2026-01-05 09:34:22

pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker import locale from datetime import datetime, timedelta import matplotlib.dates as...

Click to read more »
File:Number of montly ufos nuforc 1.svg
Senin, 2023-01-02 00:45:07

python 3 1.1.2023 v 0000.0003 import pandas as pd import matplotlib as mpl import matplotlib.pyplot as plt import numpy as np import datetime ufo_df = pd...

Click to read more »
File:QHO-catstate-even3-animation-color.gif
Minggu, 2025-12-07 00:14:42

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-catstate-even1-animation-color.gif
Minggu, 2025-12-07 00:13:30

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-Fockstate0123-animation-color.gif
Sabtu, 2020-10-17 01:25:56

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-catstate-odd3-animation-color.gif
Minggu, 2025-12-07 00:16:33

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Yd pb boundary 2.svg
Senin, 2025-12-29 19:12:24

0001 16.9.2020 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Svr epsilons demo.svg
Senin, 2025-12-29 02:33:44

clause import time import numpy as np import matplotlib matplotlib.use('svg') import matplotlib.pyplot as plt from sklearn.svm import SVR from sklearn...

Click to read more »
File:Perovskite oxide thin film.jpg
Rabu, 2022-11-30 08:31:59

scipy.ndimage import rotate import matplotlib.pyplot as plt import matplotlib.patheffects as patheffects import matplotlib.font_manager as fm from mpl_toolkits...

Click to read more »
File:Medical cost and copayment rate in Japan.svg
Minggu, 2025-09-28 23:46:16

this work, hereby publish it under the following license: import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data...

Click to read more »
File:Exemple superposition de pics large et etroit.svg
Senin, 2025-03-24 04:07:21

dur). Sorties ------- fichier SVG. """ import numpy as np import matplotlib.pyplot as plt # **************** # **************** # ** Paramètres ** #...

Click to read more »
File:Gaussian-beam-animation.gif
Sabtu, 2020-09-26 09:35:37

 This plot was created with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:2D Nonhomogeneous heat equation .gif
Jumat, 2023-05-26 00:57:15

heatstovelin.gif """ from fenics import * import time import matplotlib.pyplot as plt from matplotlib import cm # Create mesh and define function space nx =...

Click to read more »
File:QHO-coherent3-phasesqueezed2dB-animation-color.gif
Jumat, 2025-09-05 14:08:48

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:BrownFractionalH15.svg
Minggu, 2025-11-23 18:44:27

realization of 1D Fractional Brownian motion with time step dt = .5 import matplotlib.pyplot as pl import numpy as np t0 = 0.0 dt = 0.5 t_final = 1000.0 T = np...

Click to read more »
File:QHO-coherent3-squeezed2dB-animation-color.gif
Selasa, 2025-05-06 21:36:13

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-coherentstate2-animation-color.gif
Minggu, 2025-12-07 01:12:27

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Koronaviruksen R0 Suomessa 6.svg
Sabtu, 2025-09-20 20:11:38

scipy as sp import pandas as pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker from matplotlib.ticker import (MultipleLocator, FormatStrFormatter...

Click to read more »
File:QHO-Fockstate2-animation-color.gif
Minggu, 2025-12-07 01:14:47

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-Fockstate1-animation-color.gif
Rabu, 2023-01-04 15:59:36

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:BetaFuncDemo.svg
Kamis, 2026-02-19 22:37:35

SVG elements etc.). from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np from scipy.special import beta # Prepare...

Click to read more »
File:Changes of temperature of world 1 2000 ad 01 01.png
Rabu, 2024-02-21 13:17:08

import matplotlib.pyplot as plt import matplotlib.colors as colors from matplotlib.ticker import (MultipleLocator, AutoMinorLocator) import matplotlib.ticker...

Click to read more »
File:Estimated population of levant 15000 6000 cal bce 1 1.png
Senin, 2025-10-20 23:11:14

InfoField  This plot was created with Matplotlib. Source code InfoField import numpy as np import matplotlib.pyplot as plt from scipy.interpolate import...

Click to read more »
File:Driven-pendulums-resonance-animation.gif
Kamis, 2026-05-14 00:38:27

The plot was generated with Python Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed...

Click to read more »
File:QHO-coherent3-amplitudesqueezed2dB-animation-color.gif
Selasa, 2025-12-30 03:50:45

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Periodogram windows.svg
Rabu, 2025-12-10 15:52:11

import numpy as np from scipy import signal import matplotlib.pyplot as plt w_1 = 40 # frequency of the 1st component of the signal (Hz) w_2 = 60 # frequency...

Click to read more »
File:Hunger deaths in ukraine in the year 1933 whole area by month 1.png
Senin, 2026-04-20 15:55:12

(esim. keskimääräiset päiväkohtaiset kuolemat 1933)." Python 3 import matplotlib.pyplot as plt months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul',...

Click to read more »
File:Orbit of alpha centauri ab 1 1 1 1.png
Rabu, 2025-03-19 17:14:36

3847/1538-3881/abfaff Python3 source code import numpy as np import matplotlib.pyplot as plt from matplotlib.ticker import MultipleLocator period = 79.762 eccentricity...

Click to read more »
File:Pageviews of the Life extension Wikipedia article (with 7-day moving average and clipped traffic spikes).svg
Jumat, 2026-04-24 00:22:06

valid.  This plot was created with Matplotlib. Source code InfoField import pandas as pd import matplotlib.pyplot as plt import sys from pathlib import...

Click to read more »
File:QHO-coherentstate3-animation-color.gif
Rabu, 2025-12-24 20:13:19

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Beaufort diagram.svg
Jumat, 2025-11-21 23:51:14

utf-8 -*- from __future__ import division import numpy as np import matplotlib.pyplot as plt # data and functions filename1 = 'beaufort_diagram' bft = np...

Click to read more »
File:QHO-catstate-odd2-animation-color.gif
Minggu, 2025-12-07 00:16:02

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:HeatEquationImplicitApproximate.svg
Jumat, 2026-02-20 20:11:46

from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np import matplotlib.patches as mpatches t0 = 0.0 t_final = 1.0 n_grid...

Click to read more »
File:Complex-gamma.jpg
Kamis, 2025-11-27 15:08:26

import numpy as np from numpy import vectorize import matplotlib as mp import matplotlib.pyplot as plot from colorsys import hls_to_rgb # line width of...

Click to read more »
File:Mylpale.svg
Sabtu, 2025-12-20 04:59:31

Deutsch ∙ English ∙ +/− import matplotlib.pyplot as plt import matplotlib.dates as mdates from datetime import datetime from matplotlib.ticker import MultipleLocator...

Click to read more »
File:P to pet makkink 200ma 1.png
Selasa, 2025-12-16 18:14:49

scipy.interpolate import griddata import matplotlib.pyplot as plt from matplotlib.pylab import * import matplotlib.mlab as mlab import pyet import math def...

Click to read more »
File:Korona ennuste oletuksin 1.svg
Selasa, 2022-11-08 21:03:57

import matplotlib.pyplot as plt import pandas as pd import matplotlib.dates as mdates from matplotlib.ticker import NullFormatter from matplotlib.dates...

Click to read more »
File:Time off allocate in OECD.svg
Minggu, 2025-10-19 19:05:33

import matplotlib.pyplot as plt import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df["s"] = df[["Paid work or study","Unpaid...

Click to read more »
File:Sim-free-fall-drag-plot-matplotlib.svg
Senin, 2025-03-24 05:10:31

print("Endgeschwindigkeit:", round(v,3), "m/s") ## Diagramm: import matplotlib.pyplot as plt plt.plot(list_t, list_s, 'ro') plt.ylabel('Höhe (m)') plt.xlabel('Zeit...

Click to read more »
File:Super95price monthly germany 91-14.svg
Rabu, 2025-02-19 00:35:24

The plot was generated with Matplotlib I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:QHO-Fockstate3-animation-color.gif
Kamis, 2025-11-13 20:41:41

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Pageviews of the Artificial intelligence Wikipedia article (with 7-day moving average and clipped traffic spikes).svg
Jumat, 2026-04-24 00:23:12

valid.  This plot was created with Matplotlib. Source code InfoField import pandas as pd import matplotlib.pyplot as plt import sys from pathlib import...

Click to read more »
File:Ngrip deltao18 middle weichselian 48000 10000 1.svg
Kamis, 2025-10-09 16:52:52

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Non-regular Employee on Underemployment in Japan.svg
Jumat, 2023-11-17 14:43:26

import matplotlib.pyplot as plt from cycler import cycler import pandas as pd df = pd.read_csv("data.tsv", index_col=0 , sep = "\t") df1 = df.T.loc['Percent']...

Click to read more »
File:Paris ice age lgm.svg
Kamis, 2025-10-09 17:00:08

12;-4;52 This file has input to "clidiag.py" python matplotlib script. import matplotlib.pyplot as plt import numpy as np import csv params = {'legend...

Click to read more »
File:Ngrip deltao18 preboreal 11700 10500 1.svg
Kamis, 2025-10-09 16:52:54

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Koronavirustapauksia suomessa ennuste muiden maiden datoista 1.svg
Senin, 2025-03-24 04:53:45

pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker import locale from datetime import datetime, timedelta import matplotlib.dates as...

Click to read more »
File:Changes of temperature of world 1 600 ad 01 01.png
Rabu, 2024-02-21 13:17:09

import matplotlib.pyplot as plt import matplotlib.colors as colors from matplotlib.ticker import (MultipleLocator, AutoMinorLocator) import matplotlib.ticker...

Click to read more »
File:Pageviews of the CRISPR gene editing article (with 7-day moving average and clipped spikes).svg
Jumat, 2026-04-24 00:20:54

valid.  This plot was created with Matplotlib. Source code InfoField import pandas as pd import matplotlib.pyplot as plt import sys from pathlib import...

Click to read more »
File:Wmffund2017-2022.png
Jumat, 2023-05-26 07:31:49

import pandas as pd import matplotlib.pyplot as plt rdf = pd.read_csv('https://frdata.wikimedia.org/yeardata-day-vs-sum.csv') dates = [] dollars = []...

Click to read more »
File:Galactic disc stellar xh elements correlation matrix 1.png
Minggu, 2025-03-16 02:20:18

io import fits import pandas as pd import matplotlib.pyplot as plt import seaborn as sns import matplotlib Avaa FITS-tiedosto fits_file = "./data1/galah4...

Click to read more »
File:Bartlett's method.svg
Sabtu, 2025-11-22 00:04:16

import numpy as np from scipy import signal import matplotlib.pyplot as plt Nsub = 100 # number of subsequences w_1 = 30 # frequency of 1st component...

Click to read more »
File:Ngrip deltao18 preboreal 12000 10000 1.svg
Selasa, 2026-01-27 01:00:12

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Ngrip deltao18 middle weichselian 48000 40000 1.svg
Kamis, 2025-10-09 16:52:53

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:QHO-catstate-even2-animation-color.gif
Jumat, 2026-05-15 21:05:01

The plot was generated with Matplotlib. I, the copyright holder of this work, hereby publish it under the following licenses: This file is licensed under...

Click to read more »
File:Changes of temperature of world 700 1000 ad 01 01.png
Rabu, 2024-02-21 13:17:15

import matplotlib.pyplot as plt import matplotlib.colors as colors from matplotlib.ticker import (MultipleLocator, AutoMinorLocator) import matplotlib.ticker...

Click to read more »
File:F-dens-2-15df python.svg
Minggu, 2025-12-28 10:14:36

the license of your choice.  This W3C-unspecified plot was created with Matplotlib. English URL: https://commons.wikimedia.org/wiki/user:Tlinnet Wikimedia...

Click to read more »
File:Fourier heat in a plate.png
Senin, 2023-02-13 15:57:48

This file was created with Python import numpy as np import matplotlib.pyplot as plt x = y = np.linspace(0, np.pi, 2**12) X, Y = np.meshgrid(x, y) T =...

Click to read more »
File:Ngrip deltao18 middle weichselian 49000 35000 1.svg
Rabu, 2025-10-15 08:07:35

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Population density of tikal peak period 1 1 1 1.png
Senin, 2026-03-23 13:06:09

Keski-Mayan alangoilla). Python3 source code import pandas as pd import matplotlib.pyplot as plt data = { 'Area': ['Epicenter', 'Hinterland ~120 km²', 'Within...

Click to read more »
File:Bubble sort worst case animation.gif
Selasa, 2026-04-14 15:34:53

import random import matplotlib.pyplot as plt import matplotlib.animation as animation # --- 1. Логика сортировки (Алгоритм) --- def bubble_sort_generator(arr):...

Click to read more »
File:Gini coefficient in Iran (1386 to 1392 SH).svg
Senin, 2024-10-07 00:06:57

#!/usr/bin/env python import numpy as np import matplotlib.pyplot as plt import re from pprint import pprint as pp # The following numbers were copied...

Click to read more »
File:Ngrip deltao18 middle weichselian 59000 10000 1.svg
Kamis, 2025-10-09 16:52:53

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Bubble sort best case animation.gif
Selasa, 2026-04-14 15:34:49

import random import matplotlib.pyplot as plt import matplotlib.animation as animation # --- 1. Логика сортировки (Алгоритм) --- def bubble_sort_generator(arr):...

Click to read more »
File:H1-stadial ngrip delta o18 1.svg
Kamis, 2025-10-09 16:52:43

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Solar twins mgsi absolute mgna reltosun relation 1.png
Rabu, 2025-03-12 20:02:51

import numpy as np import pandas as pd import matplotlib.pyplot as plt import matplotlib from matplotlib.patches import Circle from scipy.stats import...

Click to read more »
File:Lgm ngrip delta-o18 accurate 2.svg
Kamis, 2025-10-09 16:52:46

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Mongolia khakhgol summer pdsi 1 2000 1 1 1 1.png
Jumat, 2025-11-21 17:35:26

Python3 source code import numpy as np import pandas as pd import matplotlib.pyplot as plt name="Khalkhgol" location="47.63°N 118.62°E" start_year =1...

Click to read more »
File:Lascaux interstadial ngrip delta o18 1.svg
Rabu, 2026-01-28 06:28:22

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:MS in Iran 2008-2015.svg
Kamis, 2025-05-08 22:24:28

http://isna.ir/fa/news/95030301371/ """ import numpy as np import matplotlib.pyplot as plt years = (2008, 2011, 2014, 2015) per_100000 = (50, 73, 101...

Click to read more »
File:Evolution of pre main sequence 0p1 msun star 1.png
Sabtu, 2025-05-17 12:56:42

Python3 source code import pandas as pd import matplotlib.pyplot as plt import numpy as np from matplotlib.ticker import AutoMinorLocator Lue tiedosto nrows1=350...

Click to read more »
File:HeatEquationCNApproximate.svg
Jumat, 2026-02-20 20:11:45

from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as pl import numpy as np import matplotlib.patches as mpatches t0 = 0.0 t_final = 1.0 n_grid...

Click to read more »
File:Ngrip deltao18 middle weichselian 59000 30000 1.svg
Senin, 2025-12-29 21:35:10

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Lgm ngrip delta-o18 accurate 1.svg
Senin, 2025-12-29 19:07:38

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
File:Produit convolution carre cercle.svg
Jumat, 2025-10-17 06:59:39

 This W3C-unspecified plot was created with Matplotlib. I, the copyright holder of this work, hereby publish it under the following license: This file...

Click to read more »
File:Uruk period growth of urban centers rank size 2 1.png
Selasa, 2025-03-04 10:10:06

script to create this graphics import math import numpy as np import matplotlib.pyplot as plt I made a map-thing https://www.nma-fallout.com/threads/i-made-a-map-thing...

Click to read more »
File:Vladimir Putin approval (Levada, 2020).png
Senin, 2026-01-12 02:12:36

1999,09.1999,10.1999,11.1999...) from numpy import loadtxt from matplotlib import pyplot as plt approval = loadtxt('approval.txt',delimiter=',') dates =...

Click to read more »
File:Bolling allegrod ngrip oxygen isotope image 1.svg
Senin, 2025-12-29 19:00:41

0002 6.10.2021 import matplotlib.pyplot as plt import numpy as np import pandas as pd from scipy import interpolate from matplotlib.ticker import (MultipleLocator...

Click to read more »
Prefix: a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9

Portal di Ensiklopedia Dunia

Kembali kehalaman sebelumnya