Spaces:
Sleeping
Sleeping
harmdevries
commited on
Commit
•
c40fb82
1
Parent(s):
0cf8196
Update app.py
Browse files
app.py
CHANGED
@@ -122,7 +122,7 @@ fig.add_annotation({
|
|
122 |
# Add PII
|
123 |
fig.add_vline(x='2023-10-01', line_width=3, line_dash="dash", line_color="red")
|
124 |
fig.add_annotation({
|
125 |
-
"x": '2023-
|
126 |
"y": fig.layout.yaxis['range'][1],
|
127 |
"yshift": 10,
|
128 |
"text": "Model training",
|
@@ -141,14 +141,14 @@ fig.add_annotation({
|
|
141 |
|
142 |
# Add point of contacts
|
143 |
fig.add_annotation({
|
144 |
-
"x": "2023-
|
145 |
"y": fig.layout.yaxis['range'][1],
|
146 |
"yshift": 10,
|
147 |
"xanchor": "left",
|
148 |
"text": "Contact",
|
149 |
"showarrow": False})
|
150 |
for i, entry in enumerate(df[::-1]):
|
151 |
-
fig.add_annotation(x='2023-
|
152 |
text=entry['Description'],
|
153 |
showarrow=False,
|
154 |
xanchor="left",
|
|
|
122 |
# Add PII
|
123 |
fig.add_vline(x='2023-10-01', line_width=3, line_dash="dash", line_color="red")
|
124 |
fig.add_annotation({
|
125 |
+
"x": '2023-10-01',
|
126 |
"y": fig.layout.yaxis['range'][1],
|
127 |
"yshift": 10,
|
128 |
"text": "Model training",
|
|
|
141 |
|
142 |
# Add point of contacts
|
143 |
fig.add_annotation({
|
144 |
+
"x": "2023-08-25",
|
145 |
"y": fig.layout.yaxis['range'][1],
|
146 |
"yshift": 10,
|
147 |
"xanchor": "left",
|
148 |
"text": "Contact",
|
149 |
"showarrow": False})
|
150 |
for i, entry in enumerate(df[::-1]):
|
151 |
+
fig.add_annotation(x='2023-08-25', y=i,
|
152 |
text=entry['Description'],
|
153 |
showarrow=False,
|
154 |
xanchor="left",
|