Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.5 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.5 KB

Snip Avenue Dashboard

We created this interactive dashboard as a proof of concept for Snip Avenue as part of our IS215: Digital Business Transformation and Technologies project. The goal is to demonstrate the ability of dashboards and how they could allow key stakeholders to tap on live information to inculcate a data-driven culture within the organisation.

Streamlit App

Usage

Feel free to access the deployed dashboard here (https://share.streamlit.io/lohkokwee/snip-avenue-dashboard/main/app.py).

Alternatively, you may follow these commands if you wish to run the app locally:

  1. Install respective dependencies (either manually from the requirements.txt file or by running the following command)
pip install -r requirements.txt
  1. Run the app.
streamlit run app.py

Back to top

Development

The folders for our dashboard are organised in the following manner.

  1. Apps - this is where you can access the different views for our streamlit web dashboard
  2. Components - this is where we store the code for our data visualisations and common methods
  3. Assets - this is where we store our datasets and images
  4. notebooks - this is where our working notebooks are stored (note that the code is very raw as it consists of our workings)

Back to top