-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Diagnostic plotting extension (#304)
* Update example notebook * Fix validation function * Initial diagnostic plotting * DiagnosticPlot class * Pre-commit changes * Fix notebook image relative pathing * Another fix to relative pathing * Move images to a folder in `/example_workbooks` * Update dependencies * Changes to extension * Fixes to notebook * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Add pinning for `jupyter_bokeh` to avoid unresolvable bug when using older versions * Add offset for minimum point size in `nasc_map` * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Changes to diagnostic plotting functions * Changes to diagnostic plotting notebook * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
96a0315
commit 0480e2a
Showing
10 changed files
with
1,277 additions
and
12 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
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+553 KB
docs/example_notebooks/notebook_images/cropped_kriging_mesh_interactive.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,13 +1,17 @@ | ||
from .survey_extensions import patch_generate_reports as generate_reports | ||
from .survey_extensions import ( | ||
patch_diagnostic_plots as diagnostic_plots, | ||
patch_generate_reports as generate_reports, | ||
) | ||
|
||
|
||
# Flex patch import | ||
def import_all_patches(): | ||
diagnostic_plots() | ||
generate_reports() | ||
|
||
|
||
# ---- Automatic import for `import echopop.extensions` | ||
import_all_patches() | ||
|
||
# Exposed individual patches for selective importing | ||
__all__ = ["generate_reports"] | ||
__all__ = ["diagnostic_plots", "generate_reports"] |
Oops, something went wrong.