-
Notifications
You must be signed in to change notification settings - Fork 6
#68 BinnedScatterPlotSysTest #73
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
msimet
wants to merge
28
commits into
master
Choose a base branch
from
#68
base: master
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 13 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
ab3bae6
Adding a first run at a BinnedScatterPlot class (#68)
msimet 480196a
Adding a first run at a testing module for the BinnedScatterPlot (#68)
msimet dd61de1
Bugfixes found in running tests (#68)
msimet 578430e
Bugfixes to test_sys_tests.py (#68)y
msimet 6567499
Add error calculations and a "count" option to BinnedScatterPlot (#68)
msimet 28c71bb
Edit line lengths in test_sys_tests.py (#68)
msimet 518e2ff
Implement RMS error + add more documentation (#68)
msimet 1834c7c
Add HSC adapters for BinnedScatterPlot specific instances (#68)
msimet 9140136
Bugfixes making #68 work
msimet 8541c76
Fix accidental passing of config in shape adapters (#68)
msimet 713b34f
Fix implementation of count method, plus checking for NaNs (#68)
msimet 2124818
Move to getting key first for magnitude stuff (#68)
msimet 15cb43d
Check for NaNs in all fields (#68)
msimet addded8
Merge branch 'master' into #68
msimet 85cfb2b
Documentation updates (#68)
msimet 9fe9453
Merge branch 'master' into #68
msimet e9060e2
Merge branch 'master' into #68
msimet 787f22a
Merge branch 'master' into #68
msimet 320f3e3
Add area kwargs for number density option to BinnedScatterPlot (#68
msimet b187d74
Add RMSESky, RMSEChip, and change default tests in hsc module (#68)
msimet bd0f709
Merge branch 'master' into #68
msimet 780767a
Merge branch 'master' into #68
msimet 8ae7821
Merge branch 'master' into #68
msimet a9e392f
Merge branch 'master' into #68
msimet d7ef8e8
Fix bug in BinnedScatterPlot inheritance (#68)
msimet fb0eaac
Fix Python 3 printing bug in BinnedScatterPlotSysTest (#68)
msimet 2ed7cef
Merge branch 'master' into #68
msimet 2501925
Merge branch 'master' into #68
msimet 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure we need to keep these as separate per-component RMS's. Normally when I am doing this kind of calculation I'll combine the components, e.g., for a per-component RMS I would do
0.5*(sum(e1^2)+sum(e2^2)).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apparently, at some point, I added the
RMSESkyandRMSEChipoptions--thanks for the suggestion. Should we leave the e1, e2 versions as well (in case we need them as a diagnostic) or just remove them as dead weight in the code?