Remove paper reference which is more confusing than helpful

This commit is contained in:
Robert Schulze 2024-12-17 12:29:35 +00:00
parent d31546aecd
commit 4ee4aa08a6
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A
2 changed files with 1 additions and 2 deletions

View File

@ -3225,7 +3225,6 @@ Result:
## arrayNormalizedGini
Calculates the normalized Gini coefficient.
For more details, see https://arxiv.org/abs/1912.07753.
**Syntax**

View File

@ -398,7 +398,7 @@ private:
REGISTER_FUNCTION(NormalizedGini)
{
FunctionDocumentation::Description doc_description = "Calculates the normalized Gini coefficient. For more details, see https://arxiv.org/abs/1912.07753.";
FunctionDocumentation::Description doc_description = "Calculates the normalized Gini coefficient.";
FunctionDocumentation::Syntax doc_syntax = "arrayNormalizedGini(predicted, label)";
FunctionDocumentation::Arguments doc_arguments = {{"predicted", "Predicted value (Array(T))."}, {"label", "Actual value (Array(T))."}};
FunctionDocumentation::ReturnedValue doc_returned_value = "A tuple containing the Gini coefficients of the predicted values, the Gini coefficient of the normalized values, and the normalized Gini coefficient (= the ratio of the former two Gini coefficients).";