-
Notifications
You must be signed in to change notification settings - Fork 7
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
Sensitivity analysis var name #300
base: main
Are you sure you want to change the base?
Conversation
problem which includes the variable name and the variable value to the sensitivity analysis
tests/test_sensitivity_analysis.py
Outdated
"num_vars": 2, | ||
"names": ["c", "v0"], | ||
"bounds": [(-5.0, 1.0), (0.0, 1000.0)], | ||
} |
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.
[blackfmt] reported by reviewdog 🐶
"num_vars": 2, | |
"names": ["c", "v0"], | |
"bounds": [(-5.0, 1.0), (0.0, 1000.0)], | |
} | |
"num_vars": 2, | |
"names": ["c", "v0"], | |
"bounds": [(-5.0, 1.0), (0.0, 1000.0)], | |
} |
tests/test_sensitivity_analysis.py
Outdated
"num_vars": 2, | ||
"names": ["c", "v0"], | ||
"bounds": [(-5.0, 1.0), (0.0, 1000.0)], | ||
} |
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.
[blackfmt] reported by reviewdog 🐶
"num_vars": 2, | |
"names": ["c", "v0"], | |
"bounds": [(-5.0, 1.0), (0.0, 1000.0)], | |
} | |
"num_vars": 2, | |
"names": ["c", "v0"], | |
"bounds": [(-5.0, 1.0), (0.0, 1000.0)], | |
} |
Coverage reportClick to see where and how coverage changed
This report was generated by python-coverage-comment-action |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #300 +/- ##
==========================================
+ Coverage 94.17% 94.24% +0.07%
==========================================
Files 62 65 +3
Lines 3606 3755 +149
==========================================
+ Hits 3396 3539 +143
- Misses 210 216 +6 ☔ View full report in Codecov by Sentry. |
Thanks @marjanfamili, this looks great - I left two related suggestions above in the code. |
Co-authored-by: Sam Greenbury <[email protected]>
Co-authored-by: Sam Greenbury <[email protected]>
Co-authored-by: Sam Greenbury <[email protected]>
@all-contributors add @sgreenbury for code, ideas, review, projectManagement |
I've put up a pull request to add @sgreenbury! 🎉 |
Use SALib ResultDict.to_df() function to provide results in pandas dataframe format
This PR addresses #279