I want to calculate the ROC curve with rdkit implementation:
rdkit.ML.Scoring.Scoring.CalcAUC(scores, col)
Determines the area under the ROC curve
code:
import rdkit.ML.Scoring.Scoring
rdkit.ML.Scoring.Scoring.CalcAUC(scores, y)
and I get the following error:
IndexError: invalid index to scalar variable.
my data:
scores
array([32.336, 31.894, 31.74 , ..., -0.985, -1.629, -1.82 ])
y
array(['Inactive', 'Inactive', 'Inactive', ..., 'Inactive', 'Inactive','Inactive'], dtype=object)
I do not know what's wrong.
As mentioned in the comment above. The documentation for
CalcAUC
and other metrics is here but is pretty minimal.