docs: add UI enhancement phases and consolidated backlog#31
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: cf81b7904c
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| # normalize frequent human-entered numeric formats | ||
| v = ( | ||
| v.replace(",", "") |
There was a problem hiding this comment.
Preserve decimal-comma values when normalizing numbers
Removing every comma in _to_float silently corrupts locale-formatted decimals: inputs like "1,5" become 15.0 and "12,5%" become 125.0, so summarize_reader will compute incorrect numeric stats and dtype classification instead of leaving these cells non-numeric. This regression is introduced by the new normalization path and affects any CSV that uses comma as the decimal separator.
Useful? React with 👍 / 👎.
Motivation
Description
NEXT_STEPS_UI_AND_BACKLOG.mdwhich defines Phase 1–5 interface work (simplification, natural-language requests, state/feedback, dashboard, async charts) and a prioritized backlog of analysis, code, and file-format improvements.Testing
pytest -qand all tests passed (26 passed).Codex Task