LeonceNsh commited on
Commit
cc9514f
·
verified ·
1 Parent(s): 1322835

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import gradio as gr
7
 
8
  # Load and preprocess the dataset
9
  file_path = "cbinsights_data.csv" # Replace with your file path
10
- data = pd.read_csv(file_path)
11
 
12
  # Standardize column names: strip whitespace and convert to lowercase
13
  data.columns = data.columns.str.strip().str.lower()
 
7
 
8
  # Load and preprocess the dataset
9
  file_path = "cbinsights_data.csv" # Replace with your file path
10
+ data = pd.read_csv(file_path, skiprows=1)
11
 
12
  # Standardize column names: strip whitespace and convert to lowercase
13
  data.columns = data.columns.str.strip().str.lower()