-
Notifications
You must be signed in to change notification settings - Fork 0
/
training_5.html
2742 lines (2605 loc) · 108 KB
/
training_5.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
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<title>Data Sharing</title>
<script src="site_libs/header-attrs-2.16/header-attrs.js"></script>
<script src="site_libs/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="site_libs/bootstrap-3.3.5/css/flatly.min.css" rel="stylesheet" />
<script src="site_libs/bootstrap-3.3.5/js/bootstrap.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/html5shiv.min.js"></script>
<script src="site_libs/bootstrap-3.3.5/shim/respond.min.js"></script>
<style>h1 {font-size: 34px;}
h1.title {font-size: 38px;}
h2 {font-size: 30px;}
h3 {font-size: 24px;}
h4 {font-size: 18px;}
h5 {font-size: 16px;}
h6 {font-size: 12px;}
code {color: inherit; background-color: rgba(0, 0, 0, 0.04);}
pre:not([class]) { background-color: white }</style>
<script src="site_libs/jqueryui-1.11.4/jquery-ui.min.js"></script>
<link href="site_libs/tocify-1.9.1/jquery.tocify.css" rel="stylesheet" />
<script src="site_libs/tocify-1.9.1/jquery.tocify.js"></script>
<script src="site_libs/navigation-1.1/tabsets.js"></script>
<link href="site_libs/highlightjs-9.12.0/default.css" rel="stylesheet" />
<script src="site_libs/highlightjs-9.12.0/highlight.js"></script>
<script src="site_libs/kePrint-0.0.1/kePrint.js"></script>
<link href="site_libs/lightable-0.0.1/lightable.css" rel="stylesheet" />
<script defer data-domain="cghlewis.github.io/mpsi-data-training" src="https://plausible.io/js/plausible.js"></script>
<style type="text/css">
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;}
div.column{display: inline-block; vertical-align: top; width: 50%;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
</style>
<style type="text/css">code{white-space: pre;}</style>
<script type="text/javascript">
if (window.hljs) {
hljs.configure({languages: []});
hljs.initHighlightingOnLoad();
if (document.readyState && document.readyState === "complete") {
window.setTimeout(function() { hljs.initHighlighting(); }, 0);
}
}
</script>
<style type = "text/css">
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
img {
max-width:100%;
}
.tabbed-pane {
padding-top: 12px;
}
.html-widget {
margin-bottom: 20px;
}
button.code-folding-btn:focus {
outline: none;
}
summary {
display: list-item;
}
details > summary > p:only-child {
display: inline;
}
pre code {
padding: 0;
}
</style>
<style type="text/css">
.dropdown-submenu {
position: relative;
}
.dropdown-submenu>.dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after {
display: block;
content: " ";
float: right;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 5px 0 5px 5px;
border-left-color: #cccccc;
margin-top: 5px;
margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
border-left-color: #adb5bd;
}
.dropdown-submenu.pull-left {
float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
left: -100%;
margin-left: 10px;
border-radius: 6px 0 6px 6px;
}
</style>
<script type="text/javascript">
// manage active state of menu based on current page
$(document).ready(function () {
// active menu anchor
href = window.location.pathname
href = href.substr(href.lastIndexOf('/') + 1)
if (href === "")
href = "index.html";
var menuAnchor = $('a[href="' + href + '"]');
// mark the anchor link active (and if it's in a dropdown, also mark that active)
var dropdown = menuAnchor.closest('li.dropdown');
if (window.bootstrap) { // Bootstrap 4+
menuAnchor.addClass('active');
dropdown.find('> .dropdown-toggle').addClass('active');
} else { // Bootstrap 3
menuAnchor.parent().addClass('active');
dropdown.addClass('active');
}
// Navbar adjustments
var navHeight = $(".navbar").first().height() + 15;
var style = document.createElement('style');
var pt = "padding-top: " + navHeight + "px; ";
var mt = "margin-top: -" + navHeight + "px; ";
var css = "";
// offset scroll position for anchor links (for fixed navbar)
for (var i = 1; i <= 6; i++) {
css += ".section h" + i + "{ " + pt + mt + "}\n";
}
style.innerHTML = "body {" + pt + "padding-bottom: 40px; }\n" + css;
document.head.appendChild(style);
});
</script>
<!-- tabsets -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
}
</style>
<!-- code folding -->
<style type="text/css">
#TOC {
margin: 25px 0px 20px 0px;
}
@media (max-width: 768px) {
#TOC {
position: relative;
width: 100%;
}
}
@media print {
.toc-content {
/* see https://github.com/w3c/csswg-drafts/issues/4434 */
float: right;
}
}
.toc-content {
padding-left: 30px;
padding-right: 40px;
}
div.main-container {
max-width: 1200px;
}
div.tocify {
width: 20%;
max-width: 260px;
max-height: 85%;
}
@media (min-width: 768px) and (max-width: 991px) {
div.tocify {
width: 25%;
}
}
@media (max-width: 767px) {
div.tocify {
width: 100%;
max-width: none;
}
}
.tocify ul, .tocify li {
line-height: 20px;
}
.tocify-subheader .tocify-item {
font-size: 0.90em;
}
.tocify .list-group-item {
border-radius: 0px;
}
</style>
</head>
<body>
<div class="container-fluid main-container">
<!-- setup 3col/9col grid for toc_float and main content -->
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-3">
<div id="TOC" class="tocify">
</div>
</div>
<div class="toc-content col-xs-12 col-sm-8 col-md-9">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbar" data-bs-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="index.html">About</a>
</li>
<li>
<a href="training_00.html">Data Management</a>
</li>
<li>
<a href="training_0.html">Project Management</a>
</li>
<li>
<a href="training_1.html">Module 1</a>
</li>
<li>
<a href="training_2.html">Module 2</a>
</li>
<li>
<a href="training_3.html">Module 3</a>
</li>
<li>
<a href="training_4.html">Module 4</a>
</li>
<li>
<a href="training_5.html">Module 5</a>
</li>
<li>
<a href="training_6.html">Module 6</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<div id="header">
<h1 class="title toc-ignore">Data Sharing</h1>
</div>
<p><br></p>
<hr />
<div id="overview" class="section level2">
<h2>Overview</h2>
<hr />
<p>Data sharing has become one of the most discussed areas around data
management. With the growing number of funders requesting a data sharing
plan (i.e. NIH), more people want to know how and why they should share
their study data. In a 2019 <a
href="https://journals.library.ualberta.ca/istl/index.php/istl/article/view/12">paper</a>,
Pasek and Mayer found that data curation and re-use was cited as the
area most needing improvement by graduate students across two
universities. And in a way data sharing is a great jumping off point for
many people to think about data management. With an end goal in mind,
researchers can start to think about what structures they need to put in
place to curate data that will be acceptable for data sharing.</p>
<hr />
</div>
<div id="what-is-data-sharing" class="section level2">
<h2>What is Data Sharing</h2>
<hr />
<p>While data sharing may sometimes encompass things such as sharing
correlation matrices, summary tables, or study results, that is not what
this module is about. This module is about sharing raw, item and case
level, primary data collected as part of a research study. It can also
include extant data collected and added to data that you collect. Beyond
that overview, what types of data you share, how you share, and where
you share, may depend more on things like your funder, your budget, your
project/participants, and your field. However, this module will provide
many recommendations for what and how to share your data that will lead
to the most benefits for you, your project, and your field.</p>
<hr />
</div>
<div id="share" class="section level2">
<h2>Why Share Data?</h2>
<hr />
<div id="ten-reasons" class="section level3">
<h3>Ten Reasons</h3>
<p>There are many reasons to consider sharing your research study data.
Ten compelling reasons are listed below.</p>
<ol style="list-style-type: decimal">
<li>Required by Funder</li>
</ol>
<p>There are many reasons to share data and the number one reason may be
that it is required by your funder. Almost all funders that education
researchers work with now require data sharing in some form as part of
their data management plan and the requirements are only getting more
explicit and serious over time as agencies are better understanding the
consequences of not sharing data and the benefits of sharing.</p>
<ol start="2" style="list-style-type: decimal">
<li>Engage in Open Science</li>
</ol>
<p>While this term can be a catch all for many things, what I mean here
is that sharing data allows researchers to review each others findings.
This includes confirming and challenging the findings of others, (<a
href="https://ies.ed.gov/funding/pdf/EDPlanPolicyDevelopmentGuidanceforPublicAccess.pdf">IES</a>).
And through this process we enhance scientific rigor and
reproducibility. “When a result can be reproduced by multiple
scientists, it validates the original results and readiness to progress
to the next phase of research”, (<a
href="https://www.nih.gov/research-training/rigor-reproducibility">NIH</a>).</p>
<ol start="3" style="list-style-type: decimal">
<li>Accelerate Discovery</li>
</ol>
<p>This is a reason mentioned in <a
href="https://grants.nih.gov/grants/guide/notice-files/NOT-OD-21-013.html">NIH’s
documentation</a>. Sharing data promotes reuse for future studies by
providing access to high-value datasets. This allows researchers to
develop and answer questions to pressing education issues in less time
than if they had to collect new original data.</p>
<ol start="4" style="list-style-type: decimal">
<li>Promote Collaboration</li>
</ol>
<p>Sharing your data provides the opportunity for you to collaborate
with new and existing collaborators to develop new research questions
and studies with the data you have shared.</p>
<ol start="5" style="list-style-type: decimal">
<li>Combine datasets to gain new insights</li>
</ol>
<p>This is an idea mentioned in <a
href="https://ies.ed.gov/funding/datasharing_policy.asp">IES
materials</a>. Similar to collaboration, sharing your data provides the
opportunity to combine datasets across studies, allowing new
discoveries. Combining datasets may also help those who have datasets
with low-statistical power, and without combining datasets, are unable
to answer questions of interest, (<a
href="https://edarxiv.org/2x3cu/">Logan, Hart &
Schatschneider</a>).</p>
<ol start="6" style="list-style-type: decimal">
<li>Save resources</li>
</ol>
<p>Similar to accelerate discovery, allowing other researchers to use
your data, rather than collect new original data saves time, energy and
money. Publicly archiving your data allows others to see what has
already been collected, reducing duplicate data collection efforts.</p>
<ol start="7" style="list-style-type: decimal">
<li>Increase citation rate</li>
</ol>
<p>Sharing your dataset with an identifier such as persistent unique
identifier (ex: DOI), allows you and others to cite your data in
publications. You can track these citations to see the reach of your
work.</p>
<ol start="8" style="list-style-type: decimal">
<li>Support equitable access to high-quality datasets</li>
</ol>
<p>Similar to save resources, sharing data is a means to provide
equitable access of high-quality datasets for early career scholars,
students, and underrepresented researchers, (<a
href="https://edarxiv.org/2x3cu/">Logan, Hart & Schatschneider</a>).
Not all researchers have the budget, staff, or connections to collect
high-quality datasets, but sharing your datasets freely and openly
allows everyone the opportunity to work with these data. Sharing data
also serves as an important resource for training future
researchers.</p>
<ol start="9" style="list-style-type: decimal">
<li>Diversity of thought</li>
</ol>
<p>Sharing data encourages diversity of analysis and opinions. Other
researchers may have novel questions they can answer with your data that
you have never considered.</p>
<ol start="10" style="list-style-type: decimal">
<li>Transparency leads to better data management</li>
</ol>
<p>One unintended consequence of data sharing may be that it promotes
good data management practices. Knowing that you will eventually be
sharing your data and documentation with others outside of your team may
motivate researchers to think hard about how to organize their data
management practices in a way that will produce data that they trust to
share with the outside world.</p>
<p>Resources:</p>
<p>📑 <a
href="https://venngage.net/ps/Uz65vsS6hI/new-10-benefits-of-data-sharing">Ashley
Edwards 10 Benefits of Data Sharing</a><br />
📑 <a href="https://edarxiv.org/2x3cu/">Data Sharing in Education
Science</a><br />
📑 <a href="http://www.withinandbetweenpod.com/">Within and Between
podcast: The what, why, how, and hesitations of data sharing</a></p>
<hr />
</div>
</div>
<div id="principles" class="section level2">
<h2>Principles</h2>
<hr />
<div id="fair" class="section level3">
<h3>FAIR</h3>
<p>As a reminder of what we covered in the <a
href="https://cghlewis.github.io/mpsi-data-training/training_00.html">Data
Management Module</a>, in 2016 the <a
href="https://www.go-fair.org/fair-principles/">FAIR Principles</a> were
published in Scientific Data, outlining 4 guiding principles for
scientific data management and stewardship. These principles should be
referred to when choosing when, where and how to share your research
data.</p>
<p>F: Findable</p>
<p>All data should be findable through a persistent identifier and have
good data documentation, aka metadata. As we move towards automation in
our work and life, the need for machine-readable metadata becomes more
prevalent for automatic discovery of data.</p>
<p>A: Accessible</p>
<p>You data is accessible if humans can access your data. This can mean
your data is available in a repository or through a request system.</p>
<p>I: Interoperable</p>
<p>Use standardized vocabularies as well as formats. Both humans and
machines should be able to read and interpret your data. Software
licenses should not pose a barrier to usage. Data should be available in
open formats that can be accessed by any software such as .csv, .txt,
.dat, etc. Furthermore, thorough data documentation should accompany
data.</p>
<p>R: Reusable</p>
<p>Your metadata should provide information on the broad context of your
project as well as your data collection to allow for accurate use of
your data. You should also have clear licensing for data use.</p>
<p>Additional resources:</p>
<p>📑 <a
href="https://podcasts.apple.com/us/podcast/episode-4-the-what-why-how-and-hesitations-of-data-sharing/id1517310439?i=1000483521281">Within
& Between podcast</a><br />
📑 <a
href="https://journals.sagepub.com/doi/10.1177/2515245917746500">Practical
Solutions for Sharing Data and Materials from Psychological
Research</a></p>
<hr />
</div>
</div>
<div id="planning-for-data-sharing" class="section level2">
<h2>Planning for Data Sharing</h2>
<hr />
<p>While Data Sharing may often happen at the end of a project, planning
for data sharing should happen at the beginning. For many funders,
you’ll be required to write a brief overview of your data sharing plan
in your data management plan (DMP) as part of you grant proposal, and
will also be allowed to submit DMP associated costs in your grant
application budget requests. DMPs are often a supplement/appendix to
your grant application and restricted to anywhere from 1-2 pages (NIH,
NIJ, and NSF) to a 5 page maximum (IES). For most funders these DMPs are
not part of the scoring process, but they are reviewed by a panel or
program officer. Some funders may provide feedback and/or ask for
revisions if they believe your plan and/or your budget/associated costs
are not adequate.</p>
<p>What to include in a DMP varies some across funding agencies.
<strong>While you should check each funding agency’s site for their
specific DMP requirements</strong>, this comparison table provides an
overview of 11 common categories covered in a data management plan and
whether four large funding agencies ask applicants to address these
categories in their data management plans, as well as any additional
guidance they provide for each category.</p>
<p><strong>Categories to Include in a Data Management Plan and Guidance
Provided by Funder</strong></p>
<div
style="border: 1px solid #ddd; padding: 0px; overflow-y: scroll; height:800px; ">
<table class="table table-bordered" style="margin-left: auto; margin-right: auto;">
<thead>
<tr>
<th style="text-align:left;color: white !important;background-color: #2f4a60 !important;position: sticky; top:0; background-color: #FFFFFF;">
Content Category
</th>
<th style="text-align:center;color: white !important;background-color: #2f4a60 !important;position: sticky; top:0; background-color: #FFFFFF;">
IES - Data Management Plan
</th>
<th style="text-align:center;color: white !important;background-color: #2f4a60 !important;position: sticky; top:0; background-color: #FFFFFF;">
NIH - Data Management and Sharing Plan
</th>
<th style="text-align:center;color: white !important;background-color: #2f4a60 !important;position: sticky; top:0; background-color: #FFFFFF;">
NIJ - Data Archiving Plan
</th>
<th style="text-align:center;color: white !important;background-color: #2f4a60 !important;position: sticky; top:0; background-color: #FFFFFF;">
NSF - Data Management Plan
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Roles and Responsibilities
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
<p>What are staff roles in mgmt and long-term preservation of data?</p>
<p>Who ensures accessibility, reliability, and quality of data?</p>
Is there a plan if a core project member leaves the project or
institution?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Staff responsible for data creation and management should be
identified and their duties described.</p>
Identify any hardware/software required for managing data.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Type of Data to be Shared
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
<p>How is data captured (surveys, assessments, observations)?</p>
<p>Will data be item-level and summary scores?</p>
<p>Will you share raw datasets and clean Datasets?</p>
What are the expected # of files? Expected # of participants in files?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Full item/case level dataset, not summary statistics or tables are
expected. This includes primary data collected through the grant, as
well as data created by linking to extant data sources.</p>
<p>Share, at a minimum, the data underlying any peer-reviewed
publication, this includes “final analytic measures as well as the
source measures used to construct them”. However, researchers are
encouraged to share any data that will “inform the field more
broadly”.</p>
Providing access to final cleaned data is required. Including raw data
and derived variables is optional.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>All primary data collected through the grant regardless of whether
the data are used to support scholarly publications.</p>
Data should be of sufficient quality to validate and replicate research
findings.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>All cleaned data collected under the grant award.</p>
Data should include all variables used to produce analysis, tables, and
descriptive information provided in the final report (ex: computed,
derived, and weight variables - if applicable).
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
Share primary data collected during the course of the grant.
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Format of Data
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
<p>Electronic?</p>
<p>Nonproprietary software format (ex: csv)?</p>
<p>More than one format (.sav and .csv)?</p>
Any related tools needed to manipulate shared data?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Must be an electronic format.</p>
<p>Advised to provide data in multiple formats (one being a
non-proprietary format).</p>
Identify any hardware/software required for sharing data.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Datasets should be provided in formats consistent with those used in
the community that the repository serves.</p>
Preferred non-proprietary formats.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>For Quantitative: SPSS preferred, Stata and SAS are acceptable.
Embedded variable and value labels, and missing values assigned.</p>
For Qualitative: txt, rtf, Microsoft Word or PDF, Excel, databases
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Documentation
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
<p>What metadata will you create (data dictionaries, codebooks)?</p>
<p>Consider project level, dataset level and variable level
documentation.</p>
<p>What format will it be in (xml, csv, pdf)?</p>
What other documentation do you plan to include when sharing data (code,
data collection instruments, protocols)?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Provide sufficient documentation to support responsible use by other
researchers.</p>
<p>“Information can be embedded directly into the file or can be
included with it as a separate file (e.g., a ReadMe.txt file, a .pdf,
etc.).”</p>
“Documentation should include a summary of the purpose of the data
collection, methodology and procedures used to collect the data, timing
of the data collection, as well as details of the data codes, definition
of variables, variable field locations, and frequencies.”
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
Examples include: Methodology and procedures used to collect the data,
Data labels, Definitions of variables, Any other information necessary
to reproduce and understand the data
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Documentation should include: IRB approved protocol, Final project
report/journal article, IRB approved consent (if applicable), Data use
agreements (if applicable, Description of file formats, data anomalies,
frequently used terms/acronyms, instructions for merging files,
documentation on decisions, guidance for using weights (if applicable),
citations, contact information, codebooks if variable and value labels
are not embedded in the data files, syntax files containing statistical
programming code as well as data manipulation code.</p>
PDF format preferred: Word, RTF and ASCII accepted
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Standards
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
Any data/documentation standards being used (ex: DDI, International
standard)?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
“There are emerging metadata standards in many fields, but currently
there is not a set of standards in education research.”
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
“While many scientific fields have developed and adopted common data
standards, others have not. In such cases, the Plan may indicate that no
consensus data standards exist for the scientific data and metadata to
be generated, preserved, and shared.”
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
“DMPs submitted to EHR should be appropriate to the data being generated
and reflect the procedures, standards and best practices developed by
the communities of practice in the area of research being proposed.”
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Method of Data Sharing
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
<p>How will you share data (institutional repository, data archive, PI
website)?</p>
<p>Will data be restricted and is a data enclave required?</p>
Is a data agreement required?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Highly encouraged to deposit data in publicly accessible
repositories. However, other methods may be used including the PI taking
responsibilitiy for data sharing or some combination of repository and
PI data sharing.</p>
Datasets should be discoverable and citable (ex: metadata and DOI).
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Strongly encourage the use of established repositories to the extent
possible, specifically, domain-specific repositories where possible.</p>
<p>Data should be findable and identifiable (ex: via a persistent unique
identifier or other standard indexing tools).</p>
While data kept by the researcher or institution, provided on request is
not preferred, NIH recognizes and respects that many communities (ex:
AI/AN communities) may want to manage, preserve and share their own
data.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>In most cases, the NIJ requires grantees to deposit their data in the
National Archive of Criminal Justice Data (NACJD), which is hosted by
ICPSR.</p>
If this is not the appropriate repository for the datasets, the data
archiving plan should include submission of study level information and
link to data location.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
“If data or products are to be preserved by a third party, please refer
to their preservation plans if available.”
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Circumstances preventing sharing
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
<p>Do you have any data covered by FERPA/HIPAA that doesn’t allow data
sharing?</p>
<p>Do you work with any partners that do not allow you to share data
(ex: School districts, Tribal regulations)?</p>
Are you working with proprietary data?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>“Specify appropriate restrictions on access to and usage of the data
to ensure protection of human subjects while not unduly restricting
access to the data.”</p>
If a DMP states data cannot be shared, researchers must provide a
compelling rationale.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Will there be any restrictions on data collected from human
subjects?</p>
<p>“Any restrictions imposed by federal, Tribal, or state laws,
regulations, or policies, or existing or anticipated agreements.”</p>
Any limitations should be communicated to both the data repository as
well as communicated in the Data Management and Sharing Plan for review.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
“Unless otherwise specified in writing by the NIJ grant manager, as
authorized by the appropriate NIJ authority, data submission is required
for all research, development, and evaluation awards, and the
requirement may not be unilaterally modified or waived.”
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Privacy and rights of participants
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #7da1bf !important;">
<p>How will you maintain participant confidentiality during your project
and when data is shared, prevent disclosure of PII?</p>
Did participants sign informed consent? Did the consent communicate how
participant data are expected to be used and shared?
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
<p>Protect confidentiality in final data and follow rules in accordance
with IRB and any state/federal laws and regulations.</p>
<p>Proxy IDs may be used to protect direct disclosure of participants in
data, but means of indirect exposure should be identified as well (ex:
small numbers, sample characteristics) and remedies provided.</p>
Consent forms and IRB approvals should reference future data sharing so
that participants, schools, and other participating organizations are
made aware of conditions that will be put in place to protect privacy
prior to any data collection.
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
Describe informed consent as well as how you will protect privacy and
confidentiality “consistent with applicable federal, Tribal, state, and
local laws, regulations, and policies”
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
“All direct identifiers to be removed and all indirect identifiers to be
recoded to prohibit re-identification.”
</td>
<td style="text-align:center;width: 3in; background-color: #7da1bf !important;">
“Access and sharing of data and products should reflect appropriate
protections for IRB, privacy, confidentiality, data security, and
intellectual property.”
</td>
</tr>
<tr>
<td style="text-align:left;width: 3in; background-color: #b0d2da !important;">
Data Security
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
NO
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES
</td>
<td style="text-align:center;width: 3in; background-color: #b0d2da !important;">
YES