-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquality_questions_html_template.html
776 lines (758 loc) · 42 KB
/
quality_questions_html_template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
<html lang="English">
<head>
<style>table.blueTable {
border: 1px solid #1C6EA4;
background-color: #EEEEEE;
width: 100%;
text-align: center;
border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
table.blueTable tbody td {
font-size: 13px;
}
table.blueTable tr:nth-child(even) {
background: #D0E4F5;
}
table.blueTable thead {
background: #1C6EA4;
background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
border-bottom: 2px solid #444444;
}
table.blueTable thead th {
font-size: 15px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
table.blueTable thead th:first-child {
border-left: none;
}
table.blueTable tfoot td {
font-size: 14px;
}
table.blueTable tfoot .links {
text-align: right;
}
table.blueTable tfoot .links a{
display: inline-block;
background: #1C6EA4;
color: #FFFFFF;
padding: 2px 8px;
border-radius: 5px;
}</style>
</head>
<title>Quality Questions Editable Template</title>
<h1>Project information</h1>
<table class="blueTable">
<TR VALIGN=TOP>
<th style="text-align: center" scope="col"> Project name</th>
<th style="text-align: center" scope="col"> Project description</th>
<th style="text-align: center" scope="col"> Division</th>
</tr>
<tr>
<td> <p id="content" contenteditable>Put the project name here </p></td>
<td> <p id="content" contenteditable>A short summary of what the project does</p></td>
<td> <p id="content" contenteditable>Name of division </p></td>
</tr>
</table>
<h1>Assurance Responsibilities</h1>
<table class="blueTable">
<TR VALIGN=TOP>
<th style="text-align: center" scope="col"> Name of Senior Responsible Owner (SRO)</th>
<th style="text-align: center" scope="col"> Name of Commissioner</th>
<th style="text-align: center" scope="col"> Name of Analyst(s)</th>
<th style="text-align: center" scope="col"> Name of Analytical Assurer(s)</th>
</tr>
<tr>
<td> <p id="content" contenteditable>Enter name here... </p></td>
<td> <p id="content" contenteditable>Enter name here... </p></td>
<td> <p id="content" contenteditable>Enter name here... </p></td>
<td> <p id="content" contenteditable>Enter name here... </p></td>
</tr>
</table>
<h1>Signoff details</h1>
<table class="blueTable">
<TR VALIGN=TOP>
<th style="text-align: center" scope="col"> Date of sign off</th>
<th style="text-align: center" scope="col"> Name of responsible person</th>
<th style="text-align: center" scope="col"> Role of responsible person</th>
<th style="text-align: center" scope="col"> Comments</th>
</tr>
<tr>
<td> <p id="content" contenteditable>Enter date here... </p></td>
<td> <p id="content" contenteditable>Enter name here... </p></td>
<td> <p id="content" contenteditable>Enter role here... </p></td>
<td> <p id="content" contenteditable>Enter notes here... </p></td>
</tr>
</table>
<h1>I. Scoping the Analysis</h1>
<table class="blueTable">
<TR VALIGN=TOP>
<th> </th>
<th style="text-align: center;" scope="col">Quality Question</th>
<th style="text-align: center;" scope="col">Answer</th>
<th style="text-align: center" scope="col"> Answer added by</th>
<th style="text-align: center" scope="col"> Date of answer</th>
<th style="text-align: center" scope="col"> Answer signed off by SRO?</th>
<th style="text-align: center" scope="col"> Next review due on</th>
<th style="text-align: center" scope="col"> Any change since last review?</th>
</tr>
<tr>
<td>Q1</td>
<td>What question does the analysis try to answer?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q2</td>
<td>Why do you need to answer this analysis question?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q3</td>
<td>Which organisational priorities does this analysis address?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q4</td>
<td>If you use a model, is it business critical?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q5</td>
<td>Who needs the answer to the analysis question?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q6</td>
<td>Who do you need to consult to make sure you meet the right user needs?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q7</td>
<td>How will you know you have answered the analysis question correctly?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q8</td>
<td>What is the estimated time and resource required to answer the analysis question (in months and FTE)?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q9</td>
<td>What is the impact if the analysis is not done now?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q10</td>
<td>What is the impact if the analysis is not done correctly?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q11</td>
<td>Name the commissioner, senior responsible owner and analytical assurer of this
analysis?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q12</td>
<td>What tools and resources will you use in production? Are they the best for the job?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q13</td>
<td>Do you have the right internal and external resources and capability to deliver the analysis?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q14</td>
<td>What are the anticipated risks of the analysis? Have you discussed these risks with customers and stakeholders?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q15</td>
<td>Is there a contingency plan prepared if your mitigation plans fail?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q16</td>
<td>Do the data and analysis comply with ethical requirements?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q17</td>
<td>What relevant questions are outside the scope of the analysis?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q18</td>
<td>How will you peer review and assure the analysis?</td>
<td><p id="content" contenteditable>Enter your answer here... </p></td>
<td><p id="content" contenteditable> Enter full name</p></td>
<td><p id="content" contenteditable> Enter date </p></td>
<td><p id="content" contenteditable> Yes/No </p></td>
<td><p id="content" contenteditable> Enter next review date </p></td>
<td><p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q19</td>
<td>Will external experts be involved in development and scrutiny of analysis?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
</table>
<h1>II. Design</h1>
<table class="blueTable">
<TR VALIGN=TOP>
<th> </th>
<th style="text-align: center;" scope="col">Question</th>
<th style="text-align: center;" scope="col">Answer</th>
<th style="text-align: center" scope="col"> Answer added by</th>
<th style="text-align: center" scope="col"> Date of answer</th>
<th style="text-align: center" scope="col"> Answer signed off by SRO?</th>
<th style="text-align: center" scope="col"> Next review due on</th>
<th style="text-align: center" scope="col"> Any change since last review?</th>
</tr>
<tr>
<td>Q20</td>
<td> Is there a simple, plain English description of what the analysis is for and what it does?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q21</td>
<td>Does the analysis have a logic flowchart which explains the end-to-end steps in the workflow?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q22</td>
<td>When do you expect to start and finish each stage of analysis: data collection, processing, quality assurance, analysis and dissemination?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q23</td>
<td>Does any part of the analysis rely on manual processing? Have you considered the cost and benefits of fully automating the process? </td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q24</td>
<td>What happens if team members, reviewers or users find a mistake in the analysis?<br><br>
Do you have a clear and efficient process for addressing issues and preventing them from happening again?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q25</td>
<td>Have you assessed uncertainty?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
</table>
<h1>III. Doing and Checking the Analysis</h1>
<table class="blueTable">
<TR VALIGN=TOP>
<th> </th>
<th style="text-align: center;" scope="col">Question</th>
<th style="text-align: center;" scope="col">Answer</th>
<th style="text-align: center" scope="col"> Answer added by</th>
<th style="text-align: center" scope="col"> Date answer added</th>
<th style="text-align: center" scope="col"> Answer signed off by SRO?</th>
<th style="text-align: center" scope="col"> Next review due on</th>
<th style="text-align: center" scope="col"> Any change since last review?</th>
</tr>
<tr>
<td>Q26</td>
<td>How will the data in the analysis be processed before and during use?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q27</td>
<td> Is the data appropriate given the methods selected?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q28</td>
<td>What are the strengths and limitations of the data you use?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q29</td>
<td> Is there a robust relationship between your team and data providers? Do data providers understand how and why you use their data?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q30</td>
<td>Do you understand how data providers collect, process and quality assure the data you use?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q31</td>
<td>Is there a formal agreement to set out data content, when and how you will get the data? If not, why not?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q32</td>
<td>Do you know what quality checks are carried out on the data before you receive them?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q33</td>
<td>How will you work with your data provider when your data requirements change?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q34</td>
<td> How do you know if your data provider makes a change to their systems or processes which could impact the data you receive or the analysis you produce?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q35</td>
<td>How did you choose the methods for the analysis? How do you know the methods you use are appropriate? </td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q36</td>
<td>Have reasonable alternative methods been explored and rejected for good reasons?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q37</td>
<td>How do you know that your analysis is working correctly?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q38</td>
<td>Can you describe the assumptions of your analysis, when they were made and who made them and signed them off?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q39</td>
<td>How are assumptions validated and assured before you apply them?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q40</td>
<td> How do you measure and report uncertainty in your analysis?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q41</td>
<td> Have you considered the implications of relevant, unquantified uncertainties?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q42</td>
<td>Can you explain the impact of your analysis on downstream processes? Are there risks around these dependencies?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q43</td>
<td>Is all or part of the analysis reliant on a single person?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q44</td>
<td> Is it clear why important decisions about the analysis were made, who made them and when?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q45</td>
<td> If changes need to be made to code or datasets, is it easy to track who made the changes and when and why they were made? </td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr height=33 style='height:25.0pt'>
<td>Q46</td>
<td>Would another analyst be able to reproduce your analysis output or continue the work (without talking to you first)?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q47</td>
<td>Do you use internal peer review to check scripts and code, documentation, implementation of methods, processes and outputs? </td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q48</td>
<td>Is your code and analysis ever peer reviewed by someone outside your team or organisation?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q49</td>
<td>What is your assessment of the quality of your analytical outputs?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q50</td>
<td>How do you assure yourself that the analysis you do is correct?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q51</td>
<td>Do the outputs of your analysis align with similar findings from elsewhere? If not can you explain why?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q52</td>
<td> If you find outliers or unusual trends in the data, what steps do you take to investigate them? </td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
</table>
<h1>IV. Delivery</h1>
<table class="blueTable">
<TR VALIGN=TOP>
<th> </th>
<th style="text-align: center;" scope="col">Question</th>
<th style="text-align: center;" scope="col">Answer</th>
<th style="text-align: center" scope="col"> Answer added by</th>
<th style="text-align: center" scope="col"> Date answer added</th>
<th style="text-align: center" scope="col"> Answer signed off by SRO?</th>
<th style="text-align: center" scope="col"> Next review due on</th>
<th style="text-align: center" scope="col"> Any change since last review?</th>
</tr>
<tr>
<td>Q53</td>
<td>Can you give a clear account of what can and cannot be inferred from the analysis?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q54</td>
<td>Have you assessed the limitations of the data and analysis and set out how they affect the quality and use of the outputs?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q55</td>
<td> Have you sense checked outputs with user groups and stakeholders?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q56</td>
<td>Is uncertainty about data quality, assumptions and methodology clearly communicated to users?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q57</td>
<td> Are the implications of unquantified uncertainties communicated to users?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q58</td>
<td>Is workflow documentation including technical guides and code repositories publicly available?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q59</td>
<td>Does the technical guide and documentation explain how to run the analysis to obtain valid outputs?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q60</td>
<td>Have you fully documented the analysis code to comply with good practice?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
<tr>
<td>Q61</td>
<td>Is there a clear feedback mechanism so users can report back on the suitability of outputs?</td>
<td> <p id="content" contenteditable>Enter your answer here... </p></td>
<td> <p id="content" contenteditable> Enter full name</p></td>
<td> <p id="content" contenteditable> Enter date </p></td>
<td> <p id="content" contenteditable> Yes/No </p></td>
<td> <p id="content" contenteditable> Enter next review date </p></td>
<td> <p id="content" contenteditable> Enter text </p></td>
</tr>
</table>
</html>