Conversation
- Replace Flask app with Streamlit multi-page application - Add Plotly visualizations (heatmaps, scatter plots, bar charts) - Add interactive data configuration with metadata editing - Add Simpson's Paradox detection with configurable thresholds - Add trend ranking functionality - Update dependencies to use uv/pyproject.toml - Remove requirements.txt in favor of pyproject.toml - Convert README from RST to Markdown - Add sample dataset selector for easy testing Run with: uv run python -m streamlit run streamlit_app/app.py
- Add auto-assign button to automatically set roles based on variable types - Continuous variables assigned as independent/dependent - Categorical/binary/ordinal variables assigned as splitby - Add validation warnings when roles don't match variable types - Show info message when required roles are missing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
New Streamlit App (
streamlit_app/)app.py- Main entry pointpages/1_Data_Config.py- Data loading and metadata configurationpages/2_Visualize.py- Trend visualization, detection, and rankingcomponents/- Plotly visualization components (heatmap, scatterplot, barchart)utils/- State management and data helpersFeatures
data/folder or upload CSVDependencies
How to Run
uv pip install -e . uv run python -m streamlit run streamlit_app/app.pyTest Plan