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.
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
Add new plotting module for experiment and analysis figures #902
Add new plotting module for experiment and analysis figures #902
Changes from 16 commits
45b04e6
95a2be4
ad6c73c
6e64138
fc22ff1
fb74410
451a6ca
f63b2ce
14ab82f
b45264f
6bb2142
9f17386
c40594c
9857079
d9658c4
1833052
f9d5ab4
032a1c1
492fdce
f6b6774
d506c5a
7101687
94158f4
9f4e1ee
956696a
ac1a984
7732065
8c588dc
8035121
88d2784
99bc4a6
28a8c80
544e4a2
288dcb6
b604350
6bdc6ef
7c3ca90
8ed2c9f
f1d1fc2
9a909f5
fdf1c23
84ef573
42f949c
3728969
6cccd6b
2f7c650
2448150
9184038
8f461d1
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Alternatively can we delegate the generation of text data to
CurvePlotter
? This allows us to much flexibly generate report by subclassing the plotter. We can do in follow-up, but likely such change causes API break? For example, when we run analysis with many curves, the report will occupy huge portion of the canvas and we cannot see any curve. In this case we may want to drop chi-squared. I think we can setList[AnalysisResultData]
to figure data and let the curve plotter generate default report with capability of hooking. This doesn't block merging, just a suggestion.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 really like the idea of passing a list of
AnalysisResultData
instances to the plotter. To keep this PR from exploding, I think we should address this in a follow-up PR. But it's definitely something I think will be useful. I'll open an issue about this once this PR has been merged.