Skip to content

Commit 9e49867

Browse files
DOC: fix non-ascii character (from #7698)
1 parent 372008a commit 9e49867

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tools/plotting.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2069,7 +2069,7 @@ def plot_frame(frame=None, x=None, y=None, subplots=False, sharex=True,
20692069
From 0 (left/bottom-end) to 1 (right/top-end). Default is 0.5 (center)
20702070
table : boolean, Series or DataFrame, default False
20712071
If True, draw a table using the data in the DataFrame and the data will
2072-
be transposed to meet matplotlibs default layout.
2072+
be transposed to meet matplotlib's default layout.
20732073
If a Series or DataFrame is passed, use passed data to draw a table.
20742074
kwds : keywords
20752075
Options to pass to matplotlib plotting method
@@ -2216,7 +2216,7 @@ def plot_series(series, label=None, kind='line', use_index=True, rot=None,
22162216
From 0 (left/bottom-end) to 1 (right/top-end). Default is 0.5 (center)
22172217
table : boolean, Series or DataFrame, default False
22182218
If True, draw a table using the data in the Series and the data will
2219-
be transposed to meet matplotlibs default layout.
2219+
be transposed to meet matplotlib's default layout.
22202220
If a Series or DataFrame is passed, use passed data to draw a table.
22212221
kwds : keywords
22222222
Options to pass to matplotlib plotting method

0 commit comments

Comments
 (0)