gauravlochab commited on
Commit
890b4aa
·
1 Parent(s): e737d2f

feat: add debugging

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -226,7 +226,8 @@ def generate_apr_visualizations():
226
  # No longer generating dummy data
227
  # Set global_df for access by other functions
228
  global_df = df
229
-
 
230
  # Save to CSV before creating visualizations
231
  csv_file = save_to_csv(df)
232
 
 
226
  # No longer generating dummy data
227
  # Set global_df for access by other functions
228
  global_df = df
229
+ print(global_df.head())
230
+ print(df.head())
231
  # Save to CSV before creating visualizations
232
  csv_file = save_to_csv(df)
233