Bhanu Prasanna commited on
Commit
f204da8
1 Parent(s): 9134fda
main.py CHANGED
@@ -85,11 +85,13 @@ if number_of_symbols > 1:
85
  left_index=True,
86
  )
87
 
88
- for i in company_data.columns:
89
- company_data.dropna(axis=1, how="all", inplace=True)
90
 
91
  company_data.dropna(inplace=True)
92
 
 
 
 
93
  st.write(
94
  f"Note: Due to unavailability of full data, this Analysis uses data from the date: {company_data.index[0]}"
95
  )
 
85
  left_index=True,
86
  )
87
 
88
+ company_data.dropna(axis=1, how="all", inplace=True)
 
89
 
90
  company_data.dropna(inplace=True)
91
 
92
+ for i in company_data.columns:
93
+ company_data[i] = company_data[i].abs()
94
+
95
  st.write(
96
  f"Note: Due to unavailability of full data, this Analysis uses data from the date: {company_data.index[0]}"
97
  )
utilities/py/__pycache__/summary_tables.cpython-310.pyc CHANGED
Binary files a/utilities/py/__pycache__/summary_tables.cpython-310.pyc and b/utilities/py/__pycache__/summary_tables.cpython-310.pyc differ