src/graphing/plotting.py [127:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    gc_event_dataframes,
    group_by=None,
    filter_by=None,
    labels=None,
    colors=None,
    plot=None,
    column="Duration_milliseconds",
    column_timing = None,
):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/graphing/plotting.py [165:173]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    gc_event_dataframes,# list of dataframes, containing gc event information. 
    group_by=None,      # A string to explain what groups to make within 1 log file
    filter_by=None,     # resitrctions on the data. list of tuples: (column, boolean-function)
    labels=None,        # list of str labels to describe each entry of gc_event_dataframes
    colors=None,        # A list of colors for the bars to be plotted as. 
    plot=None,          # A plot to add new plotted information to.
    column="Duration_milliseconds", # The column to find the averages of
    column_timing = None,
):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



