FutureWarning: Sorting because non-concatenation axis is not aligned. A
future version of pandas will change to not sort by default.
To accept the future behavior, pass 'sort=False'.
To retain the current behavior and silence the warning, pass 'sort=True'.
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
tmp['testcase'] = res.split('.')[0]
list_.append(tmp)
- df = pd.concat(list_)
+ df = pd.concat(list_, sort=true)
df = convert_us_to_ns(df)
df = rename_cols(df)
df.sort_index(inplace=True)