From af3168dacc9550d0d951a959c2462a3afbbc3af3 Mon Sep 17 00:00:00 2001 From: itraviv Date: Sun, 1 Jan 2017 18:38:06 +0200 Subject: fixed detailed table to return more detailed data Signed-off-by: itraviv --- doc/TRexDataAnalysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') 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 -- cgit 1.2.3-korg