-
Notifications
You must be signed in to change notification settings - Fork 30
Import and extend PosteriorStats #431
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
Open
sethaxen
wants to merge
62
commits into
main
Choose a base branch
from
posteriorstats
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
62 commits
Select commit
Hold shift + click to select a range
43a5630
Add PosteriorStats as dependency
sethaxen 2994a56
Import and reexport PosteriorStats functions
sethaxen 9ffb60b
Forward to PosteriorStats.summarize
sethaxen a6d16e5
Update docstring
sethaxen 4e99fe8
Update docstring
sethaxen 38dbdac
Forward summarystats to summarize
sethaxen 395a3d8
Simplify mean implementation
sethaxen 4fa204e
Simplify quantile implementation
sethaxen 5c0f35d
Replace hpd with hdi
sethaxen 3660d0e
Deprecate hpd
sethaxen e3d2d16
Simplify autocor implementation
sethaxen 49af2d9
Remove unused keyword `etype`
sethaxen bdde660
Explicitly build list of stats
sethaxen d851307
Simultaneously compute all quantiles
sethaxen 1717483
Print an extra newline
sethaxen bf06653
Use and export SummaryStats
sethaxen 147b56b
Use SummaryStats in place of ChainsDataFrame
sethaxen 706f29c
Update and repair changerate
sethaxen 2c07794
Remove ChainDataFrame
sethaxen 58ae52a
Update docs
sethaxen 340a694
Increment major version
sethaxen a67ac11
Increment MCMCChains compat for docs
sethaxen 1af83c8
Refer to processed chains
sethaxen 4aed409
Fix doctest
sethaxen eef9393
Add back append_chains keyword
sethaxen 6a1b482
Compute all lags simultaneously
sethaxen c7d2021
Vectorize before autocor
sethaxen bfe8deb
Correctly insert chain id into name
sethaxen 646e108
Update diagnostic tests
sethaxen 8066b46
Update ess_rhat_tests.jl
sethaxen 34b1da2
Update mcse_tests.jl
sethaxen 5b0db14
Increment MCMCChains compat for tests
sethaxen fb04e61
Remove ChainDataFrames to tables tests
sethaxen faf667b
Update summarize_tests.jl
sethaxen fba84a2
Use crossreference
sethaxen d51dd65
Update plotting functions
sethaxen 5d13530
Update to use hdi and hdi_prob
sethaxen 57a2921
Fix missing tests
sethaxen fc96b86
Remove references not defined here.
sethaxen cbd06d2
Improve vertical spacing
sethaxen f2bdc68
Bump PosteriorStats compat
sethaxen 313a786
Merge branch 'master' into posteriorstats
sethaxen 93f6ae9
Merge branch 'master' into posteriorstats
sethaxen c19b134
Bump PosteriorStats compat
sethaxen 02be9c7
Make stack available for older Julia versions
sethaxen ea2548e
Update SummaryStats constructor user
sethaxen 929c654
Use dict backing for cor summary
sethaxen 5f7aa7c
Remove unused kwargs
sethaxen 49fe1c8
Refactor autocor to avoid large namedtuple
sethaxen 1cef3ba
Use stack for autocor to avoid large compile times
sethaxen 17e08ed
Improve type inference of OrderedDict
sethaxen 1e3e96a
Make doctest reproducible
sethaxen d001894
Add StableRNGs as test dependency
sethaxen d6bb4ee
Merge branch 'master' into posteriorstats
sethaxen b3a3143
Apply suggestions from code review
sethaxen 67f7eaa
Merge branch 'posteriorstats' of https://github.com/TuringLang/MCMCCh…
sethaxen 1fbe8ad
Merge branch 'master' into posteriorstats
sethaxen 0fad7f9
Avoid splatting
sethaxen 3579c55
Avoid recomputing all medians for every parameter
sethaxen 5332916
Add test for show method
sethaxen d61c535
Merge branch 'master' into posteriorstats
sethaxen d488220
Update ess_rhat tests
sethaxen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,5 @@ describe | |
mean | ||
summarystats | ||
quantile | ||
hpd | ||
hdi | ||
``` |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.