Streamlit Cloud: Bike Sharing Dashboard
bike-sharing-preview.mp4
This project is part of the bike sharing data analysis project to analyze the Bike Sharing Dataset. The results of the analysis are then made into the form of data visualization into an interactive dashboard.
/assets
: stores image and video assets used in this project/dashboard
: contains the filefunc.py
which stores the functions needed by the dashboarddataset
: stores data used in the data analysis projectREADME.md
: file that provides information about this GitHub projectapp.py
: main file to run the dashboardnotebook.ipynb
: interactive jupyter notebook files to analyze datarequirements.txt
: file that stores information about the libraries used in this project
The steps to create your virtual environment from this project is as follows:
-
Clone this Repository
git clone https://github.com/aNdr3W03/Bike-Sharing-Dashboard.git
-
Create Python Virtual Environment
virtualenv venv
-
Activate the Environment
venv\Scripts\activate
-
Install All the Requirements Inside "requirements.txt"
pip install -r requirements.txt
-
Run the Streamlit Dashboard
streamlit run app.py
-
Stop the application program by
ctrl + c
.