MCPcopy Index your code
hub / github.com/Persper/code-analytics / output

Function output

dev_analysis.py:79–88  ·  view source on GitHub ↗
(ranks_array, worksheet, alpha_low, alpha_high, alpha_step)

Source from the content-addressed store, hash-verified

77 return dra
78
79def output(ranks_array, worksheet, alpha_low, alpha_high, alpha_step):
80 a = alpha_low
81 c = 1
82 for ranks in ranks_array:
83 worksheet.cell(column=c, row=1, value='alpha='+ str(a))
84 for r, item in enumerate(ranks):
85 for i, v in enumerate(item):
86 worksheet.cell(column=c+i, row=r+2, value=item[i])
87 a += alpha_step
88 c += 3
89
90def main():
91 parser = argparse.ArgumentParser()

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected