Skip to content

precursor to Split out test_pytables.py to sub-module of tests #28715

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Oct 1, 2019
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
41979a5
fixing parameter discrepency in pandas.DataFrame.plot.scatter
tolaa001 Sep 22, 2019
a2bd9a1
updated **kwds to **kwargs
tolaa001 Sep 22, 2019
8136c0e
updating **kwargs optional to **kwargs
tolaa001 Sep 23, 2019
78419d0
updating the other **kwds to **kwargs to keep things consistent in th…
tolaa001 Sep 23, 2019
60151af
removed " before **kwargs'
tolaa001 Sep 24, 2019
6ca5b7a
splitting comment in test_sort over multiple lines as it is causing t…
tolaa001 Sep 24, 2019
16ce276
resolving conflict
tolaa001 Sep 25, 2019
b5692e0
changing pandas.dataframe methods from boolean to bool
tolaa001 Sep 26, 2019
d20973e
changing pandas.dataframe methods from boolean to bool
tolaa001 Sep 26, 2019
32f06b9
Revert "changing pandas.dataframe methods from boolean to bool"
tolaa001 Sep 26, 2019
4042455
changing pandas.dataframe methods from string to str
tolaa001 Sep 26, 2019
46d9d31
changing pandas.dataframe.insert from string to str
tolaa001 Sep 26, 2019
400430e
changing pandas.groupby methods from boolean to bool
tolaa001 Sep 26, 2019
0ebb04b
changing pandas.groupby methods from integer to int
tolaa001 Sep 26, 2019
5dcceb2
changing pandas.groupby methods from string to str
tolaa001 Sep 26, 2019
69a91a4
changing pandas.grouper docstring from boolean to bool and string to str
tolaa001 Sep 26, 2019
3aa3057
changing pandas.datetimeindex methods docstring from boolean to bool
tolaa001 Sep 26, 2019
6c49a81
changing pandas.read_sas docstring from string to str
tolaa001 Sep 26, 2019
b0c09b4
fixing parameter type inconsistencies for pandas.bdate_range
tolaa001 Sep 26, 2019
ff13a69
fixing parameter type inconsistencies for pandas.to_datetim
tolaa001 Sep 26, 2019
4ef0b64
fixing parameter type inconsistencies for pandas.date_range
tolaa001 Sep 26, 2019
42f2734
changing pandas.index methods docstring from string to str
tolaa001 Sep 26, 2019
d57f667
changing pandas.index methods docstring from boolean to bool
tolaa001 Sep 26, 2019
0bb2b54
changing pandas.resampler methods docstring from integer to int
tolaa001 Sep 26, 2019
7391c55
merging new pandas changes
tolaa001 Oct 1, 2019
0523b7a
replaced self.path with setup_path fixture
tolaa001 Oct 1, 2019
319bbd7
created fixtures for base class methods
tolaa001 Oct 1, 2019
3c7f7fd
updated self.path to setup_path and made self.path in individual func…
tolaa001 Oct 1, 2019
3beed93
Merge https://github.com/pandas-dev/pandas into test_contribution
tolaa001 Oct 1, 2019
10ce368
ran black for formatting
tolaa001 Oct 1, 2019
2997083
Merge remote-tracking branch 'upstream/master' into test_contribution
tolaa001 Oct 1, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updating the other **kwds to **kwargs to keep things consistent in th…
…e _core.py file
  • Loading branch information
tolaa001 committed Sep 23, 2019
commit 78419d0bd349f60446c70b89db0b2dd13f603507
30 changes: 15 additions & 15 deletions pandas/plotting/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def hist_series(
yrot=None,
figsize=None,
bins=10,
**kwds
**kwargs
):
"""
Draw histogram of the input series using matplotlib.
Expand Down Expand Up @@ -56,7 +56,7 @@ def hist_series(
bin edges are calculated and returned. If bins is a sequence, gives
bin edges, including left edge of first bin and right edge of last
bin. In this case, bins is returned unmodified.
`**kwds` : keywords
`**kwargs
To be passed to the actual plotting function

Returns
Expand All @@ -80,7 +80,7 @@ def hist_series(
yrot=yrot,
figsize=figsize,
bins=bins,
**kwds
**kwargs
)


Expand All @@ -99,7 +99,7 @@ def hist_frame(
figsize=None,
layout=None,
bins=10,
**kwds
**kwargs
):
"""
Make a histogram of the DataFrame's.
Expand Down Expand Up @@ -151,7 +151,7 @@ def hist_frame(
bin edges are calculated and returned. If bins is a sequence, gives
bin edges, including left edge of first bin and right edge of last
bin. In this case, bins is returned unmodified.
**kwds
**kwargs
All other plotting keyword arguments to be passed to
:meth:`matplotlib.pyplot.hist`.

Expand Down Expand Up @@ -194,7 +194,7 @@ def hist_frame(
figsize=figsize,
layout=layout,
bins=bins,
**kwds
**kwargs
)


Expand All @@ -209,7 +209,7 @@ def boxplot(
figsize=None,
layout=None,
return_type=None,
**kwds
**kwargs
):
"""
Make a box plot from DataFrame columns.
Expand Down Expand Up @@ -260,7 +260,7 @@ def boxplot(

If ``return_type`` is `None`, a NumPy array
of axes with the same shape as ``layout`` is returned.
**kwds
**kwargs
All other plotting keyword arguments to be passed to
:func:`matplotlib.pyplot.boxplot`.

Expand Down Expand Up @@ -385,7 +385,7 @@ def boxplot(
figsize=figsize,
layout=layout,
return_type=return_type,
**kwds
**kwargs
)


Expand All @@ -401,7 +401,7 @@ def boxplot_frame(
figsize=None,
layout=None,
return_type=None,
**kwds
**kwargs
):
plot_backend = _get_plot_backend()
return plot_backend.boxplot_frame(
Expand All @@ -415,7 +415,7 @@ def boxplot_frame(
figsize=figsize,
layout=layout,
return_type=return_type,
**kwds
**kwargs
)


Expand All @@ -431,7 +431,7 @@ def boxplot_frame_groupby(
layout=None,
sharex=False,
sharey=True,
**kwds
**kwargs
):
"""
Make box plots from DataFrameGroupBy data.
Expand Down Expand Up @@ -459,7 +459,7 @@ def boxplot_frame_groupby(
Whether y-axes will be shared among subplots

.. versionadded:: 0.23.1
`**kwds` : Keyword Arguments
`**kwargs
All other plotting keyword arguments to be passed to
matplotlib's boxplot function

Expand Down Expand Up @@ -495,7 +495,7 @@ def boxplot_frame_groupby(
layout=layout,
sharex=sharex,
sharey=sharey,
**kwds
**kwargs
)


Expand Down Expand Up @@ -586,7 +586,7 @@ class PlotAccessor(PandasObject):
labels with "(right)" in the legend
include_bool : bool, default is False
If True, boolean values can be plotted.
`**kwds` : keywords
`**kwargs
Options to pass to matplotlib plotting method.

Returns
Expand Down