Hello,
From my data I constructed a dictionary-based prediction model based on a single dependent variable.
That is my model Y = f(X) is a set of bins (~100) over X variable mapped to fixed values of Y, e.g.
[0.1;0.5] -> 3.4
[0.5;0.7] -> 5.3
Now I have to calculate the Gini index (AUC ROC) for this dictionary-based prediction model.
As I understand I cannot use "Lift Chart" or "Model Comparison" tools as my model is not constructed using Alteryx model building tools (e.g. Linear Regression, Neural Network).
"Drawing" the ROC curve and calculating it bottom-up seems very troublesome.
Another idea I had was to invoke a function from R (e.g. https://www.rdocumentation.org/packages/MLmetrics/versions/1.1.1/topics/Gini) with R tool in Alteryx from Developer category. However, this will also take some effort as I havent been calling R functions from Alteryx before.
Does anyone have other solution ideas?
Thanks in advance!