-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #803 from PCMDI/801_ljw_violin_plot_from_787_ljw_p…
…re-commit-hook-compliant New feature in parallel coordinate plot: split violin plot for two groups
- Loading branch information
Showing
11 changed files
with
394 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
# init file | ||
from .bar_chart.lib import BarChart # noqa | ||
from .parallel_coordinate_plot.parallel_coordinate_plot_lib import ( # noqa | ||
# isort: skip_file | ||
from .share.plot_utils import add_logo # noqa | ||
from .share.read_json_mean_clim import ( | ||
read_mean_clim_json_files, | ||
normalize_by_median, | ||
) # noqa | ||
from .parallel_coordinate_plot.parallel_coordinate_plot_lib import ( | ||
parallel_coordinate_plot, | ||
) | ||
) # noqa | ||
from .portrait_plot.portrait_plot_lib import portrait_plot # noqa | ||
from .portrait_plot.portrait_plot_lib import prepare_data # noqa | ||
from .share.add_logo import add_logo # noqa | ||
from .share.read_json_mean_clim import ( # noqa | ||
normalize_by_median, | ||
read_mean_clim_json_files, | ||
) | ||
from .bar_chart.lib import BarChart # noqa |
Binary file modified
BIN
+0 Bytes
(100%)
...raphics/parallel_coordinate_plot/mean_clim_parallel_coordinate_plot_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
214 changes: 203 additions & 11 deletions
214
pcmdi_metrics/graphics/parallel_coordinate_plot/parallel_coordinate_plot_example.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 12 additions & 5 deletions
17
pcmdi_metrics/graphics/parallel_coordinate_plot/parallel_coordinate_plot_mean_clim.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
pcmdi_metrics/graphics/portrait_plot/mean_clim_portrait_plot_4seasons_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 16 additions & 16 deletions
32
pcmdi_metrics/graphics/portrait_plot/portrait_plot_example.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 7 additions & 7 deletions
14
pcmdi_metrics/graphics/portrait_plot/portrait_plot_mean_clim.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.