level-6: Ankit Kumar Singh#536
Open
ankitsinghh007 wants to merge 2 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds a Level 6 submission by a contributor — a Neo4j-backed factory analytics dashboard with a Streamlit frontend. It includes a graph seeder script that ingests three CSV datasets, a multi-page Streamlit app for visualization and forecasting, supporting data files, configuration examples, and documentation.
Changes:
- Add
seed_graph.pyto seed a Neo4j knowledge graph from CSVs (projects, stations, workers, capacity) with constraints and derived Bottleneck nodes. - Add
app.pyStreamlit dashboard with 6 pages (Project Overview, Station Load, Capacity Tracker, Worker Coverage, Forecast, Self-Test). - Add supporting files: README, requirements, env example, CSV datasets, and deployed dashboard URL.
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| submissions/ankitsinghh007/level6/seed_graph.py | Neo4j seeder: constraints, node/relationship creation from CSVs, bottleneck computation, verification. |
| submissions/ankitsinghh007/level6/app.py | Streamlit dashboard reading from Neo4j with charts, forecast (linear extrapolation), and self-test. |
| submissions/ankitsinghh007/level6/requirements.txt | Python dependencies (streamlit, neo4j, pandas, plotly, etc.). |
| submissions/ankitsinghh007/level6/README.md | Setup, deploy, schema, security docs. |
| submissions/ankitsinghh007/level6/env.example | Template for Neo4j connection environment variables. |
| submissions/ankitsinghh007/level6/data/factory_*.csv | Source datasets for production, workers, and capacity. |
| submissions/ankitsinghh007/level6/DASHBOARD_URL.txt | Deployed Streamlit Cloud URL. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Submission Level
Level: level-6
What I Did
Built and deployed a Neo4j + Streamlit factory analytics dashboard using the provided datasets.
Implemented:
The dashboard was tested locally and deployed successfully on Streamlit Cloud.
Checklist
level-X: Your NameSigned-off-by: Ankit Kumar Singh