-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.qmd
4169 lines (3840 loc) · 259 KB
/
index.qmd
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
---
title: "Same data, different analysts: variation in effect sizes due to analytical decisions in ecology and evolutionary biology."
abstract: |
Although variation in effect sizes and predicted values among studies of similar phenomena is inevitable, such variation far exceeds what might be produced by sampling error alone. One possible explanation for variation among results is differences among researchers in the decisions they make regarding statistical analyses. A growing array of studies has explored this analytical variability in different fields and has found substantial variability among results despite analysts having the same data and research question. Many of these studies have been in the social sciences, but one small ‘many analyst’ study found similar variability in ecology. We expanded the scope of this prior work by implementing a large-scale empirical exploration of the variation in effect sizes and model predictions generated by the analytical decisions of different researchers in ecology and evolutionary biology. We used two unpublished datasets, one from evolutionary ecology (blue tit, *Cyanistes caeruleus*, to compare sibling number and nestling growth) and one from conservation ecology (*Eucalyptus*, to compare grass cover and tree seedling recruitment), and the project leaders recruited 174 analyst teams, comprising 246 analysts, to investigate the answers to prespecified research questions. Analyses conducted by these teams yielded 141 usable effects (compatible with our meta-analyses and all necessary information provided) for the blue tit dataset, and 85 usable effects for the *Eucalyptus* dataset. We found substantial heterogeneity among results for both datasets, although the patterns of variation differed between them. For the blue tit analyses, the average effect was convincingly negative, with less growth for nestlings living with more siblings, but there was near continuous variation in effect size from large negative effects to effects near zero, and even effects crossing the traditional threshold of statistical significance in the opposite direction. In contrast, the average relationship between grass cover and *Eucalyptus* seedling number was only slightly negative and not convincingly different from zero, and most effects ranged from weakly negative to weakly positive, with about a third of effects crossing the traditional threshold of significance in one direction or the other. However, there were also several striking outliers in the *Eucalyptus* dataset, with effects far from zero. For both datasets, we found substantial variation in the variable selection and random effects structures among analyses, as well as in the ratings of the analytical methods by peer reviewers, but we found no strong relationship between any of these and deviation from the meta-analytic mean. In other words, analyses with results that were far from the mean were no more or less likely to have dissimilar variable sets, use random effects in their models, or receive poor peer reviews than those analyses that found results that were close to the mean. The existence of substantial variability among analysis outcomes raises important questions about how ecologists and evolutionary biologists should interpret published results, and how they should conduct analyses in the future.
authors:
- name: "Elliot Gould"
orcid: "0000-0002-6585-538X"
affiliation:
- name: The University of Melbourne
department: School of Agriculture Food and Ecosystem Sciences
roles:
- Software
- Investigation
- Manuscript Writing
- name: "Hannah S. Fraser"
orcid: "0000-0003-2443-4463"
affiliation:
- name: The University of Melbourne
department: School of Historical and Philosophical Studies
roles:
- Software
- Investigation
- Manuscript Writing
- name: "Timothy H. Parker"
email: "[email protected]"
orcid: "0000-0003-2995-5284"
attributes:
corresponding: true
roles:
- Investigation
- Manuscript Writing
affiliation:
- name: Whitman College
department: Department of Biology
- name: "Shinichi Nakagawa"
orcid: "0000-0002-7765-5182"
affiliation:
- name: The University of New South Wales
department: School of Biological, Earth & Environmental Sciences
roles:
- Software
- Investigation
- Manuscript Writing
- name: "Simon C. Griffith"
orcid: "0000-0001-7612-4999"
affiliation:
- name: Macquarie University
department: chool of Natural Sciences
roles:
- Manuscript Writing
- name: "Peter A. Vesk"
orcid: "0000-0003-2008-7062"
affiliation:
- name: The University of Melbourne
department: School of Biological, Earth & Environmental Sciences
roles:
- Manuscript Writing
- name: "Fiona Fidler"
orcid: "0000-0002-2700-2562"
affiliation:
- name: The University of Melbourne
department: School of Historical and Philosophical Studies
roles:
- Manuscript Writing
- name: "Daniel G. Hamilton"
orcid: "0000-0001-8104-474X"
affiliation:
- name: "The University of Melbourne"
department: "School of BioSciences"
- name: "Robin N Abbey-Lee"
affiliation:
- name: "Länsstyrelsen Östergötland"
department: ""
- name: "Jessica K. Abbott"
orcid: "0000-0002-8743-2089"
affiliation:
- name: "Lund University"
department: "Biology Department"
- name: "Luis A. Aguirre"
orcid: "0000-0001-9796-9755"
affiliation:
- name: "University of Massachusetts"
department: "Department of Biology"
- name: "Carles Alcaraz"
orcid: "0000-0002-2147-4796"
affiliation:
- name: "IRTA"
department: "Marine and Continental Waters"
- name: "Irith Aloni"
orcid: "0000-0002-7777-3365"
affiliation:
- name: "Ben Gurion University of the Negev"
department: "Dept. of Life Sciences"
- name: "Drew Altschul"
orcid: "0000-0001-7053-4209"
affiliation:
- name: "The University of Edinburgh"
department: "Department of Psychology"
- name: "Kunal Arekar"
orcid: "0000-0003-1060-5911"
affiliation:
- name: "Indian Institute of Science"
department: "Centre for Ecological Sciences"
- name: "Jeff W. Atkins"
orcid: "0000-0002-2295-3131"
affiliation:
- name: "USDA Forest Service"
department: "Southern Research Station"
- name: "Joe Atkinson"
orcid: "0000-0001-9232-4421"
affiliation:
- name: "Aarhus University"
department: "Center for Ecological Dynamics in a Novel Biosphere (ECONOVO), Department of Biology"
- name: "Christopher M. Baker"
orcid: "0000-0001-9449-3632"
affiliation:
- name: "The University of Melbourne"
department: "School of Mathematics and Statistics"
- name: "Meghan Barrett"
affiliation:
- name: "Indiana University Purdue University Indianapolis"
department: "Biology"
- name: "Kristian Bell"
orcid: "0000-0002-1857-6257"
affiliation:
- name: "Deakin University"
department: "School of Life and Environmental Sciences"
- name: "Suleiman Kehinde Bello"
orcid: "0000-0001-6718-9256"
affiliation:
- name: "King Abdulaziz University"
department: "Department of Arid Land Agriculture"
- name: "Iván Beltrán"
orcid: "0000-0003-4439-8391"
affiliation:
- name: "Macquarie University"
department: "Department of Biological Sciences"
- name: "Bernd J. Berauer"
orcid: "0000-0002-9472-1532"
affiliation:
- name: "University of Hohenheim, Institute of Landscape and Plant Ecology"
department: "Department of Plant Ecology"
- name: "Michael Grant Bertram"
orcid: "0000-0001-5320-8444"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Wildlife, Fish, and Environmental Studies"
- name: "Peter D. Billman"
orcid: "0000-0002-4072-4965"
affiliation:
- name: "University of Connecticut"
department: "Department of Ecology and Evolutionary Biology"
- name: "Charlie K Blake"
orcid: "0000-0003-4649-3472"
affiliation:
- name: "Southern Illinois University Edwardsville"
department: "STEM Center"
- name: "Shannon Blake"
affiliation:
- name: "University of Guelph"
department: ""
- name: "Louis Bliard"
orcid: "0000-0002-2349-8513"
affiliation:
- name: "University of Zurich"
department: "Department of Evolutionary Biology and Environmental Studies"
- name: "Andrea Bonisoli-Alquati"
orcid: "0000-0002-9255-7556"
affiliation:
- name: "California State Polytechnic University, Pomona"
department: "Department of Biological Sciences"
- name: "Timothée Bonnet"
orcid: "0000-0001-7186-5288"
affiliation:
- name: "UMR 7372 Université de la Rochelle - Centre National de la Recherche Scientifique"
department: "Centre d'Études Biologiques de Chizé"
- name: "Camille Nina Marion Bordes"
orcid: "0000-0002-3561-2811"
affiliation:
- name: "Bar Ilan University"
department: "Faculty of Life Sciences"
- name: "Aneesh P. H. Bose"
orcid: "0000-0001-5716-0097"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Wildlife, Fish, and Environmental Studies"
- name: "Thomas Botterill-James"
orcid: "0000-0002-6186-5871"
affiliation:
- name: "University of Tasmania"
department: "School of Natural Sciences"
- name: "Melissa Anna Boyd"
orcid: "0000-0003-2681-8567"
affiliation:
- name: "Whitebark Institute"
department: ""
- name: "Sarah A. Boyle"
orcid: "0000-0001-9498-6787"
affiliation:
- name: "Rhodes College"
department: "Department of Biology"
- name: "Tom Bradfer-Lawrence"
orcid: "0000-0001-6045-4360"
affiliation:
- name: "RSPB"
department: "Centre for Conservation Science"
- name: "Jennifer Bradham"
orcid: ""
affiliation:
- name: "Wofford College"
department: "Environmental Studies"
- name: "Jack A Brand"
orcid: "0000-0003-3312-941X"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Wildlife, Fish and Environmental Studies"
- name: "Martin I. Brengdahl"
orcid: "0000-0002-1052-7274"
affiliation:
- name: "Linköping University"
department: "IFM Biology"
- name: "Martin Bulla"
orcid: "0000-0002-1328-1927"
affiliation:
- name: "Czech University of Life Sciences Prague"
department: "Faculty of Environmental Sciences"
- name: "Luc Bussière"
orcid: "0000-0001-8937-8381"
affiliation:
- name: "University of Gothenburg"
department: "Biological and Environmental Sciences & Gothenburg Global Biodiversity Centre"
- name: "Ettore Camerlenghi"
orcid: "0000-0002-6203-069X"
affiliation:
- name: "Monash University"
department: "School of Biological Sciences"
- name: "Sara E. Campbell"
orcid: "0000-0001-7195-8898"
affiliation:
- name: "University of Tennessee Knoxville"
department: "Ecology and Evolutionary Biology"
- name: "Leonardo L F Campos"
orcid: "0000-0002-0186-8552"
affiliation:
- name: "Universidade Federal de Santa Catarina"
department: "Departamento de Ecologia e Zoologia"
- name: "Anthony Caravaggi"
orcid: "0000-0002-1763-8970"
affiliation:
- name: "University of South Wales"
department: "School of Biological and Forensic Sciences"
- name: "Pedro Cardoso"
orcid: "0000-0001-8119-9960"
affiliation:
- name: "Faculdade de Ciências, Universidade de Lisboa"
department: "Centre for Ecology, Evolution and Environmental Changes (cE3c) & CHANGE - Global Change and Sustainability Institute"
- name: "Charles J.W. Carroll"
affiliation:
- name: "Colorado State University"
department: "Forest and Rangeland Stewardship"
- name: "Therese A. Catanach"
orcid: "0000-0003-3850-1196"
affiliation:
- name: "Academy of Natural Sciences of Drexel University"
department: "Department of Ornithology"
- name: "Xuan Chen"
orcid: "0000-0002-9499-0054"
affiliation:
- name: "Salisbury University"
department: "Department of Biological Sciences"
- name: "Heung Ying Janet Chik"
orcid: "0000-0003-4646-4444"
affiliation:
- name: "University of Groningen"
department: "Groningen Institute for Evolutionary Life Sciences"
- name: "Emily Sarah Choy"
orcid: " 0000-0002-4703-4318"
affiliation:
- name: "McMaster University"
department: "Department of Biology"
- name: "Alec Philip Christie"
orcid: "0000-0002-8465-8410"
affiliation:
- name: "University of Cambridge "
department: "Department of Zoology"
- name: "Angela Chuang"
orcid: "0000-0001-6847-5115"
affiliation:
- name: "University of Florida"
department: "Entomology and Nematology"
- name: "Amanda J. Chunco"
orcid: "0000-0002-8265-327X"
affiliation:
- name: "Elon University"
department: "Environmental Studies"
- name: "Bethany L Clark"
orcid: "0000-0001-5803-7744"
affiliation:
- name: "BirdLife International"
department: ""
- name: "Andrea Contina"
orcid: "0000-0002-0484-6711"
affiliation:
- name: "The University of Texas Rio Grande Valley"
department: "School of Integrative Biological and Chemical Sciences"
- name: "Garth A Covernton"
orcid: "0000-0003-3814-4918"
affiliation:
- name: "University of Toronto"
department: "Department of Ecology and Evolutionary Biology"
- name: "Murray P. Cox"
orcid: "0000-0003-1936-0236"
affiliation:
- name: "University of Auckland"
department: "Department of Statistics"
- name: "Kimberly A. Cressman"
affiliation:
- name: "Catbird Stats, LLC"
department: ""
- name: "Marco Crotti"
orcid: "0000-0002-8619-7988"
affiliation:
- name: "University of Glasgow"
department: "School of Biodiversity, One Health & Veterinary Medicine"
- name: "Connor Davidson Crouch"
orcid: "0000-0003-0353-5820"
affiliation:
- name: "Northern Arizona University"
department: "School of Forestry"
- name: "Pietro B. D'Amelio"
orcid: "0000-0002-4095-6088"
affiliation:
- name: "Max Planck Institute for Biological Intelligence"
department: "Department of Behavioural Neurobiology"
- name: "Alexandra Allison de Sousa"
orcid: "0000-0003-2379-3894"
affiliation:
- name: "Bath Spa University"
department: "School of Sciences: Center for Health and Cognition"
- name: "Timm Fabian Döbert"
orcid: "0000-0002-1601-8665"
affiliation:
- name: "University of Alberta"
department: "Department of Biological Sciences"
- name: "Ralph Dobler"
affiliation:
- name: "TU Dresden"
department: "Applied Zoology"
- name: "Adam J Dobson"
orcid: "0000-0003-1541-927X"
affiliation:
- name: "University of Glasgow"
department: "School of Molecular Biosciences, College of Medical Veterinary & Life Sciences,"
- name: "Tim S. Doherty"
affiliation:
- name: "The University of Sydney"
department: "School of Life and Environmental Sciences"
- name: "Szymon Marian Drobniak"
orcid: "0000-0001-8101-6247"
affiliation:
- name: "Jagiellonian University"
department: "Institute of Environmental Sciences"
- name: "Alexandra Grace Duffy"
orcid: "0000-0002-7069-5384"
affiliation:
- name: "Brigham Young University"
department: "Biology Department"
- name: "Alison B. Duncan"
orcid: "0000-0002-6499-2913"
affiliation:
- name: "University of Montpellier, CNRS, IRD."
department: "Institute of Evolutionary Sciences Montpellier,"
- name: "Robert P. Dunn"
orcid: "0000-0002-6356-4458"
affiliation:
- name: "University of South Carolina"
department: "Baruch Marine Field Laboratory"
- name: "Jamie Dunning"
affiliation:
- name: "Imperial College London"
department: "Department of Life Sciences"
- name: "Trishna Dutta"
orcid: "0000-0002-5236-2658"
affiliation:
- name: "European Forest Institute"
department: ""
- name: "Luke Eberhart-Hertel"
orcid: "0000-0001-7311-6088"
affiliation:
- name: "Max Planck Institute for Biological Intelligence"
department: "Department of Ornithology"
- name: "Jared Alan Elmore"
orcid: "0000-0002-5980-1561"
affiliation:
- name: "Clemson University"
department: "Forestry and Environmental Conservation, National Bobwhite and Grassland Initiative"
- name: "Mahmoud Medhat Elsherif"
orcid: "0000-0002-0540-3998"
affiliation:
- name: "University of Birmingham, Baily Thomas Grant"
department: "Department of Psychology and Vision Science"
- name: "Holly M English"
orcid: "0000-0002-8854-6707"
affiliation:
- name: "University College Dublin"
department: "School of Biology and Environmental Science"
- name: "David C. Ensminger"
orcid: "0000-0001-5554-1638"
affiliation:
- name: "San José State University"
department: "Department of Biological Sciences"
- name: "Ulrich Rainer Ernst"
orcid: "0000-0002-6330-5341"
affiliation:
- name: "University of Hohenheim"
department: "Apicultural State Institute"
- name: "Stephen M. Ferguson"
orcid: "0000-0003-1577-2727"
affiliation:
- name: "St. Norbert College"
department: "Department of Biology"
- name: "Esteban Fernandez-Juricic"
orcid: "0000-0001-5290-8078"
affiliation:
- name: "Purdue University"
department: "Department of Biological Sciences"
- name: "Thalita Ferreira-Arruda Ferreira-Arruda"
orcid: "0000-0003-1385-0226"
affiliation:
- name: "University of Göttingen"
department: "Biodiversity, Macroecology & Biogeography, Faculty of Forest Sciences and Forest Ecology"
- name: "John Fieberg"
orcid: "0000-0002-3180-7021"
affiliation:
- name: "University of Minnesota"
department: "Department of Fisheries, Wildlife, and Conservation Biology"
- name: "Elizabeth A Finch"
orcid: "0000-0002-7031-5708"
affiliation:
- name: "CABI"
department: ""
- name: "Evan A. Fiorenza"
orcid: "0000-0002-5421-0148"
affiliation:
- name: "University of California, Irvine"
department: "Department of Ecology and Evolutionary Biology, School of Biological Sciences"
- name: "David N Fisher"
orcid: "0000-0002-4444-4450"
affiliation:
- name: "University of Aberdeen"
department: "School of Biological Sciences"
- name: "Amélie Fontaine"
orcid: ""
affiliation:
- name: "McGill University"
department: "Department of Natural Resource Sciences"
- name: "Wolfgang Forstmeier"
orcid: "0000-0002-5984-8925"
affiliation:
- name: "Max Planck Institute for Biological Intelligence"
department: "Department of Ornithology"
- name: "Yoan Fourcade"
orcid: "0000-0003-3820-946X"
affiliation:
- name: "Univ. Paris-Est Creteil"
department: "Institute of Ecology and Environmental Sciences (iEES)"
- name: "Graham S. Frank"
orcid: "0000-0002-0151-3807"
affiliation:
- name: "Oregon State University"
department: "Department of Forest Ecosystems and Society"
- name: "Cathryn A. Freund"
orcid: "0000-0002-1570-5519"
affiliation:
- name: "Wake Forest University"
department: ""
- name: "Eduardo Fuentes-Lillo"
orcid: "0000-0001-5657-954X"
affiliation:
- name: "Instituto de Ecología y Biodiversidad"
department: "Laboratorio de Invasiones Biológicas (LIB)"
- name: "Sara L. Gandy"
orcid: "0000-0003-2579-4479"
affiliation:
- name: "University of Glasgow"
department: "Institute for Biodiversity, Animal Health and Comparative Medicine"
- name: "Dustin G. Gannon"
orcid: "0000-0002-6936-8626"
affiliation:
- name: "Oregon State University"
department: "Department of Forest Ecosystems and Society, College of Forestry"
- name: "Ana I. García-Cervigón"
orcid: "0000-0001-6651-2445"
affiliation:
- name: "Rey Juan Carlos University"
department: "Biodiversity and Conservation Area"
- name: "Alexis C. Garretson"
orcid: "0000-0002-7260-0131"
affiliation:
- name: "Tufts University"
department: "Graduate School of Biomedical Sciences"
- name: "Xuezhen Ge"
orcid: "0000-0002-5527-6720"
affiliation:
- name: "University of Guelph"
department: "Department of Integrative Biology"
- name: "William L. Geary"
orcid: "0000-0002-6520-689X"
affiliation:
- name: "Deakin University"
department: "School of Life and Environmental Sciences (Burwood Campus)"
- name: "Charly Géron"
orcid: "0000-0001-7912-4708"
affiliation:
- name: "University of Rennes"
department: "CNRS"
- name: "Marc Gilles"
orcid: "0000-0003-4222-9754"
affiliation:
- name: "Bielefeld University"
department: "Department of Behavioural Ecology"
- name: "Antje Girndt"
orcid: "0000-0002-9558-1201"
affiliation:
- name: "Universität Bielefeld"
department: "Fakultät für Biologie, Arbeitsgruppe Evolutionsbiologie"
- name: "Daniel Gliksman"
affiliation:
- name: "Technische Universität Dresden"
department: "Chair of Meteorology, Institute for Hydrology and Meteorology, Faculty of Environmental Sciences"
- name: "Harrison B Goldspiel"
orcid: "0000-0001-9193-8165"
affiliation:
- name: "University of Maine"
department: "Department of Wildlife, Fisheries, and Conservation Biology"
- name: "Dylan G. E. Gomes"
orcid: "0000-0002-2642-3728"
affiliation:
- name: "Boise State University"
department: "Department of Biological Sciences"
- name: "Megan Kate Good"
orcid: "0000-0002-6908-1633"
affiliation:
- name: "The University of Melbourne"
department: "School of Agriculture, Food and Ecosystem Sciences"
- name: "Sarah C Goslee"
orcid: "0000-0002-5939-3297"
affiliation:
- name: "USDA Agricultural Research Service"
department: "Pastures Systems and Watershed Management Research Unit"
- name: "J. Stephen Gosnell"
orcid: "0000-0002-2103-2728"
affiliation:
- name: "Baruch College, City University of New York"
department: "Department of Natural Sciences"
- name: "Eliza M. Grames"
orcid: "0000-0003-1743-6815"
affiliation:
- name: "Binghamton University"
department: "Department of Biological Sciences"
- name: "Paolo Gratton"
orcid: "0000-0001-8464-4062"
affiliation:
- name: "Università di Roma 'Tor Vergata"
department: "Dipartimento di Biologia"
- name: "Nicholas M. Grebe"
orcid: "0000-0003-1411-065X"
affiliation:
- name: "University of Michigan"
department: "Department of Anthropology"
- name: "Skye M. Greenler"
orcid: "0000-0002-4454-8970"
affiliation:
- name: "Oregon State University"
department: "College of Forestry"
- name: "Maaike Griffioen"
orcid: "0000-0002-9311-8811"
affiliation:
- name: "University of Antwerp"
department: ""
- name: "Daniel M Griffith"
orcid: "0000-0001-7463-4004"
affiliation:
- name: "Wesleyan University"
department: "Earth & Environmental Sciences"
- name: "Frances J. Griffith"
orcid: "0000-0001-9238-0212"
affiliation:
- name: "Yale University"
department: "Yale School of Medicine, Department of Psychiatry"
- name: "Jake J. Grossman"
orcid: "0000-0001-6468-8551"
affiliation:
- name: "St. Olaf College"
department: "Biology Department and Environmental Studies Department"
- name: "Ali Güncan"
orcid: "0000-0003-1765-648X"
affiliation:
- name: "Ordu Uniersity"
department: "Department of Plant Protection, Faculty of Agriculture"
- name: "Stef Haesen"
orcid: "0000-0002-4491-4213"
affiliation:
- name: "KU Leuven"
department: "Department of Earth and Environmental Sciences"
- name: "James G. Hagan"
orcid: "0000-0002-7504-3393"
affiliation:
- name: "University of Gothenburg"
department: "Department of Marine Sciences"
- name: "Heather A. Hager"
orcid: "0000-0002-0066-6844"
affiliation:
- name: "Wilfrid Laurier University"
department: "Department of Biology"
- name: "Jonathan Philo Harris"
orcid: "0000-0003-4428-903X"
affiliation:
- name: "Iowa State University"
department: "Natural Resource Ecology and Management"
- name: "Natasha Dean Harrison"
orcid: "0000-0001-5779-0187"
affiliation:
- name: "University of Western Australia"
department: "School of Biological Sciences"
- name: "Sarah Syedia Hasnain"
orcid: "0000-0003-4358-5478"
affiliation:
- name: "Middle East Technical University"
department: "Department of Biological Sciences"
- name: "Justin Chase Havird"
orcid: "0000-0002-8692-6503"
affiliation:
- name: "University of Texas at Austin"
department: "Dept. of Integrative Biology"
- name: "Andrew J. Heaton"
orcid: "0000-0002-1916-9979"
affiliation:
- name: "Grand Bay National Estuarine Research Reserve"
department: ""
- name: "María Laura Herrera-Chaustre"
orcid: "0009-0006-2890-5583"
affiliation:
- name: "Universidad de los Andes"
department: ""
- name: "Tanner J. Howard"
orcid: "0000-0001-7772-1613"
affiliation:
- name: ""
department: ""
- name: "Bin-Yan Hsu"
orcid: "0000-0002-3799-0509"
affiliation:
- name: "University of Turku"
department: "Department of Biology"
- name: "Fabiola Iannarilli"
orcid: "0000-0002-7018-3557"
affiliation:
- name: "University of Minnesota"
department: "Dept of Fisheries, Wildlife and Conservation Biology"
- name: "Esperanza C. Iranzo"
orcid: "0000-0001-9411-8437"
affiliation:
- name: "Universidad Austral de Chile"
department: "Instituto de Ciencia Animal. Facultad de Ciencias Veterinarias"
- name: "Erik N. K. Iverson"
orcid: "0000-0002-3756-9511"
affiliation:
- name: "The University of Texas at Austin"
department: "Department of Integrative Biology"
- name: "Saheed Olaide Jimoh"
orcid: "0000-0002-3238-9079 "
affiliation:
- name: "University of Wyoming"
department: "Department of Botany"
- name: "Douglas H. Johnson"
orcid: "0000-0002-7778-6641"
affiliation:
- name: "University of Minnesota"
department: "Department of Fisheries, Wildlife, and Conservation Biology, University of Minnesota"
- name: "Martin Johnsson"
orcid: "0000-0003-1262-4585"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Animal Breeding and Genetics"
- name: "Jesse Jorna"
affiliation:
- name: "Brigham Young University"
department: "Department of Biology"
- name: "Tommaso Jucker"
orcid: "0000-0002-0751-6312"
affiliation:
- name: "University of Bristol"
department: "School of Biological Sciences"
- name: "Martin Jung"
orcid: "0000-0002-7569-1390"
affiliation:
- name: "International Institute for Applied Systems Analysis (IIASA)"
department: ""
- name: "Ineta Kačergytė"
orcid: "0000-0003-4756-8253"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Ecology"
- name: "Oliver Kaltz"
orcid: ""
affiliation:
- name: "Université de Montpellier"
department: ""
- name: "Alison Ke"
orcid: "0000-0001-9111-449X"
affiliation:
- name: "University of California, Davis"
department: "Department of Wildlife, Fish, and Conservation Biology"
- name: "Clint D. Kelly"
orcid: "0000-0002-0693-7211"
affiliation:
- name: "Université du Québec à Montréal"
department: "Département des Sciences biologiques"
- name: "Katharine Keogan"
orcid: "0000-0002-1801-7412"
affiliation:
- name: "University of Edinburgh"
department: "Institute of Evolutionary Biology"
- name: "Friedrich Wolfgang Keppeler"
orcid: "0000-0002-5165-1298"
affiliation:
- name: "Center for Limnology, University of Wisconsin - Madison"
department: "Center for Limnology"
- name: "Alexander K. Killion"
orcid: "0000-0003-1449-8295"
affiliation:
- name: "Yale University"
department: "Center for Biodiversity and Global Change"
- name: "Dongmin Kim"
orcid: "0000-0002-1508-1590"
affiliation:
- name: "University of Minnesota, St. Paul"
department: "Department of Ecology, Evolution, and Behavior"
- name: "David P Kochan"
orcid: "0000-0002-3643-3516"
affiliation:
- name: "Florida International University"
department: "Institute of Environment and Department of Biological Sciences"
- name: "Peter Korsten"
orcid: "0000-0003-0814-9099"
affiliation:
- name: "Aberystwyth University"
department: "Department of Life Sciences"
- name: "Shan Kothari"
orcid: "0000-0001-9445-5548"
affiliation:
- name: "Université de Montréal"
department: "Institut de recherche en biologie végétale"
- name: "Jonas Kuppler"
orcid: "0000-0003-4409-9367"
affiliation:
- name: "Ulm University"
department: "Institute of Evolutionary Ecology and Conservation Genomics"
- name: "Jillian M Kusch"
orcid: "0000-0003-0078-5621"
affiliation:
- name: "Memorial University of Newfoundland"
department: "Department of Biology"
- name: "Malgorzata Lagisz"
orcid: "0000-0002-3993-6127"
affiliation:
- name: "University of New South Wales"
department: "Evolution & Ecology Research Centre and School of Biological, Earth & Environmental Sciences"
- name: "Kristen Marianne Lalla"
orcid: "0000-0003-1422-0672"
affiliation:
- name: "McGill University"
department: "Department of Natural Resource Sciences"
- name: "Daniel J. Larkin"
orcid: "0000-0001-6378-0495"
affiliation:
- name: "University of Minnesota-Twin Cities"
department: "Department of Fisheries, Wildlife and Conservation Biology"
- name: "Courtney L. Larson"
orcid: "0000-0003-3878-259X"
affiliation:
- name: "The Nature Conservancy"
department: ""
- name: "Katherine S. Lauck"
orcid: "0000-0003-3303-5050"
affiliation:
- name: "University of California, Davis"
department: "Department of Wildlife, Fish, and Conservation Biology"
- name: "M. Elise Lauterbur"
orcid: "0000-0002-7362-3618"
affiliation:
- name: "University of Arizona"
department: "Ecology and Evolutionary Biology"
- name: "Alan Law"
orcid: "0000-0001-5971-3214"
affiliation:
- name: "University of Stirling"
department: "Biolgical and Environmental Sciences"
- name: "Don-Jean Léandri-Breton"
orcid: "0000-0003-0547-2966"
affiliation:
- name: "McGill University"
department: "Department of Natural Resource Sciences"
- name: "Jonas J. Lembrechts"
orcid: "0000-0002-1933-0750"
affiliation:
- name: "University of Antwerp"
department: "Department of Biology"
- name: "Kiara L'Herpiniere"
orcid: "0000-0003-0322-1266"
affiliation:
- name: "Macquarie University"
department: "Natural sciences"
- name: "Eva J. P. Lievens"
orcid: "0000-0003-3280-0072"
affiliation:
- name: "University of Konstanz"
department: "Aquatic Ecology and Evolution Group, Limnological Institute"
- name: "Daniela Oliveira de Lima"
orcid: "0000-0001-6650-2570"
affiliation:
- name: "Universidade Federal da Fronteira Sul"
department: "Campus Cerro Largo"
- name: "Shane Lindsay"
affiliation:
- name: "University of Hull"
department: "School of Psychology and Social Work"
- name: "Martin Luquet"
orcid: "0000-0002-4656-4923"
affiliation:
- name: "Université de Pau et des Pays de l′Adour"
department: "UMR 1224 ECOBIOP"
- name: "Ross MacLeod"
orcid: "0000-0001-5508-0202"
affiliation:
- name: "Liverpool John Moores University"
department: "School of Biological & Environmental Sciences"
- name: "Kirsty H. Macphie"
orcid: "0000-0002-9824-4833"
affiliation:
- name: "University of Edinburgh"
department: "Institute of Ecology and Evolution"
- name: "Kit Magellan"
orcid: ""
affiliation:
- name: ""
department: ""
- name: "Magdalena M. Mair"
orcid: "0000-0003-0074-6067"
affiliation:
- name: "Bayreuth Center of Ecology and Environmental Research (BayCEER), University of Bayreuth"
department: "Statistical Ecotoxicology"
- name: "Lisa E. Malm"
orcid: "0000-0002-7412-9515"
affiliation:
- name: "Umeå University"
department: "Ecology and Environmental Science"
- name: "Stefano Mammola"
orcid: "0000-0002-4471-9055"
affiliation:
- name: "National Research Council of Italy (CNR)"
department: "Molecular Ecology Group (MEG), Water Research Institute (IRSA)"
- name: "Caitlin P. Mandeville"
orcid: "0000-0002-1361-607X"
affiliation:
- name: "Norwegian University of Science and Technology"
department: "Department of Natural History"
- name: "Michael Manhart"
orcid: "0000-0003-3791-9056"
affiliation:
- name: "Rutgers University Robert Wood Johnson Medical School"
department: "Center for Advanced Biotechnology and Medicine"
- name: "Laura Milena Manrique-Garzon"
orcid: "0009-0004-4671-6968"
affiliation:
- name: "Universidad de los Andes"
department: "Departamento de Ciencias Biológicas"
- name: "Elina Mäntylä"
orcid: "0000-0002-2267-7114"
affiliation:
- name: "University of Turku"
department: "Department of Biology"
- name: "Philippe Marchand"
orcid: "0000-0001-6717-0475"
affiliation:
- name: "Université du Québec en Abitibi-Témiscamingue"
department: "Institut de recherche sur les forêts"
- name: "Benjamin Michael Marshall"
orcid: "0000-0001-9554-0605"
affiliation:
- name: "University of Stirling"
department: "Biological and Environmental Sciences"
- name: "Dominic Andreas Martin"
orcid: "0000-0001-7197-2278"
affiliation:
- name: "University of Bern"
department: "Institute of Plant Sciences"
- name: "Jake Mitchell Martin"
orcid: "0000-0001-9544-9094"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Wildlife, Fish, and Environmental Studies"
- name: "Charles A. Martin"
orcid: "0000-0003-3185-4634"
affiliation:
- name: "Université du Québec à Trois-Rivières"
department: ""
- name: "April Robin Martinig"
orcid: "0000-0002-0972-6903"
affiliation:
- name: "University of New South Wales"
department: "School of Biological, Earth and Environmental Sciences"
- name: "Erin S. McCallum"
orcid: "0000-0001-5426-9652"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Wildlife, Fish and Environmental Studies"
- name: "Mark McCauley"
orcid: "0000-0001-5347-6860"
affiliation:
- name: "University of Florida"
department: "Whitney Laboratory for Marine Bioscience"
- name: "Sabrina M. McNew"
orcid: "0000-0002-1345-1674"
affiliation:
- name: "University of Arizona"
department: "Ecology and Evolutionary Biology"
- name: "Scott J. Meiners"
orcid: "0000-0003-1805-398X"
affiliation:
- name: "Eastern Illinois University"
department: "Biological Sciences"
- name: "Thomas Merkling"
orcid: "0000-0002-5878-0359"
affiliation:
- name: "Université de Lorraine, Inserm1433 CIC-P CHRU de Nancy"
department: "Centre d'Investigations Clinique Plurithématique - Institut Lorrain du Coeur et des Vaisseaux"
- name: "Marcus Michelangeli"
orcid: "0000-0002-0053-6759"
affiliation:
- name: "Swedish University of Agricultural Sciences"
department: "Department of Wildlife, Fish and Environmental Studies"
- name: "Maria Moiron"
orcid: "0000-0003-0991-1460"
affiliation:
- name: "Bielefeld University"
department: "Evolutionary biology department"
- name: "Bruno Moreira"
orcid: "0000-0002-7319-2555"
affiliation:
- name: "Centro de Investigaciones sobre Desertificación, Consejo Superior de Investigaciones Cientificas (CIDE-CSIC/UV/GV)"
department: "Department of Ecology and global change"
- name: "Jennifer Mortensen"
affiliation:
- name: "University of Arkansas"
department: "Department of Biological Sciences"
- name: "Benjamin Mos"
orcid: "0000-0003-3687-516X"
affiliation:
- name: "The University of Queensland"
department: "School of the Environment, Faculty of Science"
- name: "Taofeek Olatunbosun Muraina"
orcid: "0000-0003-2646-2732"
affiliation:
- name: "Oyo State College of Agriculture and Technology"
department: "Department of Animal Health and Production"
- name: "Penelope Wrenn Murphy"
orcid: "0000-0002-9989-1696"
affiliation:
- name: "University of Wisconsin-Madison"
department: "Department of Forest & Wildlife Ecology"
- name: "Luca Nelli"
orcid: "0000-0001-6091-4072"
affiliation:
- name: "University of Glasgow"
department: "School of Biodiversity, One Health and Veterinary Medicine"
- name: "Petri Niemelä"
orcid: ""
affiliation:
- name: "University of Helsinki"
department: "Organismal and Evolutionary Biology Research Programme, Faculty of Biological and Environmental Sciences"
- name: "Josh Nightingale"
orcid: "0000-0002-1188-7773"
affiliation:
- name: "University of Iceland"
department: "South Iceland Research Centre"
- name: "Gustav Nilsonne"
orcid: "0000-0001-5273-0150"
affiliation:
- name: "Karolinska Institutet"
department: "Department of Clinical Neuroscience"
- name: "Sergio Nolazco"
orcid: "0000-0003-2625-9283"
affiliation:
- name: "Monash University"
department: "School of Biological Sciences"
- name: "Sabine S. Nooten"
orcid: "0000-0002-1798-315X"
affiliation: