We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86f6fb3 commit 9fa9045Copy full SHA for 9fa9045
petab/v1/visualize/plotting.py
@@ -862,14 +862,14 @@ def parse_from_id_list(
862
if ids_per_plot is None:
863
# this is the default case. If no grouping is specified,
864
# each group_by category will be plotted on a separate plot
865
- unique_obs_list = self._data_df[
+ unique_ids_list = self._data_df[
866
{
867
"dataset": DATASET_ID,
868
"observable": OBSERVABLE_ID,
869
"simulation": SIMULATION_CONDITION_ID,
870
}[group_by]
871
].unique()
872
- ids_per_plot = [[obs_id] for obs_id in unique_obs_list]
+ ids_per_plot = [[id_] for id_ in unique_ids_list]
873
874
if group_by == "dataset" and DATASET_ID not in self._data_df:
875
raise ValueError(
0 commit comments