Skip to content
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

ENH: Removing HistogramDisplay and updating functions to remove graph… #741

Merged
merged 5 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 0 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ omit =
act/*version*py
versioneer.py
setup.py
act/plotting/histogramdisplay.py
act/discovery/get_arm.py
act/discovery/arm.py
act/discovery/airnow.py
Expand Down
3 changes: 0 additions & 3 deletions act/plotting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
| :func:`act.plotting.ContourDisplay` handles the plotting of contour plots.
| :func:`act.plotting.DistributionDisplay` handles the plotting of distribution-related plots.
| :func:`act.plotting.GeographicPlotDisplay` handles the plotting of lat-lon plots.
| :func:`act.plotting.HistogramDisplay` handles the plotting of histogram plots.
| :func:`act.plotting.SkewTDisplay` handles the plotting of Skew-T diagrams.
| :func:`act.plotting.TimeSeriesDisplay` handles the plotting of timeseries.
| :func:`act.plotting.WindRoseDisplay` handles the plotting of wind rose plots.
Expand All @@ -31,7 +30,6 @@
'common',
'contourdisplay',
'geodisplay',
'histogramdisplay',
'plot',
'skewtdisplay',
'timeseriesdisplay',
Expand All @@ -42,7 +40,6 @@
submod_attrs={
'contourdisplay': ['ContourDisplay'],
'geodisplay': ['GeographicPlotDisplay'],
'histogramdisplay': ['HistogramDisplay'],
'plot': ['Display', 'GroupByDisplay'],
'skewtdisplay': ['SkewTDisplay'],
'timeseriesdisplay': ['TimeSeriesDisplay'],
Expand Down
4 changes: 2 additions & 2 deletions act/plotting/distributiondisplay.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _get_data(self, dsname, fields):
fields = [fields]
return self._ds[dsname][fields].dropna('time')

def plot_stacked_bar_graph(
def plot_stacked_bar(
self,
field,
dsname=None,
Expand Down Expand Up @@ -334,7 +334,7 @@ def plot_size_distribution(

return self.axes[subplot_index]

def plot_stairstep_graph(
def plot_stairstep(
self,
field,
dsname=None,
Expand Down
Loading