Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -1,157 +1,157 @@
|
|
1 |
-
---
|
2 |
-
title: My Streamlit Project
|
3 |
-
emoji: π₯
|
4 |
-
colorFrom: blue
|
5 |
-
colorTo: indigo
|
6 |
-
sdk: streamlit
|
7 |
-
python_version: '3.10'
|
8 |
-
tags:
|
9 |
-
- streamlit
|
10 |
-
- data-visualization
|
11 |
-
app_file: app.py
|
12 |
-
sdk_version: 1.
|
13 |
-
---
|
14 |
-
|
15 |
-
|
16 |
-
# π **FINDEX Data Analysis & Prediction App** π
|
17 |
-
|
18 |
-
Welcome to the **FINDEX Data Analysis & Prediction App**! This app provides insights and predictions related to financial inclusion based on the Global Findex 2021 dataset from the World Bank. The app allows users to explore data distributions, statistics, and use machine learning to predict the likelihood of bank account ownership.
|
19 |
-
|
20 |
-
## π **Table of Contents**
|
21 |
-
- [Introduction](#introduction)
|
22 |
-
- [Features](#features)
|
23 |
-
- [Installation](#installation)
|
24 |
-
- [Usage](#usage)
|
25 |
-
- [Pages Overview](#pages-overview)
|
26 |
-
- [Folder Structure](#folder-structure)
|
27 |
-
- [Contributing](#contributing)
|
28 |
-
- [License](#license)
|
29 |
-
- [Contact](#contact)
|
30 |
-
|
31 |
-
---
|
32 |
-
|
33 |
-
## π **Introduction**
|
34 |
-
|
35 |
-
The **FINDEX Data Analysis & Prediction App** is a multi-page Streamlit application that provides a detailed exploration of financial inclusion data. The app uses machine learning models to predict the likelihood of an individual owning a bank account based on various socioeconomic factors, including income, education, and digital payment usage.
|
36 |
-
|
37 |
-
Whether you're looking to explore demographic trends or predict financial behavior, this app delivers intuitive visualizations and powerful AI-driven insights.
|
38 |
-
|
39 |
-
---
|
40 |
-
|
41 |
-
## π₯ **Features**
|
42 |
-
- **Data Visualization**: Visualize the distribution of key features, including age, income, and account ownership.
|
43 |
-
- **Statistics Overview**: View summary statistics on different demographic groups.
|
44 |
-
- **Machine Learning Predictions**: Predict the likelihood of bank account ownership using an XGBoost model.
|
45 |
-
- **SHAP Explanations**: Understand the key factors behind the predictions with SHAP visualizations.
|
46 |
-
- **Filtering Options**: Customize your analysis by filtering data by gender, education, age, and more.
|
47 |
-
|
48 |
-
---
|
49 |
-
|
50 |
-
## π» **Installation**
|
51 |
-
|
52 |
-
To run the app locally, follow these steps:
|
53 |
-
|
54 |
-
1. **Clone the repository**:
|
55 |
-
```bash
|
56 |
-
git clone https://github.com/Driisa/Final-submission-BDS-app.py.git
|
57 |
-
```
|
58 |
-
|
59 |
-
2. Navigate to the project directory:
|
60 |
-
```bash
|
61 |
-
cd FINDEX-App
|
62 |
-
```
|
63 |
-
|
64 |
-
3. Set up a virtual environment (optional but recommended):
|
65 |
-
```bash
|
66 |
-
python -m venv venv
|
67 |
-
source venv/bin/activate # On Windows use: venv\Scripts\activate
|
68 |
-
```
|
69 |
-
|
70 |
-
4. Install the required dependencies:
|
71 |
-
```bash
|
72 |
-
pip install -r requirements.txt
|
73 |
-
```
|
74 |
-
|
75 |
-
5. Run the app:
|
76 |
-
```bash
|
77 |
-
streamlit run app.py
|
78 |
-
```
|
79 |
-
|
80 |
-
6. Open your browser: Visit http://localhost:8501 to start using the app!
|
81 |
-
|
82 |
-
---
|
83 |
-
|
84 |
-
## πΉ **Usage**
|
85 |
-
|
86 |
-
- **Navigate the App**: Use the sidebar to switch between different pages such as Info, Distribution, Statistics, and Prediction.
|
87 |
-
- **Input Your Data**: On the Prediction page, provide the input data for demographic and socioeconomic factors to predict bank account ownership.
|
88 |
-
- **Visualize Data**: Use the Distribution and Statistics pages to explore data distributions and key insights from the dataset.
|
89 |
-
|
90 |
-
---
|
91 |
-
|
92 |
-
## π **Pages Overview**
|
93 |
-
|
94 |
-
1οΈβ£ **Info**
|
95 |
-
Provides an introduction to the Global Findex dataset and the key variables used in the analysis.
|
96 |
-
|
97 |
-
2οΈβ£ **Distribution**
|
98 |
-
Visualize the distribution of various features, including age, mobile ownership, internet access, and account ownership, with bar plots and histograms.
|
99 |
-
|
100 |
-
3οΈβ£ **Statistics**
|
101 |
-
Analyze summary statistics for key demographic groups, including age and education, and view bar plots showing account ownership across income and age groups.
|
102 |
-
|
103 |
-
4οΈβ£ **Prediction**
|
104 |
-
Predict whether an individual has a bank account based on inputted data. The prediction is powered by an XGBoost model, and SHAP visualizations help explain the predictions.
|
105 |
-
|
106 |
-
---
|
107 |
-
|
108 |
-
## π **Folder Structure**
|
109 |
-
|
110 |
-
```bash
|
111 |
-
FINDEX-App/
|
112 |
-
βββ models/
|
113 |
-
β βββ df.joblib
|
114 |
-
β βββ df_sample.joblib
|
115 |
-
β βββ ohe.joblib
|
116 |
-
β βββ scaler.joblib
|
117 |
-
β βββ xgb_clf.joblib
|
118 |
-
βββ app.py
|
119 |
-
βββ README.md
|
120 |
-
βββ requirements.txt
|
121 |
-
βββ .streamlit/
|
122 |
-
```
|
123 |
-
|
124 |
-
## π‘ **Contributing**
|
125 |
-
|
126 |
-
Want to contribute to the project? Hereβs how:
|
127 |
-
|
128 |
-
1. **Fork the repository**.
|
129 |
-
2. **Create a new branch** for your feature or bug fix:
|
130 |
-
```bash
|
131 |
-
git checkout -b feature-new-feature
|
132 |
-
```
|
133 |
-
3. Make your changes and commit them:
|
134 |
-
```bash
|
135 |
-
git commit -m "Added a new feature!"
|
136 |
-
```
|
137 |
-
4. Push the changes to your forked repo:
|
138 |
-
```bash
|
139 |
-
git push origin feature-new-feature
|
140 |
-
```
|
141 |
-
5. Open a Pull Request, and letβs review your changes!
|
142 |
-
|
143 |
-
---
|
144 |
-
|
145 |
-
## π **License**
|
146 |
-
|
147 |
-
This project is licensed under the MIT License. See the LICENSE file for more details.
|
148 |
-
|
149 |
-
---
|
150 |
-
|
151 |
-
## π **Contact**
|
152 |
-
|
153 |
-
If you have any issues or suggestions, feel free to reach out by opening a GitHub issue. Weβd love to hear from you and improve the app based on your feedback!
|
154 |
-
|
155 |
-
---
|
156 |
-
|
157 |
π **Enjoy exploring financial inclusion data with the FINDEX Data Analysis & Prediction App!** π
|
|
|
1 |
+
---
|
2 |
+
title: My Streamlit Project
|
3 |
+
emoji: π₯
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: indigo
|
6 |
+
sdk: streamlit
|
7 |
+
python_version: '3.10'
|
8 |
+
tags:
|
9 |
+
- streamlit
|
10 |
+
- data-visualization
|
11 |
+
app_file: app.py
|
12 |
+
sdk_version: 1.39.0
|
13 |
+
---
|
14 |
+
|
15 |
+
|
16 |
+
# π **FINDEX Data Analysis & Prediction App** π
|
17 |
+
|
18 |
+
Welcome to the **FINDEX Data Analysis & Prediction App**! This app provides insights and predictions related to financial inclusion based on the Global Findex 2021 dataset from the World Bank. The app allows users to explore data distributions, statistics, and use machine learning to predict the likelihood of bank account ownership.
|
19 |
+
|
20 |
+
## π **Table of Contents**
|
21 |
+
- [Introduction](#introduction)
|
22 |
+
- [Features](#features)
|
23 |
+
- [Installation](#installation)
|
24 |
+
- [Usage](#usage)
|
25 |
+
- [Pages Overview](#pages-overview)
|
26 |
+
- [Folder Structure](#folder-structure)
|
27 |
+
- [Contributing](#contributing)
|
28 |
+
- [License](#license)
|
29 |
+
- [Contact](#contact)
|
30 |
+
|
31 |
+
---
|
32 |
+
|
33 |
+
## π **Introduction**
|
34 |
+
|
35 |
+
The **FINDEX Data Analysis & Prediction App** is a multi-page Streamlit application that provides a detailed exploration of financial inclusion data. The app uses machine learning models to predict the likelihood of an individual owning a bank account based on various socioeconomic factors, including income, education, and digital payment usage.
|
36 |
+
|
37 |
+
Whether you're looking to explore demographic trends or predict financial behavior, this app delivers intuitive visualizations and powerful AI-driven insights.
|
38 |
+
|
39 |
+
---
|
40 |
+
|
41 |
+
## π₯ **Features**
|
42 |
+
- **Data Visualization**: Visualize the distribution of key features, including age, income, and account ownership.
|
43 |
+
- **Statistics Overview**: View summary statistics on different demographic groups.
|
44 |
+
- **Machine Learning Predictions**: Predict the likelihood of bank account ownership using an XGBoost model.
|
45 |
+
- **SHAP Explanations**: Understand the key factors behind the predictions with SHAP visualizations.
|
46 |
+
- **Filtering Options**: Customize your analysis by filtering data by gender, education, age, and more.
|
47 |
+
|
48 |
+
---
|
49 |
+
|
50 |
+
## π» **Installation**
|
51 |
+
|
52 |
+
To run the app locally, follow these steps:
|
53 |
+
|
54 |
+
1. **Clone the repository**:
|
55 |
+
```bash
|
56 |
+
git clone https://github.com/Driisa/Final-submission-BDS-app.py.git
|
57 |
+
```
|
58 |
+
|
59 |
+
2. Navigate to the project directory:
|
60 |
+
```bash
|
61 |
+
cd FINDEX-App
|
62 |
+
```
|
63 |
+
|
64 |
+
3. Set up a virtual environment (optional but recommended):
|
65 |
+
```bash
|
66 |
+
python -m venv venv
|
67 |
+
source venv/bin/activate # On Windows use: venv\Scripts\activate
|
68 |
+
```
|
69 |
+
|
70 |
+
4. Install the required dependencies:
|
71 |
+
```bash
|
72 |
+
pip install -r requirements.txt
|
73 |
+
```
|
74 |
+
|
75 |
+
5. Run the app:
|
76 |
+
```bash
|
77 |
+
streamlit run app.py
|
78 |
+
```
|
79 |
+
|
80 |
+
6. Open your browser: Visit http://localhost:8501 to start using the app!
|
81 |
+
|
82 |
+
---
|
83 |
+
|
84 |
+
## πΉ **Usage**
|
85 |
+
|
86 |
+
- **Navigate the App**: Use the sidebar to switch between different pages such as Info, Distribution, Statistics, and Prediction.
|
87 |
+
- **Input Your Data**: On the Prediction page, provide the input data for demographic and socioeconomic factors to predict bank account ownership.
|
88 |
+
- **Visualize Data**: Use the Distribution and Statistics pages to explore data distributions and key insights from the dataset.
|
89 |
+
|
90 |
+
---
|
91 |
+
|
92 |
+
## π **Pages Overview**
|
93 |
+
|
94 |
+
1οΈβ£ **Info**
|
95 |
+
Provides an introduction to the Global Findex dataset and the key variables used in the analysis.
|
96 |
+
|
97 |
+
2οΈβ£ **Distribution**
|
98 |
+
Visualize the distribution of various features, including age, mobile ownership, internet access, and account ownership, with bar plots and histograms.
|
99 |
+
|
100 |
+
3οΈβ£ **Statistics**
|
101 |
+
Analyze summary statistics for key demographic groups, including age and education, and view bar plots showing account ownership across income and age groups.
|
102 |
+
|
103 |
+
4οΈβ£ **Prediction**
|
104 |
+
Predict whether an individual has a bank account based on inputted data. The prediction is powered by an XGBoost model, and SHAP visualizations help explain the predictions.
|
105 |
+
|
106 |
+
---
|
107 |
+
|
108 |
+
## π **Folder Structure**
|
109 |
+
|
110 |
+
```bash
|
111 |
+
FINDEX-App/
|
112 |
+
βββ models/
|
113 |
+
β βββ df.joblib
|
114 |
+
β βββ df_sample.joblib
|
115 |
+
β βββ ohe.joblib
|
116 |
+
β βββ scaler.joblib
|
117 |
+
β βββ xgb_clf.joblib
|
118 |
+
βββ app.py
|
119 |
+
βββ README.md
|
120 |
+
βββ requirements.txt
|
121 |
+
βββ .streamlit/
|
122 |
+
```
|
123 |
+
|
124 |
+
## π‘ **Contributing**
|
125 |
+
|
126 |
+
Want to contribute to the project? Hereβs how:
|
127 |
+
|
128 |
+
1. **Fork the repository**.
|
129 |
+
2. **Create a new branch** for your feature or bug fix:
|
130 |
+
```bash
|
131 |
+
git checkout -b feature-new-feature
|
132 |
+
```
|
133 |
+
3. Make your changes and commit them:
|
134 |
+
```bash
|
135 |
+
git commit -m "Added a new feature!"
|
136 |
+
```
|
137 |
+
4. Push the changes to your forked repo:
|
138 |
+
```bash
|
139 |
+
git push origin feature-new-feature
|
140 |
+
```
|
141 |
+
5. Open a Pull Request, and letβs review your changes!
|
142 |
+
|
143 |
+
---
|
144 |
+
|
145 |
+
## π **License**
|
146 |
+
|
147 |
+
This project is licensed under the MIT License. See the LICENSE file for more details.
|
148 |
+
|
149 |
+
---
|
150 |
+
|
151 |
+
## π **Contact**
|
152 |
+
|
153 |
+
If you have any issues or suggestions, feel free to reach out by opening a GitHub issue. Weβd love to hear from you and improve the app based on your feedback!
|
154 |
+
|
155 |
+
---
|
156 |
+
|
157 |
π **Enjoy exploring financial inclusion data with the FINDEX Data Analysis & Prediction App!** π
|