(load, rootPath)
| 36 | |
| 37 | |
| 38 | def getTraces(load, rootPath): |
| 39 | |
| 40 | joined_list = glob.glob(f'{rootPath}/cold_start_trace_{load}*.csv') |
| 41 | cpTrace = pd.concat(map(pd.read_csv, joined_list), ignore_index=True) |
| 42 | |
| 43 | joined_list = glob.glob(f'{rootPath}/proxy_trace_{load}*.csv') |
| 44 | proxyTrace = pd.concat(map(pd.read_csv, joined_list), ignore_index=True) |
| 45 | |
| 46 | return cpTrace, proxyTrace |
| 47 | |
| 48 | |
| 49 | def getResult(load, rootPath): |