Spaces:
Sleeping
Sleeping
James McCool
commited on
Commit
·
bf8ac3e
1
Parent(s):
e91c761
Comment out duplicate removal in app.py: temporarily disable the line that drops duplicate entries based on 'Name' in the session state CSV file, preserving original data for further analysis.
Browse files
app.py
CHANGED
@@ -55,7 +55,7 @@ with tab1:
|
|
55 |
pass
|
56 |
|
57 |
if csv_file:
|
58 |
-
st.session_state['csv_file'] = st.session_state['csv_file'].drop_duplicates(subset=['Name'])
|
59 |
st.success('Projections file loaded successfully!')
|
60 |
st.dataframe(st.session_state['csv_file'].head(10))
|
61 |
|
|
|
55 |
pass
|
56 |
|
57 |
if csv_file:
|
58 |
+
# st.session_state['csv_file'] = st.session_state['csv_file'].drop_duplicates(subset=['Name'])
|
59 |
st.success('Projections file loaded successfully!')
|
60 |
st.dataframe(st.session_state['csv_file'].head(10))
|
61 |
|