We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72594ba commit 9536c8cCopy full SHA for 9536c8c
ci/code_checks.sh
@@ -86,9 +86,7 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
86
pandas.io.formats.style.Styler.format \
87
pandas.io.formats.style.Styler.highlight_quantile \
88
pandas.io.formats.style.Styler.background_gradient \
89
- pandas.io.formats.style.Styler.text_gradient \
90
- pandas.DataFrame.plot.hexbin \
91
- pandas.DataFrame.plot.line
+ pandas.io.formats.style.Styler.text_gradient
92
RET=$(($RET + $?)) ; echo $MSG "DONE"
93
94
fi
pandas/plotting/_core.py
@@ -1053,9 +1053,9 @@ def __call__(self, *args, **kwargs):
1053
over the years.
1054
1055
>>> df = pd.DataFrame({
1056
- ... 'pig': [20, 18, 489, 675, 1776],
1057
- ... 'horse': [4, 25, 281, 600, 1900]
1058
- ... }, index=[1990, 1997, 2003, 2009, 2014])
+ ... 'pig': [20, 18, 489, 675, 1776],
+ ... 'horse': [4, 25, 281, 600, 1900]
+ ... }, index=[1990, 1997, 2003, 2009, 2014])
1059
>>> lines = df.plot.line()
1060
1061
.. plot::
@@ -1828,8 +1828,8 @@ def hexbin(
1828
1829
... 'coord_x': np.random.uniform(-3, 3, size=n),
1830
... 'coord_y': np.random.uniform(30, 50, size=n),
1831
- ... 'observations': np.random.randint(1,5, size=n)
1832
- ... })
+ ... 'observations': np.random.randint(1, 5, size=n)
+ ... })
1833
>>> ax = df.plot.hexbin(x='coord_x',
1834
... y='coord_y',
1835
... C='observations',
0 commit comments