Pragya Jatav commited on
Commit
ed0b93a
·
1 Parent(s): 4bc1155
pages/2_Scenario_Planner.py CHANGED
@@ -788,6 +788,7 @@ if auth_status == True:
788
  authenticator.logout("Logout", "main")
789
  st.header("Scenario Planner")
790
 
 
791
 
792
 
793
  # Response Metrics
 
788
  authenticator.logout("Logout", "main")
789
  st.header("Scenario Planner")
790
 
791
+
792
 
793
 
794
  # Response Metrics
response_curves_parameters.xlsx ADDED
Binary file (11.3 kB). View file
 
utilities.py CHANGED
@@ -290,7 +290,7 @@ def initialize_data(
290
  ##output cols aggregation
291
  output_cols.append(out_col)
292
 
293
- params = pd.read_excel(r"C:\Users\PragyaJatav\Downloads\Untitled Folder 2\simulator uploaded - Copy\Simulator-UOPX\response_curves_parameters.xlsx",index_col = "channel")
294
  param_dicts = {col: params[col].to_dict() for col in params.columns}
295
  response_curves[inp_col] = {
296
  "Kd": param_dicts["Kd"][inp_col],
 
290
  ##output cols aggregation
291
  output_cols.append(out_col)
292
 
293
+ params = pd.read_excel("response_curves_parameters.xlsx",index_col = "channel")
294
  param_dicts = {col: params[col].to_dict() for col in params.columns}
295
  response_curves[inp_col] = {
296
  "Kd": param_dicts["Kd"][inp_col],