We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce00de1 commit 97b5c78Copy full SHA for 97b5c78
src/Functions/array/arrayAUC.cpp
@@ -131,7 +131,7 @@ class FunctionArrayAUC : public IFunction
131
132
area += (curr_fp - prev_fp) * (curr_tp + prev_tp) / 2.0;
133
134
- /// Then divide the area to the area of rectangle.
+ /// Then normalize it dividing by the area to the area of rectangle.
135
136
if (curr_tp == 0 || curr_tp == size)
137
return std::numeric_limits<Float64>::quiet_NaN();
0 commit comments