Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -12,6 +12,18 @@ from streamlit_pandas_profiling import st_profile_report
|
|
12 |
import joblib
|
13 |
import shap
|
14 |
from datetime import datetime
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
# HTML and CSS for the draggable button
|
16 |
html_code = """
|
17 |
<style>
|
@@ -108,14 +120,6 @@ def show_data():
|
|
108 |
st.dataframe(df, use_container_width=True)
|
109 |
|
110 |
# --------------------------
|
111 |
-
# Page Configuration
|
112 |
-
# --------------------------
|
113 |
-
st.set_page_config(
|
114 |
-
page_title="DataInsight Pro",
|
115 |
-
page_icon="🔮",
|
116 |
-
layout="wide",
|
117 |
-
initial_sidebar_state="expanded"
|
118 |
-
)
|
119 |
|
120 |
# --------------------------
|
121 |
# Custom Styling
|
|
|
12 |
import joblib
|
13 |
import shap
|
14 |
from datetime import datetime
|
15 |
+
|
16 |
+
# --------------------------
|
17 |
+
# Page Configuration
|
18 |
+
# --------------------------
|
19 |
+
st.set_page_config(
|
20 |
+
page_title="DataInsight Pro",
|
21 |
+
page_icon="🔮",
|
22 |
+
layout="wide",
|
23 |
+
initial_sidebar_state="expanded"
|
24 |
+
)
|
25 |
+
|
26 |
+
|
27 |
# HTML and CSS for the draggable button
|
28 |
html_code = """
|
29 |
<style>
|
|
|
120 |
st.dataframe(df, use_container_width=True)
|
121 |
|
122 |
# --------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
# --------------------------
|
125 |
# Custom Styling
|