@@ -325,18 +325,18 @@ concise figures.
325325 commands can easily draw colorbars and legends intended to reference more than
326326 one subplot in arbitrary contiguous rows and columns. See the
327327 :ref: `next section <why_colorbars_legends >` for details.
328- * The `~proplot.axes.Axes.panel_axes ` (shorthand `~proplot.axes.Axes.panel `) commands
329- can draw :ref: `thin panels <ug_panels >` along the edges of subplots. This
330- can be useful for plotting 1D summary statistics alongside 2D plots.
331328* A-b-c labels can be added to subplots simply using the :rcraw: `abc `
332329 setting -- for example, ``pplt.rc['abc'] = 'A.' `` or ``axs.format(abc='A.') ``.
333330 This is possible because `~proplot.figure.Figure.add_subplot ` assigns a unique
334331 `~proplot.axes.Axes.number ` to every new subplot.
335332* The `proplot.gridspec.SubplotGrid.format ` command can easily format multiple subplots
336333 at once or add colorbars, legends, panels, twin axes, or inset axes to multiple
337334 subplots at once. A `~proplot.gridspec.SubplotGrid ` is returned by
338- `proplot.figure.Figure.subplots `, and can be indexed like a list or like a 2D
339- array (in which case the indices match the subplot grid extents).
335+ `proplot.figure.Figure.subplots `, and can be indexed like a list or a 2D array.
336+ * The `~proplot.axes.Axes.panel_axes ` (shorthand `~proplot.axes.Axes.panel `) commands
337+ draw :ref: `thin panels <ug_panels >` along the edges of subplots. This can be useful
338+ for plotting 1D summary statistics alongside 2D plots. You can also add twin axes and
339+ panel axes to several subplots at once using `~proplot.gridspec.SubplotGrid ` commands.
340340
341341Links
342342-----
@@ -798,19 +798,22 @@ This may be confusing for users outside of the United States.
798798Solution
799799--------
800800
801- Proplot introduces the physical units engine `~proplot.utils.units ` for
802- interpreting `figsize `, `figwidth `, `figheight `, `refwidth `, `refheight `,
803- `left `, `right `, `top `, `bottom `, `wspace `, `hspace `, and keyword arguments in a
804- few other places. Acceptable units include inches, centimeters, millimeters,
801+ Proplot uses physical units for the `~proplot.gridspec.GridSpec ` keywords
802+ `left `, `right `, `top `, `bottom `, `wspace `, `hspace `, `pad `, `outerpad `, and
803+ `innerpad `. The default unit (assumed when a numeric argument is passed) is
804+ `em-widths <https://en.wikipedia.org/wiki/Em_(typography) >`__. Em-widths are
805+ particularly appropriate for this context, as plot text can be a useful "ruler"
806+ when figuring out the amount of space you need. Proplot also permits arbitrary
807+ string units for these keywords, for the `~proplot.figure.Figure ` keywords
808+ `figsize `, `figwidth `, `figheight `, `refwidth `, and `refheight `, and in a
809+ few other places. This is powered by the physical units engine `~proplot.utils.units `.
810+ Acceptable units include inches, centimeters, millimeters,
805811pixels, `points <https://en.wikipedia.org/wiki/Point_(typography) >`__, `picas
806- <https://en.wikipedia.org/wiki/Pica_(typography)> `__, and `em-heights
807- <https://en.wikipedia.org/wiki/Em_(typography)> `__ (a table of acceptable units
808- is found :ref: `here <units_table >`). Em-heights are particularly useful, as the
809- figure text can be a useful "ruler" when figuring out the amount of space you
810- need. The `~proplot.utils.units ` function also translates rc settings assigned
811- to `~proplot.config.rc_matplotlib ` and `~proplot.config.rc_proplot `, e.g.
812- :rcraw: `axes.labelpad `, :rcraw: `legend.handlelength `, and
813- :rcraw: `subplot.refwidth `.
812+ <https://en.wikipedia.org/wiki/Pica_(typography)> `__, and (a table of acceptable
813+ units is found :ref: `here <units_table >`). Note the `~proplot.utils.units ` engine
814+ also translates rc settings assigned to `~proplot.config.rc_matplotlib ` and
815+ `~proplot.config.rc_proplot `, e.g. :rcraw: `subplots.refwidth `,
816+ # :rcraw: `legend.columnspacing `, and :rcraw: `axes.labelpad `.
814817
815818Links
816819-----
0 commit comments