fix
Browse files
apps/kpi_analysis/anomalie.py
CHANGED
|
@@ -95,7 +95,7 @@ def detect_anomalies(df: pd.DataFrame, penalty: int):
|
|
| 95 |
|
| 96 |
|
| 97 |
if uploaded_file:
|
| 98 |
-
df = pd.read_csv(uploaded_file)
|
| 99 |
anomaly_dict, anomaly_data, all_kpis = detect_anomalies(df, penalty)
|
| 100 |
|
| 101 |
if not anomaly_dict:
|
|
|
|
| 95 |
|
| 96 |
|
| 97 |
if uploaded_file:
|
| 98 |
+
df = pd.read_csv(uploaded_file, delimiter=";")
|
| 99 |
anomaly_dict, anomaly_data, all_kpis = detect_anomalies(df, penalty)
|
| 100 |
|
| 101 |
if not anomaly_dict:
|