Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from sklearn.cluster import KMeans
|
|
7 |
# Load the dataset
|
8 |
@st.cache_data
|
9 |
def load_data():
|
10 |
-
file_path =
|
11 |
return pd.read_csv(file_path, low_memory=False)
|
12 |
|
13 |
# Function to calculate distance between two coordinates
|
|
|
7 |
# Load the dataset
|
8 |
@st.cache_data
|
9 |
def load_data():
|
10 |
+
file_path ="preprocessed_df1.csv" # Update with your file path
|
11 |
return pd.read_csv(file_path, low_memory=False)
|
12 |
|
13 |
# Function to calculate distance between two coordinates
|