vivek9 commited on
Commit
ebdbfef
·
verified ·
1 Parent(s): 8f4e6bd

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +0 -2
utils.py CHANGED
@@ -105,8 +105,6 @@ def process_dataframe(df):
105
 
106
  # Calculate standard deviation of each row
107
  new_df['I-Support (sd)'] = df.std(axis=1,skipna=True)
108
- new_df=new_df.reset_index()
109
- new_df.rename(columns={'index': 'Pattern'}, inplace=True)
110
  return new_df
111
 
112
 
 
105
 
106
  # Calculate standard deviation of each row
107
  new_df['I-Support (sd)'] = df.std(axis=1,skipna=True)
 
 
108
  return new_df
109
 
110