Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -98,17 +98,8 @@ if uploaded_file is not None:
|
|
98 |
|
99 |
df_combined['Self_score'] = df_combined.apply(calculate_self_score, axis=1)
|
100 |
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
# Display the first three lines immediately
|
106 |
-
description_placeholder1.text("#### 1. Extracted data: Dimensions Assessment of the leader by: Boss, Colleagues, Colleagues (other b.), Direct reports, Customers and All Raters")
|
107 |
-
description_placeholder2.text("#### 2. Derived data: Self score")
|
108 |
-
|
109 |
-
# Run the model (add your model code here)
|
110 |
-
|
111 |
-
# Display the resultant DataFrame after the model is run
|
112 |
-
output_placeholder.text("## Output:")
|
113 |
-
st.write("### Extracted Dataset")
|
114 |
st.dataframe(df_combined)
|
|
|
98 |
|
99 |
df_combined['Self_score'] = df_combined.apply(calculate_self_score, axis=1)
|
100 |
|
101 |
+
st.write("### Extracted Data:")
|
102 |
+
st.write("#### 1. Extracted data: Dimensions Assessment of the leader by: Boss, Colleagues, Colleagues (other b.), Direct reports, Customers and All Raters")
|
103 |
+
st.write("#### 2. Derived data: Self score")
|
104 |
+
st.write("### Dataset Table")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
st.dataframe(df_combined)
|