Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions pyblock/pd_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def optimal_block(block_sub_info):
Parameters
----------
block_sub_info: :class:`pandas.DataFrame` or :class:`pandas.Series`
Reblocking data (i.e. the first item of the tuple returned by ``reblock``),
Reblocking data (i.e. the second item of the tuple returned by ``reblock``),
or a subset thereof containing the statistics columns for one or more data
items.

Expand Down Expand Up @@ -180,7 +180,7 @@ def reblock_summary(block_sub_info):
Parameters
----------
block_sub_info : :class:`pandas.DataFrame` or :class:`pandas.Series`
Reblocking data (i.e. the first item of the tuple returned by ``reblock``),
Reblocking data (i.e. the second item of the tuple returned by ``reblock``),
or a subset thereof containing the statistics columns for one or more data
items.

Expand Down
2 changes: 1 addition & 1 deletion pyblock/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def plot_reblocking(block_info, plotfile=None, plotshow=True):
Parameters
----------
block_info : :class:`pandas.DataFrame`
Reblocking data (i.e. the first item of the tuple returned by ``reblock``).
Reblocking data (i.e. the second item of the tuple returned by ``reblock``).
plotfile : string
If not null, save the plot to the given filename. If '-', then show the
plot interactively. See also ``plotshow``.
Expand Down