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

Skip to content

Commit d978e02

Browse files
authored
Merge pull request #6679 from tacaswell/doc_152_changes
Doc 152 changes
2 parents 9e5b18a + 289fc9e commit d978e02

15 files changed

+644
-510
lines changed

doc/api/api_changes.rst

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,25 @@ sources of the changes you are experiencing.
1111
For new features that were added to matplotlib, please see
1212
:ref:`whats-new`.
1313

14+
Changes in 1.5.2
15+
================
16+
17+
18+
Default Behavior Changes
19+
------------------------
20+
21+
Changed default ``autorange`` behavior in boxplots
22+
``````````````````````````````````````````````````
23+
24+
Prior to v1.5.2, the whiskers of boxplots would extend to the mininum
25+
and maximum values if the quartiles were all equal (i.e., Q1 = median
26+
= Q3). This behavior has been disabled by default to restore consistency
27+
with other plotting packages.
28+
29+
To restore the old behavior, simply set ``autorange=True`` when
30+
calling ``plt.boxplot``.
31+
32+
1433
Changes in 1.5.0
1534
================
1635

@@ -72,7 +91,7 @@ by the new keyword argument `corner_mask`, or if this is not specified then
7291
the new rcParam `contour.corner_mask` instead. The new default behaviour is
7392
equivalent to using `corner_mask=True`; the previous behaviour can be obtained
7493
using `corner_mask=False` or by changing the rcParam. The example
75-
http://matplotlib.org/examples/pylab_examples/contour_corner_mask.py
94+
http://matplotlib.org/examples/pylab_examples/contour_corner_mask.html
7695
demonstrates the difference. Use of the old contouring algorithm, which is
7796
obtained with `corner_mask='legacy'`, is now deprecated.
7897

doc/api/api_changes/2016-03-13-PMH.rst

Lines changed: 0 additions & 10 deletions
This file was deleted.

doc/devel/MEP/MEP12.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,5 +184,4 @@ navigate the gallery. Thus, tags are complementary to this reorganization.
184184
.. [2] http://github.com/matplotlib/matplotlib/issues/524
185185
.. [3] http://matplotlib.1069221.n5.nabble.com/Matplotlib-gallery-td762.html#a33379091
186186
.. [4] http://www.loria.fr/~rougier/teaching/matplotlib/
187-
.. [5] http://www.gigawiz.com/aagraphs.html
188-
.. [6] http://www.loria.fr/~rougier/coding/gallery/
187+
.. [5] http://www.loria.fr/~rougier/coding/gallery/

doc/devel/MEP/MEP15.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@ When axis limits for a 2-D plot are specified for one axis only (via `xlim` or
2929
`ylim`), matplotlib currently does not currently rescale the other axis. The
3030
result is that the displayed curves or symbols may be compressed into a tiny
3131
portion of the available area, so that the final plot conveys much less
32-
information than it would with appropriate axis scaling. An example of such a
33-
plot can be found at the following URL:
34-
35-
http://phillipmfeldman.org/Python/MEP15.png
32+
information than it would with appropriate axis scaling.
3633

3734
The proposed change of behavior would make matplotlib choose the scale for the
3835
remaining axis using only the data that falls within the limits for the axis

doc/devel/gitwash/git_links.inc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
.. _why the -a flag?: http://www.gitready.com/beginner/2009/01/18/the-staging-area.html
4444
.. _git staging area: http://www.gitready.com/beginner/2009/01/18/the-staging-area.html
4545
.. _tangled working copy problem: http://tomayko.com/writings/the-thing-about-git
46-
.. _git management: http://kerneltrap.org/Linux/Git_Management
4746
.. _linux git workflow: http://www.mail-archive.com/[email protected]/msg39091.html
4847
.. _git parable: http://tom.preston-werner.com/2009/05/19/the-git-parable.html
4948
.. _git foundation: http://matthew-brett.github.com/pydagogue/foundation.html

doc/devel/gitwash/git_resources.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ Advanced git workflow
3030
There are many ways of working with git_; here are some posts on the
3131
rules of thumb that other projects have come up with:
3232

33-
* Linus Torvalds on `git management`_
3433
* Linus Torvalds on `linux git workflow`_ . Summary; use the git tools
3534
to make the history of your edits as clean as possible; merge from
3635
upstream edits as little as possible in branches where you are doing

doc/users/credits.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,10 @@ Jeremy O'Donoghue
2222
Andrew Straw
2323
Provided much of the log scaling architecture, the fill command, PIL
2424
support for imshow, and provided many examples. He also wrote the
25-
support for dropped axis spines and the `buildbot
26-
<http://mpl-buildbot.code.astraw.com/>`_ unit testing infrastructure
27-
which triggers the JPL/James Evans platform specific builds and
28-
regression test image comparisons from svn matplotlib across
29-
platforms on svn commits.
25+
support for dropped axis spines and the original buildbot unit
26+
testing infrastructure which triggered the JPL/James Evans platform
27+
specific builds and regression test image comparisons from svn
28+
matplotlib across platforms on svn commits.
3029

3130
Charles Twardy
3231
provided the impetus code for the legend class and has made

0 commit comments

Comments
 (0)