TNO Intern

Commit 53c2803c authored by Arjo Segers's avatar Arjo Segers
Browse files

Concatenate data frames following latest standards.

parent 67bd87b0
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3,6 +3,9 @@
#
# CHANGES
#
# 2023-04, Lewis Blake
#   Concatenate data frames following latest standards.
#
# 2023-08, Arjo Segers
#   Add `collection` level to overview plots.
#   Read plot title from rcfile settings.
@@ -202,7 +205,7 @@ class CSO_Inquire_Plot(utopya.UtopyaRc):
                if df is None:
                    df = xdf
                else:
                    df = df.append(xdf)
                    df = pandas.concat([df, xdf], ignore_index=True)
                # endif
            # endfor