We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent debf429 commit e18d19fCopy full SHA for e18d19f
gridfm_datakit/utils/stats.py
@@ -179,7 +179,6 @@ def compute_stats_from_data(
179
.set_index("scenario")["bus"]
180
.reindex(scenarios)
181
)
182
-
183
184
# ---4) Runtime data (optional) ---
185
if has_runtime:
@@ -486,7 +485,8 @@ def plot_feature_distributions(
486
485
fig, ax = plt.subplots(figsize=(15, 6))
487
488
bus_data = [
489
- bus_groups.get_group(bus)[feature_name].dropna().values for bus in sorted_buses
+ bus_groups.get_group(bus)[feature_name].dropna().values
+ for bus in sorted_buses
490
]
491
492
parts = ax.violinplot(bus_data, showmeans=True)
0 commit comments