awacke1 commited on
Commit
047b770
·
1 Parent(s): 4c28877

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(60):
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)}")