Skip to content

Commit

Permalink
Fix NullArgumentException of getQuantile method in DescriptiveStatist…
Browse files Browse the repository at this point in the history
…icsHistogramStatistics
  • Loading branch information
zhutong6688 authored and JingGe committed Dec 18, 2023
1 parent f7ababa commit 5e1deee
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ private void maybeInitPercentile() {
}
if (data != null) {
percentilesImpl.setData(data);
} else {
percentilesImpl.setData(new double[] {0.0});
}
}
}
Expand Down

0 comments on commit 5e1deee

Please sign in to comment.