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 f225ccf commit 5e35e96Copy full SHA for 5e35e96
Utilities/Python/fdsplotlib.py
@@ -846,7 +846,7 @@ def _parse_stat_xy_local(m):
846
len_m = np.size(m) if isinstance(m, np.ndarray) else 0
847
len_p = np.size(p) if isinstance(p, np.ndarray) else 0
848
csv_rownum = drange[i] if i < len(drange) else "?"
849
- if len_m != len_p:
+ if len_m != len_p and qty != "0":
850
print(f"[dataplot] Length mismatch at CSV row {csv_rownum}: {name} | {qty} | Measured={len_m}, Predicted={len_p}")
851
852
print("[dataplot] returning saved_data and drange")
0 commit comments