harmdevries commited on
Commit
0cf8196
1 Parent(s): ed57c26

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -120,12 +120,12 @@ fig.add_annotation({
120
  })
121
 
122
  # Add PII
123
- fig.add_vline(x='2023-03-19', line_width=3, line_dash="dash", line_color="red")
124
  fig.add_annotation({
125
  "x": '2023-03-19',
126
  "y": fig.layout.yaxis['range'][1],
127
  "yshift": 10,
128
- "text": "+ PII redacted",
129
  "showarrow": False,
130
  })
131
 
@@ -141,14 +141,14 @@ fig.add_annotation({
141
 
142
  # Add point of contacts
143
  fig.add_annotation({
144
- "x": "2023-01-01",
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-01-01', y=i,
152
  text=entry['Description'],
153
  showarrow=False,
154
  xanchor="left",
 
120
  })
121
 
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-03-19',
126
  "y": fig.layout.yaxis['range'][1],
127
  "yshift": 10,
128
+ "text": "Model training",
129
  "showarrow": False,
130
  })
131
 
 
141
 
142
  # Add point of contacts
143
  fig.add_annotation({
144
+ "x": "2023-09-01",
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-09-01', y=i,
152
  text=entry['Description'],
153
  showarrow=False,
154
  xanchor="left",