Spaces:
Runtime error
Runtime error
File size: 249 Bytes
63ba880 |
1 2 3 4 5 6 7 |
import random
from streamlit_d3_demo import d3_line
def generate_random_data(x_r, y_r):
return list(zip(range(x_r), [random.randint(0, y_r) for _ in range(x_r)]))
d3_line(generate_random_data(20, 500), circle_radius=15, circle_color="#6495ed") |