Spaces:
Sleeping
Sleeping
Dacho688
commited on
Commit
·
c4db3fe
1
Parent(s):
f9ea822
Update app.py
Browse files- app/app.py +1 -1
app/app.py
CHANGED
|
@@ -15,7 +15,7 @@ class BokehApp:
|
|
| 15 |
|
| 16 |
# Create a sample plot
|
| 17 |
x = datetime.now()
|
| 18 |
-
y = random.uniform(
|
| 19 |
self.source = ColumnDataSource(data=dict(x=[x], y=[y]))
|
| 20 |
self.label_source = self.source.clone()
|
| 21 |
p = figure(x_axis_type='datetime',
|
|
|
|
| 15 |
|
| 16 |
# Create a sample plot
|
| 17 |
x = datetime.now()
|
| 18 |
+
y = random.uniform(30, 500)
|
| 19 |
self.source = ColumnDataSource(data=dict(x=[x], y=[y]))
|
| 20 |
self.label_source = self.source.clone()
|
| 21 |
p = figure(x_axis_type='datetime',
|