src/graphing/plotting.py [20:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    gc_event_dataframes,  # list of dataframes, containing gc event information. 
    group_by=None,  # A string to explain what groups to make within 1 gc_event_dataframe
    filter_by=None, # resitrctions on the data. list of tuples: (column, boolean-function) 
    labels=None,    # list of str labels to describe each gc_event_dataframe.  
    colors=None,    # colors to override 
    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,
):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



