Skip to content

Commit

Permalink
Make it clear that p-values reported (overall search or per-event one…
Browse files Browse the repository at this point in the history
…s) can be null. This happens when a search is not run for selection reasons, or an individual event is not significant in one search or the other.
  • Loading branch information
blaufuss committed Sep 25, 2023
1 parent a6e89c1 commit b89ad26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gcn/notices/icecube/LvkNuTrackSearch.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"systematic_included": false
},
"event_pval_generic": 0.0191,
"event_pval_bayesian": 0.0549
"event_pval_bayesian": null
},
{
"event_dt": 222.46,
Expand Down
8 changes: 4 additions & 4 deletions gcn/notices/icecube/LvkNuTrackSearch.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"properties": {
"pval_generic": {
"description": "P-value from generic transient search; consistency with background expectations [0-1]",
"type": "number"
"type": ["number", "null"]
},
"pval_bayesian": {
"description": "P-value from LLAMA Bayesian search; consistency with background expectations [0-1]",
"type": "number"
"type": ["number", "null"]
},
"n_events_coincident": {
"description": "Number of IceCube events in spatial and temporal coincidence with the GW map",
Expand Down Expand Up @@ -71,11 +71,11 @@
},
"event_pval_generic": {
"description": "Per-event P-value from generic transient search; consistency with background expectations [0-1]",
"type": "number"
"type": ["number", "null"]
},
"event_pval_bayesian": {
"description": "Per-event P-value from LLAMA Bayesian search; consistency with background expectations [0-1]",
"type": "number"
"type": ["number", "null"]
}
}
}
Expand Down

0 comments on commit b89ad26

Please sign in to comment.