@@ -2328,10 +2328,10 @@ def _plot(data, x=None, y=None, subplots=False,
2328
2328
series_ax = """ax : matplotlib axes object
2329
2329
If not passed, uses gca()"""
2330
2330
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
2332
2332
for bar plot layout by `position` keyword.
2333
2333
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
2335
2335
`gridsize` argument. By default, a histogram of the counts around each
2336
2336
`(x, y)` point is computed. You can specify alternative aggregations
2337
2337
by passing values to the `C` and `reduce_C_function` arguments.
@@ -2425,18 +2425,19 @@ def _plot(data, x=None, y=None, subplots=False,
2425
2425
Notes
2426
2426
-----
2427
2427
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
2429
2429
`gridsize` argument. By default, a histogram of the counts around each
2430
2430
`(x, y)` point is computed. You can specify alternative aggregations
2431
2431
by passing values to the `C` and `reduce_C_function` arguments.
2432
2432
`C` specifies the value at each `(x, y)` point and `reduce_C_function`
2433
2433
is a function of one argument that reduces all the values in a bin to
2434
2434
a single number (e.g. `mean`, `max`, `sum`, `std`).
2435
2435
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,
2437
2437
the values of that column are used to color each point.
2438
2438
- See matplotlib documentation online for more on this subject
2439
2439
%(klass_note)s
2440
+
2440
2441
"""
2441
2442
2442
2443
@Appender (_shared_docs ['plot' ] % _shared_doc_df_kwargs )
0 commit comments