MCPcopy Create free account
hub / github.com/eth-easl/dirigent / processQuantile

Function processQuantile

scripts/plotting/common.py:28–35  ·  view source on GitHub ↗
(d, percentile)

Source from the content-addressed store, hash-verified

26import glob
27
28def processQuantile(d, percentile):
29 p = d.reset_index()
30 p = p.T
31 p.columns = p.iloc[0]
32 p = p.iloc[1:, :]
33 p = p.rename(index={percentile: f"p{int(percentile * 100)}"})
34
35 return p
36
37
38def getTraces(load, rootPath):

Callers 1

getResultFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected