Add multy score to exreport

This commit is contained in:
2021-09-27 18:43:59 +02:00
parent 50cbc95919
commit 9adac5d1fd
7 changed files with 79 additions and 41 deletions

View File

@@ -13,14 +13,23 @@ class Folders:
class Files:
index = "all.txt"
exreport_output = "exreport.txt"
exreport_err = "exreport_err.txt"
exreport_excel = "exreport.xlsx"
cmd_open_macos = "/usr/bin/open"
cmd_open_linux = "/usr/bin/xdg-open"
exreport_pdf = "Rplots.pdf"
benchmark_r = "benchmark.r"
@staticmethod
def exreport_output(score):
return f"exreport_{score}.txt"
@staticmethod
def exreport_err(score):
return f"exreport_err_{score}.txt"
@staticmethod
def exreport_excel(score):
return f"exreport_{score}.xlsx"
@staticmethod
def exreport(score):
return f"exreport_{score}.csv"