Is your enhancement request related to a problem? Please describe
when sending a list of experiments to a DataframePlot, the viz will error if each experiment does not have a dataframe named dataframe_name
Describe the solution you'd like
instead of erroring, we should visualize the dataframes that are present and warn about the experiments that were not visualized:
in this loop in load_experiment_data, dataframe = experiment.dataframe(name=self.dataframe_name) should not immediately error if there is no dataframe for the current experiment
instead skip it, raise a warning about the experiment not having the dataframe, and move on to the next iteration
if self.data_df is still None at the end of the loop, then raise an error that no dataframe with name dataframe_name has been found
Is your enhancement request related to a problem? Please describe
when sending a list of experiments to a
DataframePlot
, the viz will error if each experiment does not have a dataframe nameddataframe_name
Describe the solution you'd like
instead of erroring, we should visualize the dataframes that are present and warn about the experiments that were not visualized:
load_experiment_data
,dataframe = experiment.dataframe(name=self.dataframe_name)
should not immediately error if there is no dataframe for the current experimentself.data_df
is still None at the end of the loop, then raise an error that no dataframe with namedataframe_name
has been found