@@ -2328,10 +2328,10 @@ def _plot(data, x=None, y=None, subplots=False,
23282328series_ax = """ax : matplotlib axes object
23292329 If not passed, uses gca()"""
23302330
2331- df_note = """- If `kind`= 'bar' or 'barh', you can specify relative alignments
2331+ df_note = """- If `kind` = 'bar' or 'barh', you can specify relative alignments
23322332 for bar plot layout by `position` keyword.
23332333 From 0 (left/bottom-end) to 1 (right/top-end). Default is 0.5 (center)
2334- - If `kind`= 'hexbin', you can control the size of the bins with the
2334+ - If `kind` = 'hexbin', you can control the size of the bins with the
23352335 `gridsize` argument. By default, a histogram of the counts around each
23362336 `(x, y)` point is computed. You can specify alternative aggregations
23372337 by passing values to the `C` and `reduce_C_function` arguments.
@@ -2425,18 +2425,19 @@ def _plot(data, x=None, y=None, subplots=False,
24252425 Notes
24262426 -----
24272427
2428- If `kind`= 'hexbin', you can control the size of the bins with the
2428+ If `kind` = 'hexbin', you can control the size of the bins with the
24292429 `gridsize` argument. By default, a histogram of the counts around each
24302430 `(x, y)` point is computed. You can specify alternative aggregations
24312431 by passing values to the `C` and `reduce_C_function` arguments.
24322432 `C` specifies the value at each `(x, y)` point and `reduce_C_function`
24332433 is a function of one argument that reduces all the values in a bin to
24342434 a single number (e.g. `mean`, `max`, `sum`, `std`).
24352435
2436- If `kind`= 'scatter' and the argument `c` is the name of a dataframe column,
2436+ If `kind` = 'scatter' and the argument `c` is the name of a dataframe column,
24372437 the values of that column are used to color each point.
24382438 - See matplotlib documentation online for more on this subject
24392439 %(klass_note)s
2440+
24402441 """
24412442
24422443@Appender (_shared_docs ['plot' ] % _shared_doc_df_kwargs )
0 commit comments