File size: 1,943 Bytes
5d170fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
af2efa2
5d170fc
 
 
 
 
 
 
 
 
 
 
 
 
6b9ba4e
5d170fc
 
6b9ba4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import streamlit as st

# πŸ“₯ Data Collection & Understanding
st.markdown("""
## πŸ“₯ Data Collection & Data Understanding

### πŸ“¦ Data Collection:

The dataset used in this project was sourced from a structured collection of industrial and residential project data.  
It includes various **environmental**, **team-related**, and **budget-related attributes** that influence the overall risk level of a project.

### πŸ”‘ Dataset Features:

- **Project Type**: Type of the project (e.g., Construction, IT, Manufacturing, etc.)
- **Team Size**: Number of people working on the project
- **Project Budget (USD)**: Total budget allocated to the project in U.S. dollars
- **Estimated Timeline (Months)**: Duration estimated to complete the project
- **Complexity Score**: A numerical value representing the technical and operational complexity of the project
- **Stakeholder Count**: Number of stakeholders involved in decision-making
- **Methodology Used**: Project management approach adopted (e.g., Agile, Waterfall)
- **Team Experience Level**: Average experience level of the team (e.g., Junior, Mid, Senior)
- **External Dependencies Count**: Number of third-party or external factors the project relies on
- **Requirement Stability**: Indicates how frequently the project requirements change (e.g., Stable, Unstable)
- **Current Phase Duration (Months)**: Time spent in the current project phase
- **Risk Level (Target)**: The overall predicted risk level of the project (Low, Medium, High)  

### πŸ“š Key Understanding:

- **Data Type**: A mix of **categorical** and **numerical** features  
- **Data Size**: Moderate-sized dataset suitable for training classification models  
- **Target Variable**: **Risk Level** β€” classified as **Low**, **Medium**, or **High** based on the input attributes
""")

if st.button('Next'):
    st.switch_page("pages/3 EDA.py")

if st.button('Back'):
    st.switch_page("pages/1 Problem Statement.py")