Spaces:
Runtime error
Runtime error
testing
Browse files
app.py
CHANGED
|
@@ -50,8 +50,8 @@ if df1_upload is not None and df2_upload is not None:
|
|
| 50 |
columns_df2 = df2.columns.tolist()
|
| 51 |
selected_columns_df1 = st.multiselect("Select columns from DataFrame 1 to match on:", columns_df1, default=columns_df1[0])
|
| 52 |
selected_columns_df2 = st.multiselect("Select columns from DataFrame 2 to match on:", columns_df2, default=columns_df2[0])
|
| 53 |
-
|
| 54 |
-
|
| 55 |
|
| 56 |
# Perform merge
|
| 57 |
if st.button("Merge DataFrames"):
|
|
|
|
| 50 |
columns_df2 = df2.columns.tolist()
|
| 51 |
selected_columns_df1 = st.multiselect("Select columns from DataFrame 1 to match on:", columns_df1, default=columns_df1[0])
|
| 52 |
selected_columns_df2 = st.multiselect("Select columns from DataFrame 2 to match on:", columns_df2, default=columns_df2[0])
|
| 53 |
+
st.write(selected_columns_df1)
|
| 54 |
+
st.write(selected_columns_df2)
|
| 55 |
|
| 56 |
# Perform merge
|
| 57 |
if st.button("Merge DataFrames"):
|