Skip to content

Commit

Permalink
fix roc print output
Browse files Browse the repository at this point in the history
  • Loading branch information
ejolly committed Mar 26, 2024
1 parent 6595129 commit f5b4719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nltools/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def summary(self):
print("------------------------")
print("{:20s}".format("Accuracy:") + "{:.2f}".format(self.accuracy))
print("{:20s}".format("Accuracy SE:") + "{:.2f}".format(self.accuracy_se))
print("{:20s}".format("Accuracy p-value:") + "{:.2f}".format(self.accuracy_p))
print("{:20s}".format("Accuracy p-value:") + "{:.2f}".format(self.accuracy_p.pvalue))
print("{:20s}".format("Sensitivity:") + "{:.2f}".format(self.sensitivity))
print("{:20s}".format("Specificity:") + "{:.2f}".format(self.specificity))
print("{:20s}".format("AUC:") + "{:.2f}".format(self.auc))
Expand Down

0 comments on commit f5b4719

Please sign in to comment.