Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/sphinx/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
-r ../../requirements.txt
sphinx
# NOTE: Sphinx v9.0.0 introduced several breaking changes, including
# incompatibility with Sphinx multiversion project, see:
# https://github.com/sphinx-contrib/multiversion/issues/201
sphinx<9.0.0
sphinx_rtd_theme
nbsphinx
ipython
Expand Down
2 changes: 1 addition & 1 deletion skyllh/core/utils/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def pointlikesource_to_data_field_array(


def calculate_pval_from_trials(
ts_vals, ts_threshold, comp_operator='greater'):
ts_vals, ts_threshold, comp_operator='greater_equal'):
"""Calculates the percentage (p-value) of test-statistic trials that are
above the given test-statistic critical value.
In addition it calculates the standard deviation of the p-value assuming
Expand Down