src/hpcadvisor/plot_generator.py [179:193]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    st, datapoints, dynamic_filter, appexectime, plotdir, plotfile="plot.png", subtitle=None
):
    num_vms = []

    mydata, num_vms, max_exectime = dataset_handler.get_sku_nnodes_exec_time(
        datapoints, dynamic_filter, appexectime
    )

    if not mydata:
        log.error("No datapoints found. Check dataset and datafilter files")
        return

    fig, ax = plt.subplots()

    color_map, marker_map = get_color_marker_maps(mydata)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/hpcadvisor/plot_generator.py [223:237]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    st, datapoints, dynamic_filter, appexectime, plotdir, plotfile="plot.png", subtitle=None
):
    num_vms = []

    mydata, num_vms, max_exectime = dataset_handler.get_sku_nnodes_exec_time(
        datapoints, dynamic_filter, appexectime
    )

    if not mydata:
        log.error("No datapoints found. Check dataset and datafilter files")
        return

    fig, ax = plt.subplots()

    color_map, marker_map = get_color_marker_maps(mydata)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



