File tree Expand file tree Collapse file tree 8 files changed +14
-14
lines changed
Filter options
Expand file tree Collapse file tree 8 files changed +14
-14
lines changed
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Changes in 0.99
4
4
* pylab no longer provides a load and save function. These are
5
5
available in matplotlib.mlab, or you can use numpy.loadtxt and
6
6
numpy.savetxt for text files, or np.save and np.load for binary
7
- numpy arrays.
7
+ NumPy arrays.
8
8
9
9
* User-generated colormaps can now be added to the set recognized
10
10
by :func: `matplotlib.cm.get_cmap `. Colormaps can be made the
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ original location:
169
169
Previously an integer start-index and stride-length could be specified using
170
170
either a two-element-list or a two-element-tuple. Now this can only be done
171
171
using a two-element-tuple. If a two-element-list is used then it will be
172
- treated as numpy fancy indexing and only the two markers corresponding to the
172
+ treated as NumPy fancy indexing and only the two markers corresponding to the
173
173
given indexes will be shown.
174
174
175
175
* Removed *prop * keyword argument from
@@ -207,6 +207,6 @@ original location:
207
207
Code removal
208
208
------------
209
209
210
- * Removed ``mlab.levypdf ``. The code raised a numpy error (and has for
210
+ * Removed ``mlab.levypdf ``. The code raised a NumPy error (and has for
211
211
a long time) and was not the standard form of the Levy distribution.
212
212
``scipy.stats.levy `` should be used instead
Original file line number Diff line number Diff line change @@ -715,9 +715,9 @@ likewise changed.
715
715
Dependency changes
716
716
------------------
717
717
718
- numpy
718
+ NumPy
719
719
~~~~~
720
- Matplotlib 3.1 now requires numpy >=1.11.
720
+ Matplotlib 3.1 now requires NumPy >=1.11.
721
721
722
722
ghostscript
723
723
~~~~~~~~~~~
@@ -871,7 +871,7 @@ future version.
871
871
- `.cbook.iterable `
872
872
- `.cbook.get_label `
873
873
- `.cbook.safezip `
874
- Manually check the lengths of the inputs instead, or rely on numpy to do it.
874
+ Manually check the lengths of the inputs instead, or rely on NumPy to do it.
875
875
- `.cbook.is_hashable `
876
876
Use ``isinstance(..., collections.abc.Hashable) `` instead.
877
877
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ plotfile
12
12
~~~~~~~~
13
13
`.pyplot.plotfile ` is deprecated in favor of separately loading and plotting
14
14
the data. See :doc: `/gallery/misc/plotfile_demo_sgskip ` for various ways to
15
- use pandas or numpy to load data, and pandas or matplotlib to plot the
15
+ use pandas or NumPy to load data, and pandas or matplotlib to plot the
16
16
resulting data.
17
17
18
18
axes and axis
@@ -220,7 +220,7 @@ is now available to register a font at a given path.
220
220
221
221
The ``as_str ``, ``as_rgba_str ``, ``as_array ``, ``get_width `` and ``get_height ``
222
222
methods of ``matplotlib.ft2font.FT2Image `` are deprecated. Convert the ``FT2Image ``
223
- to a numpy array with ``np.asarray `` before processing it.
223
+ to a NumPy array with ``np.asarray `` before processing it.
224
224
225
225
Colors
226
226
~~~~~~
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ The following lists any open PRs or branches related to this MEP:
17
17
18
18
#. Deprecate redundant statistical kwargs in ``Axes.boxplot ``: https://github.com/phobson/matplotlib/tree/MEP28-initial-deprecations
19
19
#. Deprecate redundant style options in ``Axes.boxplot ``: https://github.com/phobson/matplotlib/tree/MEP28-initial-deprecations
20
- #. Deprecate passings 2D numpy arrays as input: None
20
+ #. Deprecate passings 2D NumPy arrays as input: None
21
21
#. Add pre- & post-processing options to ``cbook.boxplot_stats ``: https://github.com/phobson/matplotlib/tree/boxplot-stat-transforms
22
22
#. Exposing ``cbook.boxplot_stats `` through ``Axes.boxplot `` kwargs: None
23
23
#. Remove redundant statistical kwargs in ``Axes.boxplot ``: None
@@ -197,9 +197,9 @@ Schedule
197
197
An accelerated timeline could look like the following:
198
198
199
199
#. v2.0.1 add transforms to ``cbook.boxplots_stats ``, expose in ``Axes.boxplot ``
200
- #. v2.1.0 Initial Deprecations , and using 2D numpy arrays as input
200
+ #. v2.1.0 Initial Deprecations , and using 2D NumPy arrays as input
201
201
202
- a. Using 2D numpy arrays as input. The semantics around 2D arrays are generally confusing.
202
+ a. Using 2D NumPy arrays as input. The semantics around 2D arrays are generally confusing.
203
203
b. ``usermedians ``, ``conf_intervals ``, ``sym `` parameters
204
204
205
205
#. v2.2.0
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ releases. For projects that use date-based versioning, every release
10
10
is a 'minor version'.
11
11
12
12
13
- Python and numpy
13
+ Python and NumPy
14
14
================
15
15
16
16
- support minor versions of ``Python `` initially released
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ Picking exercise
519
519
520
520
Create a data set of 100 arrays of 1000 Gaussian random numbers and
521
521
compute the sample mean and standard deviation of each of them (hint:
522
- numpy arrays have a mean and std method) and make a xy marker plot of
522
+ NumPy arrays have a mean and std method) and make a xy marker plot of
523
523
the 100 means vs. the 100 standard deviations. Connect the line
524
524
created by the plot command to the pick event, and plot the original
525
525
time series of the data that generated the clicked on points. If more
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ Pull Requests (224):
161
161
* :ghpull: `12507 `: FIX: make minor ticks formatted with science formatter as well
162
162
* :ghpull: `12500 `: Adjust the widths of the messages during the build.
163
163
* :ghpull: `12492 `: Simplify radar_chart example.
164
- * :ghpull: `12478 `: MAINT: numpy deprecates asscalar in 1.16
164
+ * :ghpull: `12478 `: MAINT: NumPy deprecates asscalar in 1.16
165
165
* :ghpull: `12363 `: FIX: errors in get_position changes
166
166
* :ghpull: `12495 `: Fix duplicate condition in pathpatch3d example
167
167
* :ghpull: `11984 `: Strip out pkg-config machinery for agg and libqhull.
You can’t perform that action at this time.
0 commit comments