From 3800cda400f690e98588ca00145d627f95930a64 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Wed, 7 Jun 2017 12:18:04 +0100 Subject: [PATCH] Remove 'Demo' from stats example titles --- examples/statistics/boxplot.py | 6 +++--- examples/statistics/bxp.py | 6 +++--- examples/statistics/customized_violin.py | 6 +++--- examples/statistics/errorbar.py | 6 +++--- examples/statistics/errorbar_features.py | 6 +++--- examples/statistics/errorbar_limits.py | 6 +++--- examples/statistics/errorbars_and_boxes.py | 6 +++--- examples/statistics/histogram_cumulative.py | 6 +++--- examples/statistics/multiple_histograms_side_by_side.py | 6 +++--- examples/statistics/violinplot.py | 6 +++--- 10 files changed, 30 insertions(+), 30 deletions(-) diff --git a/examples/statistics/boxplot.py b/examples/statistics/boxplot.py index 356b8d5ab46f..694f9c606b7c 100644 --- a/examples/statistics/boxplot.py +++ b/examples/statistics/boxplot.py @@ -1,7 +1,7 @@ """ -========================================= -Demo of artist customization in box plots -========================================= +================================= +Artist customization in box plots +================================= This example demonstrates how to use the various kwargs to fully customize box plots. The first figure demonstrates diff --git a/examples/statistics/bxp.py b/examples/statistics/bxp.py index bb06214f778a..23842101a9ae 100644 --- a/examples/statistics/bxp.py +++ b/examples/statistics/bxp.py @@ -1,7 +1,7 @@ """ -=================================== -Demo of the boxplot drawer function -=================================== +======================= +Boxplot drawer function +======================= This example demonstrates how to pass pre-computed box plot statistics to the box plot drawer. The first figure demonstrates diff --git a/examples/statistics/customized_violin.py b/examples/statistics/customized_violin.py index 0da74a16556a..c686b3096776 100644 --- a/examples/statistics/customized_violin.py +++ b/examples/statistics/customized_violin.py @@ -1,7 +1,7 @@ """ -================================= -Demo of violin plot customization -================================= +========================= +Violin plot customization +========================= This example demonstrates how to fully customize violin plots. The first plot shows the default style by providing only diff --git a/examples/statistics/errorbar.py b/examples/statistics/errorbar.py index 540cec3ab9b7..8c2de1dfc5a9 100644 --- a/examples/statistics/errorbar.py +++ b/examples/statistics/errorbar.py @@ -1,7 +1,7 @@ """ -============================= -Demo of the errorbar function -============================= +================= +Errorbar function +================= This exhibits the most basic use of the error bar method. In this case, constant values are provided for the error diff --git a/examples/statistics/errorbar_features.py b/examples/statistics/errorbar_features.py index dfe8f68b5524..1dd68a247009 100644 --- a/examples/statistics/errorbar_features.py +++ b/examples/statistics/errorbar_features.py @@ -1,7 +1,7 @@ """ -=================================================== -Demo of the different ways of specifying error bars -=================================================== +======================================= +Different ways of specifying error bars +======================================= Errors can be specified as a constant value (as shown in `errorbar_demo.py`). However, this example demonstrates diff --git a/examples/statistics/errorbar_limits.py b/examples/statistics/errorbar_limits.py index 05d2c35be1a0..15d3d99dd308 100644 --- a/examples/statistics/errorbar_limits.py +++ b/examples/statistics/errorbar_limits.py @@ -1,7 +1,7 @@ """ -=========================================================== -Demo of how to include upper and lower limits in error bars -=========================================================== +============================================== +Including upper and lower limits in error bars +============================================== In matplotlib, errors bars can have "limits". Applying limits to the error bars essentially makes the error unidirectional. Because of that, diff --git a/examples/statistics/errorbars_and_boxes.py b/examples/statistics/errorbars_and_boxes.py index e3effc08e1ca..2f02643d195c 100644 --- a/examples/statistics/errorbars_and_boxes.py +++ b/examples/statistics/errorbars_and_boxes.py @@ -1,7 +1,7 @@ """ -============================================================ -Demo on creating boxes from error bars using PatchCollection -============================================================ +==================================================== +Creating boxes from error bars using PatchCollection +==================================================== In this example, we snazz up a pretty standard error bar plot by adding a rectangle patch defined by the limits of the bars in both the x- and diff --git a/examples/statistics/histogram_cumulative.py b/examples/statistics/histogram_cumulative.py index 3abd29ceefda..1dd192a1b9a4 100644 --- a/examples/statistics/histogram_cumulative.py +++ b/examples/statistics/histogram_cumulative.py @@ -1,7 +1,7 @@ """ -========================================================== -Demo of using histograms to plot a cumulative distribution -========================================================== +================================================== +Using histograms to plot a cumulative distribution +================================================== This shows how to plot a cumulative, normalized histogram as a step function in order to visualize the empirical cumulative diff --git a/examples/statistics/multiple_histograms_side_by_side.py b/examples/statistics/multiple_histograms_side_by_side.py index f8432d1d75fb..2c4ff176ce4b 100644 --- a/examples/statistics/multiple_histograms_side_by_side.py +++ b/examples/statistics/multiple_histograms_side_by_side.py @@ -1,7 +1,7 @@ """ -======================================================= -Demo of how to produce multiple histograms side by side -======================================================= +========================================== +Producing multiple histograms side by side +========================================== This example plots horizontal histograms of different samples along a categorical x-axis. Additionally, the histograms are plotted to diff --git a/examples/statistics/violinplot.py b/examples/statistics/violinplot.py index 58e31bffab24..03640bc56272 100644 --- a/examples/statistics/violinplot.py +++ b/examples/statistics/violinplot.py @@ -1,7 +1,7 @@ """ -================================== -Demo of the basics of violin plots -================================== +================== +Violin plot basics +================== Violin plots are similar to histograms and box plots in that they show an abstract representation of the probability distribution of the