v.24.9New Feature
Adds scale argument to arrayAUC function to skip normalization step
Adds argumentscale(default:true) to functionarrayAUCwhich allows to skip the normalization step (issue #69609). #69717 (gabrielmcg44).
Why it matters
This feature addresses the need to optionally bypass the default normalization performed byarrayAUC. It allows users to obtain raw AUC values without automatic scaling, providing more control and flexibility depending on the use case.How to use it
Use thearrayAUC function with the optional scale argument. By default, scale is true, applying normalization. To skip normalization, set scale = false, for example:SELECT arrayAUC(arrayX, arrayY, scale => false) FROM table