Skip to content

Commit 1fafb9d

Browse files
committed
Rebuild 3.10.0 docs
1 parent 592e5f5 commit 1fafb9d

File tree

2,853 files changed

+18360
-15143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,853 files changed

+18360
-15143
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

3.10.0/_downloads/12a15d8f9ee7d7373e974c6b749bada7/symlog_demo.ipynb

+50-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"\n# Symlog Demo\n\nExample use of symlog (symmetric log) axis scaling.\n"
7+
"\n# Symlog scale\n\nThe symmetric logarithmic scale is an extension of the logarithmic scale that\nalso covers negative values. As with the logarithmic scale, it is particularly\nuseful for numerical data that spans a broad range of values, especially when there\nare significant differences between the magnitudes of the numbers involved.\n\nExample use of symlog (symmetric log) axis scaling.\n"
88
]
99
},
1010
{
@@ -22,14 +22,61 @@
2222
"cell_type": "markdown",
2323
"metadata": {},
2424
"source": [
25-
"It should be noted that the coordinate transform used by ``symlog``\nhas a discontinuous gradient at the transition between its linear\nand logarithmic regions. The ``asinh`` axis scale is an alternative\ntechnique that may avoid visual artifacts caused by these discontinuities.\n\n"
25+
"## Linear threshold\nSince each decade on a logarithmic scale covers the same amount of visual space\nand there are infinitely many decades between a given number and zero, the symlog\nscale must deviate from logarithmic mapping in a small range\n*(-linthresh, linthresh)*, so that the range is mapped to a finite visual space.\n\n"
26+
]
27+
},
28+
{
29+
"cell_type": "code",
30+
"execution_count": null,
31+
"metadata": {
32+
"collapsed": false
33+
},
34+
"outputs": [],
35+
"source": [
36+
"def format_axes(ax, title=None):\n \"\"\"A helper function to better visualize properties of the symlog scale.\"\"\"\n ax.xaxis.get_minor_locator().set_params(subs=[2, 3, 4, 5, 6, 7, 8, 9])\n ax.grid()\n ax.xaxis.grid(which='minor') # minor grid on too\n linthresh = ax.xaxis.get_transform().linthresh\n linscale = ax.xaxis.get_transform().linscale\n ax.axvspan(-linthresh, linthresh, color='0.9')\n if title:\n ax.set_title(title.format(linthresh=linthresh, linscale=linscale))\n\n\nx = np.linspace(-60, 60, 201)\ny = np.linspace(0, 100.0, 201)\n\nfig, (ax1, ax2) = plt.subplots(nrows=2, layout=\"constrained\")\n\nax1.plot(x, y)\nax1.set_xscale('symlog', linthresh=1)\nformat_axes(ax1, title='Linear region: linthresh={linthresh}')\n\nax2.plot(x, y)\nax2.set_xscale('symlog', linthresh=5)\nformat_axes(ax2, title='Linear region: linthresh={linthresh}')"
37+
]
38+
},
39+
{
40+
"cell_type": "markdown",
41+
"metadata": {},
42+
"source": [
43+
"Generally, *linthresh* should be chosen so that no or only a few\ndata points are in the linear region. As a rule of thumb,\n$linthresh \\approx \\mathrm{min} |x|$.\n\n\n## Linear scale\nAdditionally, the *linscale* parameter determines how much visual space should be\nused for the linear range. More precisely, it defines the ratio of visual space\nof the region (0, linthresh) relative to one decade.\n\n"
44+
]
45+
},
46+
{
47+
"cell_type": "code",
48+
"execution_count": null,
49+
"metadata": {
50+
"collapsed": false
51+
},
52+
"outputs": [],
53+
"source": [
54+
"fig, (ax1, ax2) = plt.subplots(nrows=2, layout=\"constrained\")\n\nax1.plot(x, y)\nax1.set_xscale('symlog', linthresh=1)\nformat_axes(ax1, title='Linear region: linthresh={linthresh}, linscale={linscale}')\n\nax2.plot(x, y)\nax2.set_xscale('symlog', linthresh=1, linscale=0.1)\nformat_axes(ax2, title='Linear region: linthresh={linthresh}, linscale={linscale}')"
55+
]
56+
},
57+
{
58+
"cell_type": "markdown",
59+
"metadata": {},
60+
"source": [
61+
"The suitable value for linscale depends on the dynamic range of data. As most data\nwill be outside the linear region, you typically the linear region only to cover\na small fraction of the visual area.\n\n## Limitations and alternatives\nThe coordinate transform used by ``symlog`` has a discontinuous gradient at the\ntransition between its linear and logarithmic regions. Depending on data and\nscaling, this will be more or less obvious in the plot.\n\n"
62+
]
63+
},
64+
{
65+
"cell_type": "code",
66+
"execution_count": null,
67+
"metadata": {
68+
"collapsed": false
69+
},
70+
"outputs": [],
71+
"source": [
72+
"fig, ax = plt.subplots()\nax.plot(x, y)\nax.set_xscale('symlog', linscale=0.05)\nformat_axes(ax, title=\"Discontinuous gradient at linear/log transition\")"
2673
]
2774
},
2875
{
2976
"cell_type": "markdown",
3077
"metadata": {},
3178
"source": [
32-
".. admonition:: References\n\n - `matplotlib.scale.SymmetricalLogScale`\n - `matplotlib.ticker.SymmetricalLogLocator`\n - `matplotlib.scale.AsinhScale`\n\n"
79+
"The ``asinh`` axis scale is an alternative transformation that supports a wide\ndynamic range with a smooth gradient and thus may avoid such visual artifacts.\nSee :doc:`/gallery/scales/asinh_demo`.\n\n\n.. admonition:: References\n\n - `matplotlib.scale.SymmetricalLogScale`\n - `matplotlib.ticker.SymmetricalLogLocator`\n - `matplotlib.scale.AsinhScale`\n\n"
3380
]
3481
}
3582
],
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

3.10.0/_downloads/1995eb90ca3090322cbb5cb8ba054d0a/logit_demo.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"\n# Logit Demo\n\nExamples of plots with logit axes.\n"
7+
"\n# Logit scale\n\nExamples of plots with logit axes.\n"
88
]
99
},
1010
{
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

3.10.0/_downloads/2f350cc3d27096728668e15f21c44289/broken_barh.py

+25-18
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,34 @@
11
"""
2-
===========
3-
Broken Barh
4-
===========
2+
======================
3+
Broken horizontal bars
4+
======================
55
6-
Make a "broken" horizontal bar plot, i.e., one with gaps
6+
`~.Axes.broken_barh` creates sequences of horizontal bars. This example shows
7+
a timing diagram.
78
"""
89
import matplotlib.pyplot as plt
10+
import numpy as np
11+
12+
# data is a sequence of (start, duration) tuples
13+
cpu_1 = [(0, 3), (3.5, 1), (5, 5)]
14+
cpu_2 = np.column_stack([np.linspace(0, 9, 10), np.full(10, 0.5)])
15+
cpu_3 = np.column_stack([10*np.random.random(61), np.full(61, 0.05)])
16+
cpu_4 = [(2, 1.7), (7, 1.2)]
17+
disk = [(1, 1.5)]
18+
network = np.column_stack([10*np.random.random(10), np.full(10, 0.05)])
919

10-
# Horizontal bar plot with gaps
1120
fig, ax = plt.subplots()
12-
ax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue')
13-
ax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9),
14-
facecolors=('tab:orange', 'tab:green', 'tab:red'))
15-
ax.set_ylim(5, 35)
16-
ax.set_xlim(0, 200)
17-
ax.set_xlabel('seconds since start')
18-
ax.set_yticks([15, 25], labels=['Bill', 'Jim']) # Modify y-axis tick labels
19-
ax.grid(True) # Make grid lines visible
20-
ax.annotate('race interrupted', (61, 25),
21-
xytext=(0.8, 0.9), textcoords='axes fraction',
22-
arrowprops=dict(facecolor='black', shrink=0.05),
23-
fontsize=16,
24-
horizontalalignment='right', verticalalignment='top')
21+
# broken_barh(xranges, (ymin, height))
22+
ax.broken_barh(cpu_1, (5.8, 0.4))
23+
ax.broken_barh(cpu_2, (4.8, 0.4))
24+
ax.broken_barh(cpu_3, (3.8, 0.4))
25+
ax.broken_barh(cpu_4, (2.8, 0.4))
26+
ax.broken_barh(disk, (1.8, 0.4), color="tab:orange")
27+
ax.broken_barh(network, (0.8, 0.4), color="tab:green")
28+
ax.set_xlim(0, 10)
29+
ax.set_yticks([6, 5, 4, 3, 2, 1],
30+
labels=["CPU 1", "CPU 2", "CPU 3", "CPU 4", "disk", "network"])
31+
ax.set_title("Resource usage")
2532

2633
plt.show()
2734

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

3.10.0/_downloads/525d48a4fd42b3666f5ef61d8acd742e/symlog_demo.py

+82-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
"""
2-
===========
3-
Symlog Demo
4-
===========
2+
============
3+
Symlog scale
4+
============
5+
6+
The symmetric logarithmic scale is an extension of the logarithmic scale that
7+
also covers negative values. As with the logarithmic scale, it is particularly
8+
useful for numerical data that spans a broad range of values, especially when there
9+
are significant differences between the magnitudes of the numbers involved.
510
611
Example use of symlog (symmetric log) axis scaling.
712
"""
@@ -34,12 +39,82 @@
3439
plt.show()
3540

3641
# %%
37-
# It should be noted that the coordinate transform used by ``symlog``
38-
# has a discontinuous gradient at the transition between its linear
39-
# and logarithmic regions. The ``asinh`` axis scale is an alternative
40-
# technique that may avoid visual artifacts caused by these discontinuities.
42+
# Linear threshold
43+
# ----------------
44+
# Since each decade on a logarithmic scale covers the same amount of visual space
45+
# and there are infinitely many decades between a given number and zero, the symlog
46+
# scale must deviate from logarithmic mapping in a small range
47+
# *(-linthresh, linthresh)*, so that the range is mapped to a finite visual space.
48+
49+
50+
def format_axes(ax, title=None):
51+
"""A helper function to better visualize properties of the symlog scale."""
52+
ax.xaxis.get_minor_locator().set_params(subs=[2, 3, 4, 5, 6, 7, 8, 9])
53+
ax.grid()
54+
ax.xaxis.grid(which='minor') # minor grid on too
55+
linthresh = ax.xaxis.get_transform().linthresh
56+
linscale = ax.xaxis.get_transform().linscale
57+
ax.axvspan(-linthresh, linthresh, color='0.9')
58+
if title:
59+
ax.set_title(title.format(linthresh=linthresh, linscale=linscale))
60+
61+
62+
x = np.linspace(-60, 60, 201)
63+
y = np.linspace(0, 100.0, 201)
64+
65+
fig, (ax1, ax2) = plt.subplots(nrows=2, layout="constrained")
66+
67+
ax1.plot(x, y)
68+
ax1.set_xscale('symlog', linthresh=1)
69+
format_axes(ax1, title='Linear region: linthresh={linthresh}')
70+
71+
ax2.plot(x, y)
72+
ax2.set_xscale('symlog', linthresh=5)
73+
format_axes(ax2, title='Linear region: linthresh={linthresh}')
74+
75+
# %%
76+
# Generally, *linthresh* should be chosen so that no or only a few
77+
# data points are in the linear region. As a rule of thumb,
78+
# :math:`linthresh \approx \mathrm{min} |x|`.
79+
#
80+
#
81+
# Linear scale
82+
# ------------
83+
# Additionally, the *linscale* parameter determines how much visual space should be
84+
# used for the linear range. More precisely, it defines the ratio of visual space
85+
# of the region (0, linthresh) relative to one decade.
86+
87+
fig, (ax1, ax2) = plt.subplots(nrows=2, layout="constrained")
88+
89+
ax1.plot(x, y)
90+
ax1.set_xscale('symlog', linthresh=1)
91+
format_axes(ax1, title='Linear region: linthresh={linthresh}, linscale={linscale}')
92+
93+
ax2.plot(x, y)
94+
ax2.set_xscale('symlog', linthresh=1, linscale=0.1)
95+
format_axes(ax2, title='Linear region: linthresh={linthresh}, linscale={linscale}')
4196

4297
# %%
98+
# The suitable value for linscale depends on the dynamic range of data. As most data
99+
# will be outside the linear region, you typically the linear region only to cover
100+
# a small fraction of the visual area.
101+
#
102+
# Limitations and alternatives
103+
# ----------------------------
104+
# The coordinate transform used by ``symlog`` has a discontinuous gradient at the
105+
# transition between its linear and logarithmic regions. Depending on data and
106+
# scaling, this will be more or less obvious in the plot.
107+
108+
fig, ax = plt.subplots()
109+
ax.plot(x, y)
110+
ax.set_xscale('symlog', linscale=0.05)
111+
format_axes(ax, title="Discontinuous gradient at linear/log transition")
112+
113+
# %%
114+
# The ``asinh`` axis scale is an alternative transformation that supports a wide
115+
# dynamic range with a smooth gradient and thus may avoid such visual artifacts.
116+
# See :doc:`/gallery/scales/asinh_demo`.
117+
#
43118
#
44119
# .. admonition:: References
45120
#
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

3.10.0/_downloads/78d8b84f45e360f3a04b9d33e9119ad8/broken_barh.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"\n# Broken Barh\n\nMake a \"broken\" horizontal bar plot, i.e., one with gaps\n"
7+
"\n# Broken horizontal bars\n\n`~.Axes.broken_barh` creates sequences of horizontal bars. This example shows\na timing diagram.\n"
88
]
99
},
1010
{
@@ -15,7 +15,7 @@
1515
},
1616
"outputs": [],
1717
"source": [
18-
"import matplotlib.pyplot as plt\n\n# Horizontal bar plot with gaps\nfig, ax = plt.subplots()\nax.broken_barh([(110, 30), (150, 10)], (10, 9), facecolors='tab:blue')\nax.broken_barh([(10, 50), (100, 20), (130, 10)], (20, 9),\n facecolors=('tab:orange', 'tab:green', 'tab:red'))\nax.set_ylim(5, 35)\nax.set_xlim(0, 200)\nax.set_xlabel('seconds since start')\nax.set_yticks([15, 25], labels=['Bill', 'Jim']) # Modify y-axis tick labels\nax.grid(True) # Make grid lines visible\nax.annotate('race interrupted', (61, 25),\n xytext=(0.8, 0.9), textcoords='axes fraction',\n arrowprops=dict(facecolor='black', shrink=0.05),\n fontsize=16,\n horizontalalignment='right', verticalalignment='top')\n\nplt.show()"
18+
"import matplotlib.pyplot as plt\nimport numpy as np\n\n# data is a sequence of (start, duration) tuples\ncpu_1 = [(0, 3), (3.5, 1), (5, 5)]\ncpu_2 = np.column_stack([np.linspace(0, 9, 10), np.full(10, 0.5)])\ncpu_3 = np.column_stack([10*np.random.random(61), np.full(61, 0.05)])\ncpu_4 = [(2, 1.7), (7, 1.2)]\ndisk = [(1, 1.5)]\nnetwork = np.column_stack([10*np.random.random(10), np.full(10, 0.05)])\n\nfig, ax = plt.subplots()\n# broken_barh(xranges, (ymin, height))\nax.broken_barh(cpu_1, (5.8, 0.4))\nax.broken_barh(cpu_2, (4.8, 0.4))\nax.broken_barh(cpu_3, (3.8, 0.4))\nax.broken_barh(cpu_4, (2.8, 0.4))\nax.broken_barh(disk, (1.8, 0.4), color=\"tab:orange\")\nax.broken_barh(network, (0.8, 0.4), color=\"tab:green\")\nax.set_xlim(0, 10)\nax.set_yticks([6, 5, 4, 3, 2, 1],\n labels=[\"CPU 1\", \"CPU 2\", \"CPU 3\", \"CPU 4\", \"disk\", \"network\"])\nax.set_title(\"Resource usage\")\n\nplt.show()"
1919
]
2020
},
2121
{
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)