Spaces:
Build error
Build error
Update pages/Steps_Involved_In_DataAnalysis.py
Browse files
pages/Steps_Involved_In_DataAnalysis.py
CHANGED
|
@@ -1,73 +1,6 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
| 3 |
-
|
| 4 |
-
/* Set a soft background color */
|
| 5 |
-
body {
|
| 6 |
-
background-color: #eef2f7;
|
| 7 |
-
}
|
| 8 |
-
/* Style for main title */
|
| 9 |
-
h1 {
|
| 10 |
-
color: #00FFFF;
|
| 11 |
-
font-family: 'Roboto', sans-serif;
|
| 12 |
-
font-weight: 700;
|
| 13 |
-
text-align: center;
|
| 14 |
-
margin-bottom: 25px;
|
| 15 |
-
}
|
| 16 |
-
/* Style for headers */
|
| 17 |
-
h2 {
|
| 18 |
-
color: #FFFACD;
|
| 19 |
-
font-family: 'Roboto', sans-serif;
|
| 20 |
-
font-weight: 600;
|
| 21 |
-
margin-top: 30px;
|
| 22 |
-
}
|
| 23 |
-
|
| 24 |
-
/* Style for subheaders */
|
| 25 |
-
h3 {
|
| 26 |
-
color: #ba95b0;
|
| 27 |
-
font-family: 'Roboto', sans-serif;
|
| 28 |
-
font-weight: 500;
|
| 29 |
-
margin-top: 20px;
|
| 30 |
-
}
|
| 31 |
-
.custom-subheader {
|
| 32 |
-
color: #00FFFF;
|
| 33 |
-
font-family: 'Roboto', sans-serif;
|
| 34 |
-
font-weight: 600;
|
| 35 |
-
margin-bottom: 15px;
|
| 36 |
-
}
|
| 37 |
-
/* Paragraph styling */
|
| 38 |
-
p {
|
| 39 |
-
font-family: 'Georgia', serif;
|
| 40 |
-
line-height: 1.8;
|
| 41 |
-
color: #F0FFF0; /* Darker text color for better visibility */
|
| 42 |
-
margin-bottom: 20px;
|
| 43 |
-
}
|
| 44 |
-
/* List styling with checkmark bullets */
|
| 45 |
-
.icon-bullet {
|
| 46 |
-
list-style-type: none;
|
| 47 |
-
padding-left: 20px;
|
| 48 |
-
}
|
| 49 |
-
.icon-bullet li {
|
| 50 |
-
font-family: 'Georgia', serif;
|
| 51 |
-
font-size: 1.1em;
|
| 52 |
-
margin-bottom: 10px;
|
| 53 |
-
color: #FFFFF0; /* Darker text color for better visibility */
|
| 54 |
-
}
|
| 55 |
-
.icon-bullet li::before {
|
| 56 |
-
content: "✔️";
|
| 57 |
-
padding-right: 10px;
|
| 58 |
-
color: #17a2b8;
|
| 59 |
-
}
|
| 60 |
-
/* Sidebar styling */
|
| 61 |
-
.sidebar .sidebar-content {
|
| 62 |
-
background-color: #ffffff;
|
| 63 |
-
border-radius: 10px;
|
| 64 |
-
padding: 15px;
|
| 65 |
-
}
|
| 66 |
-
.sidebar h2 {
|
| 67 |
-
color: #495057;
|
| 68 |
-
}
|
| 69 |
-
</style>
|
| 70 |
-
""", unsafe_allow_html=True)
|
| 71 |
st.title("STEPS INVOLVED IN DATA ANALYSIS")
|
| 72 |
st.markdown("""In this we undergo two scenarios. Now lets understand the both scenarios step-by-step.
|
| 73 |
""",unsafe_allow_html=True)
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
| 3 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
st.title("STEPS INVOLVED IN DATA ANALYSIS")
|
| 5 |
st.markdown("""In this we undergo two scenarios. Now lets understand the both scenarios step-by-step.
|
| 6 |
""",unsafe_allow_html=True)
|