added pretty representation of Bayesian sampling analysis#354
Open
rozyczko wants to merge 5 commits into
Open
Conversation
done in diffraction-lib
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## bayesian #354 +/- ##
=============================================
+ Coverage 0.00% 37.41% +37.41%
=============================================
Files 42 54 +12
Lines 2871 3707 +836
=============================================
+ Hits 0 1387 +1387
+ Misses 2871 2320 -551
Flags with carried forward coverage won't be shown. Click here to find out more.
🚀 New features to boost your workflow:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Shamelessly stolen from diffraction-lib
Display Layer Implementation
displaysubpackage with the following modules and classes:fit_display.py: ImplementsFitDisplayfor rendering tables summarizing classical and Bayesian fit results, including parameter correlations.fitter_display.py: ImplementsFitterDisplay, a facade forMultiFitter, grouping fit and posterior result displays.posterior_display.py: ImplementsPosteriorDisplayfor visualizing posterior distributions, pairwise relationships, posterior predictive reflectivity, and SLD profiles.display/__init__.pyto expose these classes.Development and Build Configuration
matplotlib,pandas,rich, andscipyas development dependencies inpyproject.tomlto support plotting and rich table rendering in the new display layer..prettierignoreto ignoredocs/_build/.Linting and Code Quality
pyproject.tomlto ignoreE402(module-import-not-at-top-of-file) indocs/**to accommodate notebook cell imports.