Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -75,7 +75,7 @@ def render_graph():
|
|
75 |
st.graphviz_chart(graph.source)
|
76 |
|
77 |
def update_graph():
|
78 |
-
for i in range(
|
79 |
# Update the graph with new inputs randomly
|
80 |
graph.node("📊 Data Collection", label=f"📊 Data Collection\nData {random.randint(0,100)}")
|
81 |
graph.node("🧹 Data Cleaning", label=f"🧹 Data Cleaning\nCleaned Data {random.randint(0,100)}")
|
|
|
75 |
st.graphviz_chart(graph.source)
|
76 |
|
77 |
def update_graph():
|
78 |
+
for i in range(10):
|
79 |
# Update the graph with new inputs randomly
|
80 |
graph.node("📊 Data Collection", label=f"📊 Data Collection\nData {random.randint(0,100)}")
|
81 |
graph.node("🧹 Data Cleaning", label=f"🧹 Data Cleaning\nCleaned Data {random.randint(0,100)}")
|