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

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/statistics/boxplot.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/bxp.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/customized_violin.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/errorbar.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/errorbar_features.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/errorbar_limits.py
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/errorbars_and_boxes.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/histogram_cumulative.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/multiple_histograms_side_by_side.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions examples/statistics/violinplot.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down