Spaces:
Build error
Build error
Update pages/Steps_Involved_In_DataAnalysis.py
Browse files
pages/Steps_Involved_In_DataAnalysis.py
CHANGED
|
@@ -63,4 +63,40 @@ st.markdown("""
|
|
| 63 |
}
|
| 64 |
</style>
|
| 65 |
""", unsafe_allow_html=True)
|
| 66 |
-
st.title("STEPS INVOLVED IN DATA ANALYSIS")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
}
|
| 64 |
</style>
|
| 65 |
""", unsafe_allow_html=True)
|
| 66 |
+
st.title("STEPS INVOLVED IN DATA ANALYSIS")
|
| 67 |
+
st.markdown("""In this we undergo two scenarios. Now lets understand the both scenarios step-by-step.
|
| 68 |
+
""",unsafe_allow_html=True)
|
| 69 |
+
st.header("Scenario-1")
|
| 70 |
+
st.markdown("""In this scenario we will be having problem statement. According to problem statement the
|
| 71 |
+
analysis must be proceeded. Following steps are given below.
|
| 72 |
+
""",unsafe_allow_html=True)
|
| 73 |
+
st.subheader("Problem Statement:")
|
| 74 |
+
st.markdown("""In scenario-1 we will be given problem statement. By considering the
|
| 75 |
+
problem statement we must analyze the given problem statement perfectly. And we must take
|
| 76 |
+
required steps according to problem statement.
|
| 77 |
+
""",unsafe_allow_html=True)
|
| 78 |
+
st.subheader("Data Collection:")
|
| 79 |
+
st.markdown("""After analyzing the problem statement. We should collect the data according
|
| 80 |
+
to the problem statement. We should collect the data from structured data or unstructured
|
| 81 |
+
data or semi structured data. We should collect more data for accurate analysis. The collected
|
| 82 |
+
data will have some sort if impurities hence we will go for next process.
|
| 83 |
+
""",unsafe_allow_html=True)
|
| 84 |
+
st.subheader("SIMPLE EXPLORATORY DATA ANALYSIS:")
|
| 85 |
+
st.markdown(""" In order to check weather the collected data has any
|
| 86 |
+
impurities we will go for simple (EDA). Which will say weather the collected data has any
|
| 87 |
+
impurities or not. If the collected data doesn’t have any impurities then directly go for whole
|
| 88 |
+
(EDA) or else go for pre-processing
|
| 89 |
+
""",unsafe_allow_html=True)
|
| 90 |
+
st.subheader("PRE-PROCESSING:")
|
| 91 |
+
st.markdown(""" If the collected data has any sort of impurities then this raw data is being
|
| 92 |
+
cleaned. Pre-Processing involves Data Cleaning, Transforming the data etc.
|
| 93 |
+
""",unsafe_allow_html=True)
|
| 94 |
+
st.subheader("EXPLORATORY DATA ANALYSIS:")
|
| 95 |
+
st.markdown("""After Pre-Processing complete (EDA) is performed on data. By
|
| 96 |
+
once performing this (EDA) we will be getting the complete insights from the collected data.
|
| 97 |
+
""",unsafe_allow_html=True)
|
| 98 |
+
st.subheader("VISUALIZATION:")
|
| 99 |
+
st.markdown("""After the (EDA) we will be getting the insights these are represented by using
|
| 100 |
+
wide range of visualization technique’s. Or can be represented as a Dash Board.
|
| 101 |
+
""",unsafe_allow_html=True)
|
| 102 |
+
|