Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,10 +6,13 @@ def load_csv(file):
|
|
6 |
return pd.read_csv(file.name)
|
7 |
|
8 |
def update_dropdowns(df):
|
9 |
-
|
|
|
|
|
|
|
10 |
|
11 |
def create_plot(df, x_col, y_col):
|
12 |
-
if
|
13 |
return None
|
14 |
return {
|
15 |
"x": df[x_col].tolist(),
|
@@ -21,6 +24,9 @@ def create_plot(df, x_col, y_col):
|
|
21 |
}
|
22 |
|
23 |
def filter_points(event: gr.SelectData, df, x_col, y_col):
|
|
|
|
|
|
|
24 |
if not hasattr(filter_points, "points"):
|
25 |
filter_points.points = []
|
26 |
|
@@ -29,17 +35,18 @@ def filter_points(event: gr.SelectData, df, x_col, y_col):
|
|
29 |
if len(filter_points.points) < 3:
|
30 |
return pd.DataFrame()
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
40 |
|
41 |
with gr.Blocks() as demo:
|
42 |
-
gr.Markdown("## 🎯 Çalışan
|
43 |
|
44 |
df_state = gr.State()
|
45 |
|
|
|
6 |
return pd.read_csv(file.name)
|
7 |
|
8 |
def update_dropdowns(df):
|
9 |
+
if df is None or df.empty:
|
10 |
+
return gr.Dropdown(choices=[]), gr.Dropdown(choices=[])
|
11 |
+
columns = df.columns.tolist() # Index'i listeye çevir
|
12 |
+
return gr.Dropdown(choices=columns), gr.Dropdown(choices=columns)
|
13 |
|
14 |
def create_plot(df, x_col, y_col):
|
15 |
+
if df is None or x_col not in df.columns or y_col not in df.columns:
|
16 |
return None
|
17 |
return {
|
18 |
"x": df[x_col].tolist(),
|
|
|
24 |
}
|
25 |
|
26 |
def filter_points(event: gr.SelectData, df, x_col, y_col):
|
27 |
+
if df is None or x_col not in df.columns or y_col not in df.columns:
|
28 |
+
return pd.DataFrame()
|
29 |
+
|
30 |
if not hasattr(filter_points, "points"):
|
31 |
filter_points.points = []
|
32 |
|
|
|
35 |
if len(filter_points.points) < 3:
|
36 |
return pd.DataFrame()
|
37 |
|
38 |
+
try:
|
39 |
+
polygon = Polygon(filter_points.points)
|
40 |
+
mask = df[[x_col, y_col]].apply(
|
41 |
+
lambda row: polygon.contains(Point(row[x_col], row[y_col])),
|
42 |
+
axis=1
|
43 |
+
)
|
44 |
+
return df[mask]
|
45 |
+
finally:
|
46 |
+
filter_points.points = []
|
47 |
|
48 |
with gr.Blocks() as demo:
|
49 |
+
gr.Markdown("## 🎯 Çalışan Son Sürüm")
|
50 |
|
51 |
df_state = gr.State()
|
52 |
|