Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbcc5d03

Browse files
initial tags for statistics section of gallery
Co-authored-by: katie <katie@unrefugees.org>
1 parente5a85f9 commitbcc5d03

22 files changed

+91
-0
lines changed

‎galleries/examples/statistics/barchart_demo.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ def plot_student_results(student, scores_by_test, cohort_size):
101101

102102
# %%
103103
#
104+
# ..tags:: purpose:storytelling, domain: statistics, plot-type: bar
105+
#
104106
# .. admonition:: References
105107
#
106108
# The use of the following functions, methods, classes and modules is shown

‎galleries/examples/statistics/boxplot.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@
9797

9898
# %%
9999
#
100+
# .. tags:: plot-type: boxplot, domain: statistics, internal: too-much
101+
#
100102
# .. admonition:: References
101103
#
102104
# The use of the following functions, methods, classes and modules is shown

‎galleries/examples/statistics/boxplot_color.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454

5555
# %%
5656
#
57+
# .. tags:: styling: color, domain: statistics, plot-type: boxplot
58+
#
5759
# .. admonition:: References
5860
#
5961
# The use of the following functions, methods, classes and modules is shown

‎galleries/examples/statistics/boxplot_demo.py‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,16 @@ def fake_bootstrapper(n):
247247

248248
# %%
249249
#
250+
# .. tags:: domain: statistics, plot-type: boxplot
251+
#
250252
# .. admonition:: References
251253
#
252254
# The use of the following functions, methods, classes and modules is shown
253255
# in this example:
254256
#
255257
# - `matplotlib.axes.Axes.boxplot` / `matplotlib.pyplot.boxplot`
256258
# - `matplotlib.artist.Artist.set` / `matplotlib.pyplot.setp`
259+
#
260+
# .. ifconfig:: releaselevel == 'dev'
261+
#
262+
# .. tags:: internal: too-much

‎galleries/examples/statistics/boxplot_vs_violin.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454

5555
# %%
5656
#
57+
# .. tags:: plot-type: violin, plot-type: boxplot, domain: statistics
58+
#
5759
# .. admonition:: References
5860
#
5961
# The use of the following functions, methods, classes and modules is shown

‎galleries/examples/statistics/bxp.py‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,16 @@
106106

107107
# %%
108108
#
109+
# .. tags:: plot-type: speciality, domain: statistics
110+
#
109111
# .. admonition:: References
110112
#
111113
# The use of the following functions, methods, classes and modules is shown
112114
# in this example:
113115
#
114116
# - `matplotlib.axes.Axes.bxp`
115117
# - `matplotlib.cbook.boxplot_stats`
118+
#
119+
# .. ifconfig:: releaselevel == 'dev'
120+
#
121+
# .. tags:: internal: too-much

‎galleries/examples/statistics/confidence_ellipse.py‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,19 @@ def get_correlated_dataset(n, dependency, mu, scale):
217217

218218
# %%
219219
#
220+
# .. tags::
221+
#
222+
# plot-type: speciality, plot-type:scatter, component: ellipse, component: patch,
223+
# domain: statistics,
224+
#
220225
# .. admonition:: References
221226
#
222227
# The use of the following functions, methods, classes and modules is shown
223228
# in this example:
224229
#
225230
# - `matplotlib.transforms.Affine2D`
226231
# - `matplotlib.patches.Ellipse`
232+
#
233+
# .. ifconfig:: releaselevel == 'dev'
234+
#
235+
# .. tags:: internal: too-much

‎galleries/examples/statistics/customized_violin.py‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,16 @@ def set_axis_style(ax, labels):
7373

7474
# %%
7575
#
76+
# .. tags:: plot-type: violin, domain:statistics
77+
#
7678
# .. admonition:: References
7779
#
7880
# The use of the following functions, methods, classes and modules is shown
7981
# in this example:
8082
#
8183
# - `matplotlib.axes.Axes.violinplot` / `matplotlib.pyplot.violinplot`
8284
# - `matplotlib.axes.Axes.vlines` / `matplotlib.pyplot.vlines`
85+
#
86+
# .. ifconfig:: releaselevel == 'dev'
87+
#
88+
# .. tags:: internal: too-much

‎galleries/examples/statistics/errorbar.py‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,16 @@
2121

2222
# %%
2323
#
24+
#
25+
# .. tags:: plot-type: errorbar, domain: statistics,
26+
#
2427
# .. admonition:: References
2528
#
2629
# The use of the following functions, methods, classes and modules is shown
2730
# in this example:
2831
#
2932
# - `matplotlib.axes.Axes.errorbar` / `matplotlib.pyplot.errorbar`
33+
#
34+
# .. ifconfig:: releaselevel == 'dev'
35+
#
36+
# .. tags:: internal: needs-review

‎galleries/examples/statistics/errorbar_features.py‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848

4949
# %%
5050
#
51+
# .. tags:: plot-type: errorbar, domain: statistics
52+
#
5153
# .. admonition:: References
5254
#
5355
# The use of the following functions, methods, classes and modules is shown

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp