laverdes commited on
Commit
b01cb1f
·
1 Parent(s): 5a72084

chore: comment reindex

Browse files
Files changed (1) hide show
  1. pages/1_📈_Plotting.py +1 -1
pages/1_📈_Plotting.py CHANGED
@@ -31,7 +31,7 @@ with st.sidebar:
31
  file = st.file_uploader("Load CSV file", accept_multiple_files = False)
32
  if file:
33
  df = pd.read_csv(file, index_col = False)
34
- df.index = df['Unnamed: 0'].tolist()
35
  del df['Unnamed: 0']
36
  if 'df' not in st.session_state:
37
  st.session_state['df'] = df
 
31
  file = st.file_uploader("Load CSV file", accept_multiple_files = False)
32
  if file:
33
  df = pd.read_csv(file, index_col = False)
34
+ # df.index = df['Unnamed: 0'].tolist()
35
  del df['Unnamed: 0']
36
  if 'df' not in st.session_state:
37
  st.session_state['df'] = df