diff options
author | itraviv <itraviv@cisco.com> | 2017-01-01 18:38:06 +0200 |
---|---|---|
committer | itraviv <itraviv@cisco.com> | 2017-01-01 18:38:48 +0200 |
commit | af3168dacc9550d0d951a959c2462a3afbbc3af3 (patch) | |
tree | 28501d12bd8bc08d3a35935a77b9b502e7a705ad /doc | |
parent | fda9842014b327b1bc7cbeeea473a291568b9d1e (diff) |
fixed detailed table to return more detailed data
Signed-off-by: itraviv <itraviv@cisco.com>
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/TRexDataAnalysis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/TRexDataAnalysis.py b/doc/TRexDataAnalysis.py index 4cd928bb..9ddc3b0f 100755 --- a/doc/TRexDataAnalysis.py +++ b/doc/TRexDataAnalysis.py @@ -110,7 +110,7 @@ def create_all_data_per_setup(setup_dict, setup_name, start_date, end_date, show def create_detailed_table(dframe_arr_detailed):
- result = reduce(lambda x, y: pd.merge(x, y, on=('Build Id', 'Setup')), dframe_arr_detailed)
+ result = reduce(lambda x, y: pd.merge(x, y, how='outer'), dframe_arr_detailed)
return result
|