Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3800cda

Browse files
committed
Remove 'Demo' from stats example titles
1 parent 6da2b8c commit 3800cda

10 files changed

+30
-30
lines changed

examples/statistics/boxplot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=========================================
3-
Demo of artist customization in box plots
4-
=========================================
2+
=================================
3+
Artist customization in box plots
4+
=================================
55
66
This example demonstrates how to use the various kwargs
77
to fully customize box plots. The first figure demonstrates

examples/statistics/bxp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
===================================
3-
Demo of the boxplot drawer function
4-
===================================
2+
=======================
3+
Boxplot drawer function
4+
=======================
55
66
This example demonstrates how to pass pre-computed box plot
77
statistics to the box plot drawer. The first figure demonstrates

examples/statistics/customized_violin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=================================
3-
Demo of violin plot customization
4-
=================================
2+
=========================
3+
Violin plot customization
4+
=========================
55
66
This example demonstrates how to fully customize violin plots.
77
The first plot shows the default style by providing only

examples/statistics/errorbar.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=============================
3-
Demo of the errorbar function
4-
=============================
2+
=================
3+
Errorbar function
4+
=================
55
66
This exhibits the most basic use of the error bar method.
77
In this case, constant values are provided for the error

examples/statistics/errorbar_features.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
===================================================
3-
Demo of the different ways of specifying error bars
4-
===================================================
2+
=======================================
3+
Different ways of specifying error bars
4+
=======================================
55
66
Errors can be specified as a constant value (as shown in
77
`errorbar_demo.py`). However, this example demonstrates

examples/statistics/errorbar_limits.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
===========================================================
3-
Demo of how to include upper and lower limits in error bars
4-
===========================================================
2+
==============================================
3+
Including upper and lower limits in error bars
4+
==============================================
55
66
In matplotlib, errors bars can have "limits". Applying limits to the
77
error bars essentially makes the error unidirectional. Because of that,

examples/statistics/errorbars_and_boxes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
============================================================
3-
Demo on creating boxes from error bars using PatchCollection
4-
============================================================
2+
====================================================
3+
Creating boxes from error bars using PatchCollection
4+
====================================================
55
66
In this example, we snazz up a pretty standard error bar plot by adding
77
a rectangle patch defined by the limits of the bars in both the x- and

examples/statistics/histogram_cumulative.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==========================================================
3-
Demo of using histograms to plot a cumulative distribution
4-
==========================================================
2+
==================================================
3+
Using histograms to plot a cumulative distribution
4+
==================================================
55
66
This shows how to plot a cumulative, normalized histogram as a
77
step function in order to visualize the empirical cumulative

examples/statistics/multiple_histograms_side_by_side.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=======================================================
3-
Demo of how to produce multiple histograms side by side
4-
=======================================================
2+
==========================================
3+
Producing multiple histograms side by side
4+
==========================================
55
66
This example plots horizontal histograms of different samples along
77
a categorical x-axis. Additionally, the histograms are plotted to

examples/statistics/violinplot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
==================================
3-
Demo of the basics of violin plots
4-
==================================
2+
==================
3+
Violin plot basics
4+
==================
55
66
Violin plots are similar to histograms and box plots in that they show
77
an abstract representation of the probability distribution of the

0 commit comments

Comments
 (0)