Add numerical format in excel to features

This commit is contained in:
2022-05-03 10:09:37 +02:00
parent a093b4113e
commit 8be1a6d12f

View File

@@ -465,7 +465,7 @@ class Excel(BaseReport):
integer.set_bg_color(self.color2)
self.sheet.write(self.row, col, result["dataset"], normal)
self.sheet.write(self.row, col + 1, result["samples"], integer)
self.sheet.write(self.row, col + 2, result["features"], normal)
self.sheet.write(self.row, col + 2, result["features"], integer)
self.sheet.write(self.row, col + 3, result["classes"], normal)
self.sheet.write(self.row, col + 4, result["nodes"], normal)
self.sheet.write(self.row, col + 5, result["leaves"], normal)