Spaces:
Running
Running
openhands
openhands
commited on
Commit
·
5d32e7b
1
Parent(s):
8d4cfda
Enable log scale for x-axis (cost) in graphs
Browse filesAdded type='log' to xaxis configuration in Plotly charts.
This improves readability when cost values span a wide range.
Co-authored-by: openhands <openhands@all-hands.dev>
leaderboard_transformer.py
CHANGED
|
@@ -662,6 +662,7 @@ def _plot_scatter_plotly(
|
|
| 662 |
# --- Section 8: Configure Layout ---
|
| 663 |
xaxis_config = dict(
|
| 664 |
title=x_axis_label,
|
|
|
|
| 665 |
rangemode="tozero"
|
| 666 |
)
|
| 667 |
|
|
|
|
| 662 |
# --- Section 8: Configure Layout ---
|
| 663 |
xaxis_config = dict(
|
| 664 |
title=x_axis_label,
|
| 665 |
+
type="log",
|
| 666 |
rangemode="tozero"
|
| 667 |
)
|
| 668 |
|