Spaces:
Runtime error
Runtime error
David Wisdom
commited on
Commit
·
f8f9b4e
1
Parent(s):
25fe56a
remove plotly type hints
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ def cluster_lat_lon(df: pd.DataFrame) -> np.ndarray:
|
|
54 |
return clusterer.labels_
|
55 |
|
56 |
|
57 |
-
def plot_example(df: pd.DataFrame, labels: np.ndarray)
|
58 |
"""
|
59 |
DOCSTRING
|
60 |
"""
|
@@ -73,7 +73,7 @@ def plot_example(df: pd.DataFrame, labels: np.ndarray) -> px.Figure:
|
|
73 |
return fig
|
74 |
|
75 |
|
76 |
-
def plot_venice_blvd(df: pd.DataFrame, labels: np.ndarray)
|
77 |
"""
|
78 |
DOCSTRING
|
79 |
"""
|
|
|
54 |
return clusterer.labels_
|
55 |
|
56 |
|
57 |
+
def plot_example(df: pd.DataFrame, labels: np.ndarray):
|
58 |
"""
|
59 |
DOCSTRING
|
60 |
"""
|
|
|
73 |
return fig
|
74 |
|
75 |
|
76 |
+
def plot_venice_blvd(df: pd.DataFrame, labels: np.ndarray):
|
77 |
"""
|
78 |
DOCSTRING
|
79 |
"""
|