@@ -1305,7 +1305,7 @@ Changes for 0.90.1
13051305 units.ConversionInterface.tickers renamed to
13061306 units.ConversionInterface.axisinfo and it now returns a
13071307 units.AxisInfo object rather than a tuple. This will make it
1308- easier to add axis info functionality (eg I added a default label
1308+ easier to add axis info functionality (e.g., I added a default label
13091309 on this iteration) w/o having to change the tuple length and hence
13101310 the API of the client code every time new functionality is added.
13111311 Also, units.ConversionInterface.convert_to_value is now simply
@@ -1790,7 +1790,7 @@ Changes for 0.71
17901790 pylab still imports most of the symbols from Numerix, MLab, fft,
17911791 etc, but is more cautious. For names that clash with python names
17921792 (min, max, sum), pylab keeps the builtins and provides the numeric
1793- versions with an a* prefix, eg (amin, amax, asum)
1793+ versions with an a* prefix, e.g., (amin, amax, asum)
17941794
17951795Changes for 0.70
17961796================
@@ -1810,7 +1810,7 @@ Changes for 0.65.1
18101810 removed add_axes and add_subplot from backend_bases. Use
18111811 figure.add_axes and add_subplot instead. The figure now manages the
18121812 current axes with gca and sca for get and set current axes. If you
1813- have code you are porting which called, eg , figmanager.add_axes, you
1813+ have code you are porting which called, e.g. , figmanager.add_axes, you
18141814 can now simply do figmanager.canvas.figure.add_axes.
18151815
18161816Changes for 0.65
@@ -1937,7 +1937,7 @@ pcolor_classic and scatter_classic.
19371937
19381938The return value from pcolor is a PolyCollection. Most of the
19391939propertes that are available on rectangles or other patches are also
1940- available on PolyCollections, eg you can say::
1940+ available on PolyCollections, e.g., you can say::
19411941
19421942 c = scatter(blah, blah)
19431943 c.set_linewidth(1.0)
@@ -1955,7 +1955,7 @@ over the return value of scatter or pcolor to set properties for the
19551955entire list.
19561956
19571957If you want the different elements of a collection to vary on a
1958- property, eg to have different line widths, see matplotlib.collections
1958+ property, e.g., to have different line widths, see matplotlib.collections
19591959for a discussion on how to set the properties as a sequence.
19601960
19611961For scatter, the size argument is now in points^2 (the area of the
@@ -2078,7 +2078,7 @@ Transformations
20782078 implementations, matplotlib.transforms.SeparableTransformation and
20792079 matplotlib.transforms.Affine. The SeparableTransformation is
20802080 constructed with the bounding box of the input (this determines the
2081- rectangular coordinate system of the input, ie the x and y view
2081+ rectangular coordinate system of the input, i.e., the x and y view
20822082 limits), the bounding box of the display, and possibly nonlinear
20832083 transformations of x and y. The 2 most frequently used
20842084 transformations, data coordinates -> display and axes coordinates ->
@@ -2215,7 +2215,7 @@ Changes for 0.42
22152215 needed with double buffered drawing. Ditto with state change.
22162216 Text instances have a get_prop_tup method that returns a hashable
22172217 tuple of text properties which you can use to see if text props
2218- have changed, eg by caching a font or layout instance in a dict
2218+ have changed, e.g., by caching a font or layout instance in a dict
22192219 with the prop tup as a key -- see RendererGTK.get_pango_layout in
22202220 backend_gtk for an example.
22212221
@@ -2236,7 +2236,7 @@ Changes for 0.42
22362236
22372237 * matplotlib.matlab._get_current_fig_manager renamed to
22382238 matplotlib.matlab.get_current_fig_manager to allow user access to
2239- the GUI window attribute, eg figManager.window for GTK and
2239+ the GUI window attribute, e.g., figManager.window for GTK and
22402240 figManager.frame for wx
22412241
22422242Changes for 0.40
0 commit comments