-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvis.bib
More file actions
1577 lines (1304 loc) · 96.6 KB
/
Copy pathvis.bib
File metadata and controls
1577 lines (1304 loc) · 96.6 KB
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
@Article{augustin_quantile_2012,
Title = {On quantile quantile plots for generalized linear models},
Author = {Augustin, Nicole H. and Sauleau, Erik-André and Wood, Simon N.},
Journal = {Computational Statistics \& Data Analysis},
Year = {2012},
Month = aug,
Number = {8},
Pages = {2404--2409},
Volume = {56},
Doi = {10.1016/j.csda.2012.01.026},
ISSN = {01679473},
Url = {http://linkinghub.elsevier.com/retrieve/pii/S0167947312000692},
Urldate = {2013-07-01}
}
@InProceedings{bateman_useful_2010,
Title = {Useful junk?: the effects of visual embellishment on comprehension and memorability of charts},
Author = {Bateman, Scott and Mandryk, Regan L. and Gutwin, Carl and Genest, Aaron and McDine, David and Brooks, Christopher},
Booktitle = {Proceedings of the {SIGCHI} {Conference} on {Human} {Factors} in {Computing} {Systems}},
Year = {2010},
Pages = {2573--2582},
Publisher = {ACM},
Shorttitle = {Useful junk?}
}
@Misc{beus_redesign_2018,
Title = {Redesign of a truly bananas chart},
Author = {de Beus, Thomas},
Month = jan,
Year = {2018},
Abstract = {On Twitter, I stumbled upon this horrendous 3D bar chart. When looking at the data, it might have been made in 2005. Data visualisation as…},
Journal = {Colourful Facts},
Url = {https://medium.com/tdebeus/redesign-of-a-truly-bananas-chart-1617f930808d},
Urldate = {2018-01-09}
}
@Misc{debeus_contribute_2017,
Title = {colourful-facts repository},
Author = {de Beus, Thomas},
Month = jul,
Note = {original-date: 2017-07-24T11:35:18Z},
Year = {2017},
Url = {https://github.com/thomasdebeus/colourful-facts},
Urldate = {2018-01-09}
}
@Article{borkin_beyond_2016,
Title = {Beyond {Memorability}: {Visualization} {Recognition} and {Recall}},
Author = {Borkin, Michelle A. and Bylinskii, Zoya and Kim, Nam Wook and Bainbridge, Constance May and Yeh, Chelsea S. and Borkin, Daniel and Pfister, Hanspeter and Oliva, Aude},
Journal = {IEEE Transactions on Visualization and Computer Graphics},
Year = {2016},
Month = jan,
Number = {1},
Pages = {519--528},
Volume = {22},
Doi = {10.1109/TVCG.2015.2467732},
ISSN = {1077-2626},
Shorttitle = {Beyond {Memorability}},
Url = {http://ieeexplore.ieee.org/document/7192646/},
Urldate = {2018-02-09}
}
@Misc{broman_creating_2017,
Title = {Creating effective figures and tables},
Author = {Broman, Karl W},
Year = {2017},
Url = {https://www.biostat.wisc.edu/~kbroman/presentations/graphs2017.pdf},
Urldate = {2017-10-26}
}
@TechReport{broman_data_2017,
Title = {Data organization in spreadsheets},
Author = {Broman, Karl W and Woo, Kara H.},
Institution = {PeerJ Preprints},
Year = {2017},
Month = aug,
Note = {DOI: 10.7287/peerj.preprints.3183v1},
Abstract = {Spreadsheets are widely used software tools for data entry, storage, analysis, and visualization. Focusing on the data entry and storage aspects, this paper offers practical recommendations for organizing spreadsheet data to reduce errors and ease later analyses. The basic principles are: be consistent, write dates like YYYY-MM-DD, don't leave any cells empty, put just one thing in a cell, organize the data as a single rectangle (with subjects as rows and variables as columns, and with a single header row), create a data dictionary, don't include calculations in the raw data files, don't use font color or highlighting as data, choose good names for things, make backups, use data validation to avoid data entry errors, and save the data in plain text file.},
Language = {eng},
Url = {https://peerj.com/preprints/3183v1/},
Urldate = {2017-08-31}
}
@Article{buja_statistical_2009,
Title = {Statistical inference for exploratory data analysis and model diagnostics},
Author = {Buja, A. and Cook, D. and Hofmann, H. and Lawrence, M. and Lee, E.-K. and Swayne, D. F. and Wickham, H.},
Journal = {Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences},
Year = {2009},
Month = oct,
Number = {1906},
Pages = {4361--4383},
Volume = {367},
Doi = {10.1098/rsta.2009.0120},
ISSN = {1364-503X},
Url = {http://rsta.royalsocietypublishing.org/cgi/doi/10.1098/rsta.2009.0120}
}
@Misc{camoes_stephen_2010,
Title = {Stephen {Few}, {Data} {Visualization}, {Eye} {Candy} and {Pie} {Charts}},
Author = {Camoes, Jorge},
Url = {http://www.excelcharts.com/blog/stephen-few-data-visualization-eye-candy-and-the-pie/},
Urldate = {2010-09-30}
}
@Misc{camoes_what-would-tufte-say_nodate,
Title = {The "what-would-{Tufte}-say" syndrome},
Author = {Camoes, Jorge},
Abstract = {An alarming level of the "what-would-Tufte-say" syndrome can be found in this post and some of its comments discussing a New York Times's infographic. This syndrome has some recognizable features like the extensive use of "chart junk", "lie factor" or other terms and expressions coined by Tufte that reveal a somewhat},
Journal = {The Excel Charts Blog},
Url = {http://www.excelcharts.com/blog/the-what-would-tufte-say-syndrome/},
Urldate = {2017-01-10}
}
@Book{cleveland_visualizing_1993,
Title = {Visualizing {Data}},
Author = {Cleveland, William},
Publisher = {Hobart Press},
Year = {1993},
Address = {Summit, NJ}
}
@Article{cleveland_graphical_1987,
Title = {Graphical {Perception}: {The} {Visual} {Decoding} of {Quantitative} {Information} on {Graphical} {Displays} of {Data}},
Author = {Cleveland, William S. and McGill, Robert},
Journal = {Journal of the Royal Statistical Society. Series A (General)},
Year = {1987},
Month = jan,
Note = {ArticleType: research-article / Full publication date: 1987 / Copyright © 1987 Royal Statistical Society},
Number = {3},
Pages = {192--229},
Volume = {150},
Abstract = {Studies in graphical perception, both theoretical and experimental, provide a scientific foundation for the construction area of statistical graphics. From these studies a paradigm that has important applications for practice has begun to emerge. The paradigm is based on elementary codes: Basic geometric and textural aspects of a graph that encode the quantitative information. The methodology that can be invoked to study graphical perception is illustrated by an investigation of the shape parameter of a two-variable graph, a topic that has had much discussion, but little scientific study, for at least 70 years.},
Doi = {10.2307/2981473},
ISSN = {00359238},
Shorttitle = {Graphical {Perception}},
Url = {http://www.jstor.org/stable/2981473},
Urldate = {2011-01-03}
}
@Article{cleveland_graphical_1984,
Title = {Graphical {Perception}: {Theory}, {Experimentation}, and {Application} to the {Development} of {Graphical} {Methods}},
Author = {Cleveland, William S. and McGill, Robert},
Journal = {Journal of the American Statistical Association},
Year = {1984},
Note = {ArticleType: research-article / Full publication date: Sep., 1984 / Copyright © 1984 American Statistical Association},
Number = {387},
Pages = {531--554},
Volume = {79},
Abstract = {The subject of graphical methods for data analysis and for data presentation needs a scientific foundation. In this article we take a few steps in the direction of establishing such a foundation. Our approach is based on graphical perception-the visual decoding of information encoded on graphs-and it includes both theory and experimentation to test the theory. The theory deals with a small but important piece of the whole process of graphical perception. The first part is an identification of a set of elementary perceptual tasks that are carried out when people extract quantitative information from graphs. The second part is an ordering of the tasks on the basis of how accurately people perform them. Elements of the theory are tested by experimentation in which subjects record their judgments of the quantitative information on graphs. The experiments validate these elements but also suggest that the set of elementary tasks should be expanded. The theory provides a guideline for graph construction: Graphs should employ elementary tasks as high in the ordering as possible. This principle is applied to a variety of graphs, including bar charts, divided bar charts, pie charts, and statistical maps with shading. The conclusion is that radical surgery on these popular graphs is needed, and as replacements we offer alternative graphical forms-dot charts, dot charts with grouping, and framed-rectangle charts.},
Doi = {10.2307/2288400},
ISSN = {01621459},
Shorttitle = {Graphical {Perception}},
Url = {http://www.jstor.org/stable/2288400},
Urldate = {2011-01-03}
}
@Article{dawson_how_2011,
Title = {How significant is a boxplot outlier},
Author = {Dawson, Robert},
Journal = {Journal of Statistics Education},
Year = {2011},
Number = {2},
Pages = {1--12},
Volume = {19}
}
@Book{doumont_trees_2009,
Title = {Trees, {Maps}, and {Theorems} {Effective} {Communication} for {Rational} {Minds}},
Author = {Doumont, Jean-Luc},
Publisher = {Principiae},
Year = {2009},
Address = {Kraainem},
Abstract = {The book comprises five parts: first, fundamentals, then the written documents, oral presentations, and graphical displays, and finally the application of these ideas to more specific types of document.},
ISBN = {978-90-813677-0-7},
Language = {English}
}
@Misc{drang_drum_2017,
Title = {Drum and {Tufte} and grids and axes - {All} this},
Author = {{Dr. Drang}},
Url = {http://leancrew.com/all-this/2017/12/drum-tufte-grids-axes/},
Urldate = {2018-01-01}
}
@Misc{drum_yet_2017,
Title = {Yet more chart geekery},
Author = {Drum, Kevin},
Journal = {Mother Jones},
Url = {http://www.motherjones.com/kevin-drum/2017/12/yet-more-chart-geekery/},
Urldate = {2018-01-01}
}
@Misc{elliott_39_2016,
Title = {39 studies about human perception in 30 minutes},
Author = {Elliott, Kennedy},
Month = may,
Year = {2016},
Abstract = {These are my speaker notes from a talk I gave at OpenVis in April 2016. Originally this talk was supposed to be called “Everything we know…},
Journal = {Medium},
Url = {https://medium.com/@kennelliott/39-studies-about-human-perception-in-30-minutes-4728f9e31a73},
Urldate = {2018-01-16}
}
@Book{few_now_2009,
Title = {Now {You} {See} {It}: {Simple} {Visualization} {Techniques} for {Quantitative} {Analysis}},
Author = {Few, Stephen},
Publisher = {Analytics Press},
Year = {2009},
Edition = {1st},
Month = apr,
ISBN = {0-9706019-8-0},
Shorttitle = {Now {You} {See} {It}}
}
@Article{friendly_effect_2003,
Title = {Effect ordering for data displays},
Author = {Friendly, Michael and Kwan, Ernest},
Journal = {Computational Statistics \& Data Analysis},
Year = {2003},
Month = aug,
Number = {4},
Pages = {509--539},
Volume = {43},
Abstract = {This paper outlines a general framework for ordering information in visual displays (tables and graphs) according to the effects or trends which we desire to see. This idea, termed effect-ordered data displays, applies principally to the arrangement of unordered factors for quantitative data and frequency data, and to the arrangement of variables and observations in multivariate displays (star plots, parallel coordinate plots, and so forth).
As examples of this principle, we present several techniques for ordering items, levels or variables “optimally”, based on some desired criterion. All of these may be based on eigenvalue or singular-value decompositions.
Along the way, we tell some stories about data display, illustrated by graphs—some surprisingly bad, and some surprisingly good—for showing patterns, trends, and anomalies in data. We hope to raise more questions than we can provide answers for.},
Doi = {10.1016/S0167-9473(02)00290-6},
File = {ScienceDirect Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/C79AU4QH/S0167947302002906.html:text/html},
ISSN = {0167-9473},
Series = {Data {Visualization}},
Url = {http://www.sciencedirect.com/science/article/pii/S0167947302002906},
Urldate = {2016-01-23}
}
@Misc{gelman_infovis_2011,
Title = {Infovis, infographics, and data visualization: {Where} {I}'m coming from, and where {I}'d like to go},
Author = {Gelman, Andrew},
Month = aug,
Year = {2011},
Abstract = {I continue to struggle to convey my thoughts on statistical graphics so I’ll try another approach, this time giving my own story. For newcomers to this discussion: the background is that Antony Unwin and I wrote an article on the different goals embodied in information visualization and statistical graphics, but I have difficulty communicating on …},
Journal = {Statistical Modeling, Causal Inference, and Social Science},
Language = {en-US},
Shorttitle = {Infovis, infographics, and data visualization},
Url = {http://andrewgelman.com/2011/08/29/infovis-infographics-and-data-visualization-where-im-coming-from-and-where-id-like-to-go/},
Urldate = {2018-02-12}
}
@Article{gelman_why_2011,
Title = {Why {Tables} {Are} {Really} {Much} {Better} {Than} {Graphs}},
Author = {Gelman, Andrew},
Journal = {Journal of Computational and Graphical Statistics},
Year = {2011},
Month = mar,
Number = {1},
Pages = {3--7},
Volume = {20},
Doi = {10.1198/jcgs.2011.09166},
ISSN = {1061-8600},
Url = {http://pubs.amstat.org/doi/abs/10.1198/jcgs.2011.09166},
Urldate = {2011-08-15}
}
@Article{gelman_scaling_2008,
Title = {Scaling regression inputs by dividing by two standard deviations},
Author = {Gelman, Andrew},
Journal = {Statistics in Medicine},
Year = {2008},
Month = jul,
Number = {15},
Pages = {2865--2873},
Volume = {27},
Doi = {10.1002/sim.3107},
ISSN = {02776715, 10970258},
Language = {en},
Url = {http://doi.wiley.com/10.1002/sim.3107},
Urldate = {2018-02-04}
}
@Article{gelman_exploratory_2004,
Title = {Exploratory {Data} {Analysis} for {Complex} {Models}},
Author = {Gelman, Andrew},
Journal = {Journal of Computational and Graphical Statistics},
Year = {2004},
Month = dec,
Number = {4},
Pages = {755--779},
Volume = {13},
Doi = {10.1198/106186004X11435},
ISSN = {1061-8600, 1537-2715},
Language = {en},
Url = {http://www.tandfonline.com/doi/abs/10.1198/106186004X11435},
Urldate = {2018-01-24}
}
@Article{gelman_lets_2002,
Title = {Let's practice what we preach: turning tables into graphs},
Author = {Gelman, Andrew and Pasarica, Cristian and Dodhia, Rahul},
Journal = {The American Statistician},
Year = {2002},
Number = {2},
Pages = {121--130},
Volume = {56},
Shorttitle = {Let's practice what we preach},
Url = {http://www.tandfonline.com/doi/abs/10.1198/000313002317572790},
Urldate = {2016-02-01}
}
@Article{gelman_all_1999,
Title = {All maps of parameter estimates are misleading},
Author = {Gelman, Andrew and Price, Phillip N. and {others}},
Journal = {Statistics in medicine},
Year = {1999},
Number = {23},
Pages = {3221--3234},
Volume = {18},
Url = {http://www.stat.columbia.edu/~gelman/research/published/allmaps.pdf},
Urldate = {2017-08-09}
}
@Article{gelman_infovis_2013,
Title = {Infovis and {Statistical} {Graphics}: {Different} {Goals}, {Different} {Looks}},
Author = {Gelman, Andrew and Unwin, Antony},
Journal = {Journal of Computational and Graphical Statistics},
Year = {2013},
Number = {1},
Pages = {2--28},
Volume = {22},
Abstract = {The importance of graphical displays in statistical practice has been recognized sporadically in the statistical literature over the past century, with wider awareness following Tukey's Exploratory Data Analysis and Tufte's books in the succeeding decades. But statistical graphics still occupy an awkward in-between position: within statistics, exploratory and graphical methods represent a minor subfield and are not well integrated with larger themes of modeling and inference. Outside of statistics, infographics (also called information visualization or Infovis) are huge, but their purveyors and enthusiasts appear largely to be uninterested in statistical principles. We present here a set of goals for graphical displays discussed primarily from the statistical point of view and discuss some inherent contradictions in these goals that may be impeding communication between the fields of statistics and Infovis. One of our constructive suggestions, to Infovis practitioners and statisticians alike, is to try not to cram into a single graph what can be better displayed in two or more. We recognize that we offer only one perspective and intend this article to be a starting point for a wide-ranging discussion among graphic designers, statisticians, and users of statistical methods. The purpose of this article is not to criticize but to explore the different goals that lead researchers in different fields to value different aspects of data visualization.},
Doi = {10.1080/10618600.2012.761137},
File = {Full Text PDF:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/FPZGWWSB/Gelman and Unwin - 2013 - Infovis and Statistical Graphics Different Goals,.pdf:application/pdf;Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/JD3PKJ4X/10618600.2012.html:text/html},
ISSN = {1061-8600},
Shorttitle = {Infovis and {Statistical} {Graphics}},
Url = {http://www.tandfonline.com/doi/abs/10.1080/10618600.2012.761137},
Urldate = {2013-07-01}
}
@Article{gelman_tradeoffs_2013,
Title = {Tradeoffs in {Information} {Graphics}},
Author = {Gelman, Andrew and Unwin, Antony},
Journal = {Journal of Computational and Graphical Statistics},
Year = {2013},
Number = {1},
Pages = {45--49},
Volume = {22},
Doi = {10.1080/10618600.2012.761141},
ISSN = {1061-8600},
Url = {http://www.tandfonline.com/doi/abs/10.1080/10618600.2012.761141},
Urldate = {2013-06-03}
}
@Article{goldberg_bivariate_1992,
Title = {Bivariate {Extensions} of the {Boxplot}},
Author = {Goldberg, Kenneth M. and Iglewicz, Boris},
Journal = {Technometrics},
Year = {1992},
Month = aug,
Number = {3},
Pages = {307--320},
Volume = {34},
Abstract = {The boxplot has proven to be a very useful tool for summarizing univariate data. Several options of bivariate boxplot-type constructions are discussed. These include both elliptic and asymmetric plots. An inner region contains 50\% of the data, and a fence identifies potential outliers. Such a robust plot shows location, scale, correlation, and a resistant regression line. Alternative constructions are compared in terms of efficiency of the relevant parameters. Additional properties are given and recommendations made. Emphasis is given to the bivariate biweight M estimator. Several practical examples illustrate that standard least squares ellipsoids can give graphically misleading summaries.},
Doi = {10.1080/00401706.1992.10485280},
ISSN = {0040-1706},
Keywords = {Ellipsoid, Outlier, Resistant line, Robust estimators},
Url = {https://www.tandfonline.com/doi/abs/10.1080/00401706.1992.10485280},
Urldate = {2019-09-11}
}
@InProceedings{heer_crowdsourcing_2010,
Title = {Crowdsourcing graphical perception: using mechanical turk to assess visualization design},
Author = {Heer, Jeffrey and Bostock, Michael},
Booktitle = {Proceedings of the {SIGCHI} {Conference} on {Human} {Factors} in {Computing} {Systems}},
Year = {2010},
Pages = {203--212},
Publisher = {ACM},
Shorttitle = {Crowdsourcing graphical perception}
}
@Article{hosmer_comparison_1997,
Title = {A comparison of goodness-of-fit tests for the logistic regression model},
Author = {Hosmer, David W. and Hosmer, Trina and Le Cessie, Saskia and Lemeshow, Stanley},
Journal = {Statistics in medicine},
Year = {1997},
Number = {9},
Pages = {965--980},
Volume = {16}
}
@Book{huff_how_1993,
Title = {How to lie with statistics},
Author = {Huff, Darrell},
Publisher = {WW Norton \& Company},
Year = {1993},
Note = {originally published 1954}
}
@Misc{hullman_how_2019,
Title = {How to {Get} {Better} at {Embracing} {Unknowns}: {Interpreting} uncertainty through data visualizations},
Author = {Hullman, Jessica},
Month = sep,
Year = {2019},
Abstract = {Data-visualization techniques can clarify the uncertainty in information or make it more confusing if not implemented well.
For example, even though error bars seem exact, people often misunderstand them.
Quantile dot plots can be effective because they present uncertainty as discrete probabilities that people can readily see.
Effective visualizations of uncertainty can help us make judgments, analytically and emotionally, about the likelihood of future events.},
Journal = {Scientific American},
Url = {https://www.scientificamerican.com/article/how-to-get-better-at-embracing-unknowns/},
Urldate = {2019-09-03}
}
@Misc{irizarry_you_2019,
Title = {You can replicate almost any plot with {R} · {Simply} {Statistics}},
Author = {Irizarry, Rafael A.},
Month = aug,
Year = {2019},
Abstract = {Although R is great for quickly turning data into plots, it is not widely used for making publication ready figures. But, with enough tinkering you can make almost any plot in R.},
Journal = {Simply Statistics},
Url = {https://simplystatistics.org/2019/08/28/you-can-replicate-almost-any-plot-with-ggplot2/},
Urldate = {2019-08-30}
}
@Misc{johnston_ggplot_2015,
Title = {ggplot fish},
Author = {Johnston, Myfanwy},
Month = mar,
Year = {2015},
Abstract = {guys. GUYS. I'm diving in Palau this week and I've found the \#ggplot2 fish. \#rstats},
Journal = {Twitter},
Language = {en},
Shorttitle = {ggplot fish},
Url = {https://twitter.com/voovarb/status/580722323843596288/photo/1},
Urldate = {2019-09-10}
}
@Article{kahle_ggmap_2013,
Title = {ggmap : {Spatial} {Visualization} with ggplot2},
Author = {Kahle, David and Wickham, Hadley},
Journal = {The R Journal},
Year = {2013},
Month = jun,
Number = {1},
Pages = {144--162},
Volume = {5},
Url = {http://journal.r-project.org/archive/2013-1/RJournal_2013-1_kahle-wickham.pdf}
}
@Article{kosara_infovis_2013,
Title = {{InfoVis} {Is} {So} {Much} {More}: {A} {Comment} on {Gelman} and {Unwin} and an {Invitation} to {Consider} the {Opportunities}},
Author = {Kosara, Robert},
Journal = {Journal of Computational and Graphical Statistics},
Year = {2013},
Month = jan,
Number = {1},
Pages = {29--32},
Volume = {22},
Doi = {10.1080/10618600.2012.755465},
File = {Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/UTYES3JA/10618600.2012.html:text/html},
ISSN = {1061-8600},
Shorttitle = {{InfoVis} {Is} {So} {Much} {More}},
Url = {https://doi.org/10.1080/10618600.2012.755465},
Urldate = {2018-02-12}
}
@Article{levine_editorial_2010,
Title = {Editorial: {Publishing} {Animations}, 3D {Visualizations}, and {Movies} in {JCGS}},
Author = {Levine, Richard A. and Tierney, Luke and Wickham, Hadley and Sampson, Eric and Cook, Dianne and van Dyk, David A.},
Journal = {Journal of Computational and Graphical Statistics},
Year = {2010},
Month = jan,
Number = {1},
Pages = {1--2},
Volume = {19},
Doi = {10.1198/jcgs.2010.191ed},
ISSN = {1061-8600, 1537-2715},
Shorttitle = {Editorial},
Url = {http://amstat.tandfonline.com/doi/abs/10.1198/jcgs.2010.191ed},
Urldate = {2012-05-11}
}
@Article{li_judging_2008,
Title = {Judging correlation from scatterplots and parallel coordinate plots},
Author = {Li, Jing and Martens, Jean-Bernard and van Wijk, Jarke J},
Journal = {Information Visualization},
Year = {2008},
Month = may,
Doi = {10.1057/palgrave.ivs.9500179},
File = {Information Visualization - Abstract of article\: Judging correlation from scatterplots and parallel coordinate plots:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/IPH4KZVV/9500179a.html:text/html},
ISSN = {1473-8716},
Url = {http://www.palgrave-journals.com/ivs/journal/vaop/ncurrent/abs/9500179a.html},
Urldate = {2009-11-11}
}
@Misc{lindberg_viz_2017,
Title = {viz-pub: {A} place to publish data-vizes},
Author = {Lindberg, Henrik},
Month = nov,
Note = {original-date: 2017-06-08T08:40:42Z},
Year = {2017},
File = {Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/T4J3DPJF/viz-pub.html:text/html},
Shorttitle = {viz-pub},
Url = {https://github.com/halhen/viz-pub},
Urldate = {2017-11-07}
}
@Misc{machlis_best_2015,
Title = {Best {R} packages for data import, data wrangling \& data visualization},
Author = {Machlis, Sharon},
Month = nov,
Year = {2015},
Abstract = {Useful R packages in a handy searchable table},
File = {Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/8B6B4ZUG/great-r-packages-for-data-import-wrangling-visualization.html:text/html},
Journal = {Computerworld},
Url = {http://www.computerworld.com/article/2921176/business-intelligence/great-r-packages-for-data-import-wrangling-visualization.html},
Urldate = {2016-05-16}
}
@Article{mccallum_situ_2017,
Title = {In situ exposure to wastewater effluent reduces survival but has little effect on the behaviour or physiology of an invasive {Great} {Lakes} fish},
Author = {McCallum, Erin S. and Du, Sherry N. N. and Vaseghi-Shanjani, Maryam and Choi, Jasmine A. and Warriner, Theresa R. and Sultana, Tamanna and Scott, Graham R. and Balshine, Sigal},
Journal = {Aquatic Toxicology},
Year = {2017},
Month = mar,
Pages = {37--48},
Volume = {184},
Abstract = {Treated effluents from wastewater treatment plants (WWTP) are a significant source of anthropogenic contaminants, such as pharmaceuticals, in the aquatic environment. Although our understanding of how wastewater effluent impacts fish reproduction is growing, we know very little about how effluent affects non-reproductive physiology and behaviours associated with fitness (such as aggression and activity). To better understand how fish cope with chronic exposure to wastewater effluent in the wild, we caged round goby (Neogobius melanostomus) for three weeks at different distances from a wastewater outflow. We evaluated the effects of this exposure on fish survival, behaviour, metabolism, and respiratory traits. Fish caged inside the WWTP and close to the outfall experienced higher mortality than fish from the reference site. Interestingly, those fish that survived the exposure performed similarly to fish caged at the reference site in tests of aggressive behaviour, startle-responses, and dispersal. Moreover, the fish near WWTP outflow displayed similar resting metabolism (O2 consumption rates), hypoxia tolerance, haemoglobin concentration, haematocrit, and blood-oxygen binding affinities as the fish from the more distant reference site. We discuss our findings in relation to exposure site water quality, concentrations of pharmaceutical and personal care product pollutants, and our test species tolerance.},
Doi = {10.1016/j.aquatox.2016.12.017},
ISSN = {0166-445X},
Keywords = {Round goby, Activity, Caging, Cootes Paradise Marsh, PPCPs, Respirometry},
Url = {http://www.sciencedirect.com/science/article/pii/S0166445X16303757},
Urldate = {2018-02-06}
}
@Article{mcgill_variations_1978,
Title = {Variations of {Box} {Plots}},
Author = {McGill, Robert and Tukey, John W. and Larsen, Wayne A.},
Journal = {The American Statistician},
Year = {1978},
Number = {1},
Pages = {12--16},
Volume = {32},
Abstract = {Box plots display batches of data. Five values from a set of data are conventionally used; the extremes, the upper and lower hinges (quartiles), and the median. Such plots are becoming a widely used tool in exploratory data analysis and in preparing visual summaries for statisticians and nonstatisticians alike. Three variants of the basic display, devised by the authors, are described. The first visually incorporates a measure of group size; the second incorporates an indication of rough significance of differences between medians; the third combines the features of the first two. These techniques are displayed by examples.},
Doi = {10.2307/2683468},
ISSN = {0003-1305},
Url = {http://www.jstor.org/stable/2683468},
Urldate = {2018-01-10}
}
@Misc{meeks_color_2018,
Title = {Color {Advice} for {Data} {Visualization} with {D}3.js},
Author = {Meeks, Elijah},
Month = jan,
Year = {2018},
Abstract = {Using color in a post-category20 world},
Journal = {Elijah Meeks},
Url = {https://medium.com/@Elijah_Meeks/color-advice-for-data-visualization-with-d3-js-33b5adc41c90},
Urldate = {2018-02-02}
}
@Book{meeks_d3_2017,
Title = {D3.js in Action: Data visualization with JavaScript},
Author = {Elijah Meeks},
Publisher = {Manning},
Year = {2017},
Edition = {2},
ISBN = {9781617294488},
Url = {https://www.manning.com/books/d3js-in-action-second-edition}
}
@Article{murrell_infovis_2013,
Title = {{InfoVis} and {Statistical} {Graphics}: {Comment}},
Author = {Murrell, Paul},
Journal = {Journal of Computational and Graphical Statistics},
Year = {2013},
Month = jan,
Number = {1},
Pages = {33--37},
Volume = {22},
Doi = {10.1080/10618600.2012.751875},
File = {Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/RPZE7DQ8/10618600.2012.html:text/html},
ISSN = {1061-8600},
Shorttitle = {{InfoVis} and {Statistical} {Graphics}},
Url = {https://doi.org/10.1080/10618600.2012.751875},
Urldate = {2018-02-12}
}
@Misc{noren_cost_2011,
Title = {Cost of {Health} {Care} by {Country}},
Author = {Noren, Laura},
Month = apr,
Year = {2011},
Abstract = {The Society Pages (TSP) is an open-access social science project headquartered in the Department of Sociology at the University of Minnesota},
Journal = {Graphic Sociology},
Language = {en},
Url = {https://thesocietypages.org/graphicsociology/2011/04/26/cost-of-health-care-by-country-national-geographic/},
Urldate = {2018-02-12}
}
@Article{nunez_optimizing_2017,
Title = {Optimizing colormaps with consideration for color vision deficiency to enable accurate interpretation of scientific data},
Author = {Nuñez, Jamie R. and Anderton, Chris R. and Renslow, Ryan S.},
Journal = {arXiv preprint arXiv:1712.01662},
Year = {2017}
}
@Article{peltonen_visualizations_2009,
Title = {Visualizations for assessing convergence and mixing of {Markov} chain {Monte} {Carlo} simulations},
Author = {Peltonen, Jaakko and Venna, Jarkko and Kaski, Samuel},
Journal = {Computational Statistics \& Data Analysis},
Year = {2009},
Month = oct,
Number = {12},
Pages = {4453--4470},
Volume = {53},
Doi = {10.1016/j.csda.2009.07.001},
ISSN = {01679473},
Url = {http://linkinghub.elsevier.com/retrieve/pii/S0167947309002461}
}
@Article{peltonen_visualizations_2009,
Title = {Visualizations for assessing convergence and mixing of {Markov} chain {Monte} {Carlo} simulations},
Author = {Peltonen, Jaakko and Venna, Jarkko and Kaski, Samuel},
Journal = {Computational Statistics \& Data Analysis},
Year = {2009},
Month = oct,
Number = {12},
Pages = {4453--4470},
Volume = {53},
Doi = {10.1016/j.csda.2009.07.001},
ISSN = {01679473},
Url = {http://linkinghub.elsevier.com/retrieve/pii/S0167947309002461}
}
@Book{pugin_true_1853,
Title = {The true principles of pointed or {Christian} architecture: set forth in two lectures delivered at {St}. {Marie}'s, {Oscott}},
Author = {Pugin, Augustus Welby Northmore},
Publisher = {H. G. Bohn},
Year = {1853},
Note = {Google-Books-ID: QphZAAAAYAAJ},
Keywords = {Architecture / General, Architecture / History / General, Architecture / Religious Buildings, Architecture, Gothic},
Language = {en},
Shorttitle = {The true principles of pointed or {Christian} architecture},
Url = {https://books.google.ca/books?id=QphZAAAAYAAJ}
}
@Book{QuinnKeough2002,
Title = {Experimental Design and Data Analysis for Biologists},
Author = {Gerry P. Quinn and Michael J. Keough},
Publisher = {Cambridge University Press},
Year = {2002},
Address = {Cambridge, England},
ISBN = {0521009766}
}
@Misc{rauser_how_2016,
Title = {How {Humans} {See} {Data}},
Author = {Rauser, John},
Month = dec,
Year = {2016},
Abstract = {John Rauser explains a few of the most important results from research into the functioning of the human visual system and the question of how humans decode information presented in graphical form. By understanding and applying this research when designing statistical graphics, you can simplify difficult analytical tasks as much as possible.},
Keywords = {data, PSYCHOLOGY, statistics, Visualization, graphs, monitoring, velocity},
Url = {https://www.youtube.com/watch?v=fSgEeI2Xpdc},
Urldate = {2017-07-24}
}
@Article{rougier_ten_2014,
Title = {Ten {Simple} {Rules} for {Better} {Figures}},
Author = {Rougier, Nicolas P. and Droettboom, Michael and Bourne, Philip E.},
Journal = {PLOS Computational Biology},
Year = {2014},
Month = sep,
Number = {9},
Pages = {e1003833},
Volume = {10},
Doi = {10.1371/journal.pcbi.1003833},
ISSN = {1553-7358},
Keywords = {data visualization, Research Design, Software tools, Vision, Software design, Radii, Eye movements, Seismic signal processing},
Url = {http://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003833},
Urldate = {2016-12-21}
}
@Article{rousseeuw_bagplot_1999,
Title = {The {Bagplot}: {A} {Bivariate} {Boxplot}},
Author = {Rousseeuw, Peter J. and Ruts, Ida and Tukey, John W.},
Journal = {The American Statistician},
Year = {1999},
Month = nov,
Number = {4},
Pages = {382--387},
Volume = {53},
Abstract = {We propose the bagplot, a bivariate generalization of the univariate boxplot. The key notion is the half space location depth of a point relative to a bivariate dataset, which extends the univariate concept of rank. The “depth median” is the deepest location, and it is surrounded by a “bag” containing the n/2 observations with largest depth. Magnifying the bag by a factor 3 yields the “fence” (which is not plotted). Observations between the bag and the fence are marked by a light gray loop, whereas observations outside the fence are flagged as outliers. The bagplot visualizes the location, spread, correlation, skewness, and tails of the data. It is equivariant for linear transformations, and not limited to elliptical distributions. Software for drawing the bagplot is made available for the S-Plus and MATLAB environments. The bagplot is illustrated on several datasets—for example, in a scatterplot matrix of multivariate data.},
Doi = {10.1080/00031305.1999.10474494},
ISSN = {0003-1305},
Keywords = {Algorithms, Depth contours, Graphical display, Location depth, Ranks},
Shorttitle = {The {Bagplot}},
Urldate = {2019-09-11}
}
@Book{sarkar_lattice_2008,
Title = {Lattice: {Multivariate} {Data} {Visualization} with {R}},
Author = {Sarkar, Deepayan},
Publisher = {Springer},
Year = {2008},
Edition = {1},
Month = mar,
ISBN = {0-387-75968-9},
Shorttitle = {Lattice}
}
@Article{schielzeth_simple_2010,
Title = {Simple means to improve the interpretability of regression coefficients},
Author = {Schielzeth, Holger},
Journal = {Methods in Ecology and Evolution},
Year = {2010},
Pages = {103-113},
Volume = {1},
Abstract = {1. Linear regression models are an important statistical tool in evolutionary and ecological studies. Unfortunately, these models often yield some uninterpretable estimates and hypothesis tests, especially when models contain interactions or polynomial terms. Furthermore, the standard errors for treatment groups, although often of interest for including in a publication, are not directly available in a standard linear model. 2. Centring and standardization of input variables are simple means to improve the interpretability of regression coefficients. Further, refitting the model with a slightly modified model structure allows extracting the appropriate standard errors for treatment groups directly from the model. 3. Centring will make main effects biologically interpretable even when involved in interactions and thus avoids the potential misinterpretation of main effects. This also applies to the estimation of linear effects in the presence of polynomials. Categorical input variables can also be centred and this sometimes assists interpretation. 4. Standardization (z-transformation) of input variables results in the estimation of standardized slopes or standardized partial regression coefficients. Standardized slopes are comparable in magnitude within models as well as between studies. They have some advantages over partial correlation coefficients and are often the more interesting standardized effect size. 5. The thoughtful removal of intercepts or main effects allows extracting treatment means or treatment slopes and their appropriate standard errors directly from a linear model. This provides a simple alternative to the more complicated calculation of standard errors from contrasts and main effects. 6. The simple methods presented here put the focus on parameter estimation (point estimates as well as confidence intervals) rather than on significance thresholds. They allow fitting complex, but meaningful models that can be concisely presented and interpreted. The presented methods can also be applied to generalised linear models {(GLM)} and linear mixed models.},
Doi = {10.1111/j.2041-210X.2010.00012.x},
Url = {http://dx.doi.org/10.1111/j.2041-210X.2010.00012.x}
}
@Article{schultz_evidence_2016,
Title = {Evidence for a trophic cascade on rocky reefs following sea star mass mortality in {British} {Columbia}},
Author = {Schultz, Jessica A. and Cloutier, Ryan N. and Côté, Isabelle M.},
Journal = {PeerJ},
Year = {2016},
Month = apr,
Pages = {e1980},
Volume = {4},
Abstract = {Echinoderm population collapses, driven by disease outbreaks and climatic events, may be important drivers of population dynamics, ecological shifts and biodiversity. The northeast Pacific recently experienced a mass mortality of sea stars. In Howe Sound, British Columbia, the sunflower star Pycnopodia helianthoides—a previously abundant predator of bottom-dwelling invertebrates—began to show signs of a wasting syndrome in early September 2013, and dense aggregations disappeared from many sites in a matter of weeks. Here, we assess changes in subtidal community composition by comparing the abundance of fish, invertebrates and macroalgae at 20 sites in Howe Sound before and after the 2013 sea star mortality to evaluate evidence for a trophic cascade. We observed changes in the abundance of several species after the sea star mortality, most notably a four-fold increase in the number of green sea urchins, Strongylocentrotus droebachiensis, and a significant decline in kelp cover, which are together consistent with a trophic cascade. Qualitative data on the abundance of sunflower stars and green urchins from a citizen science database show that the patterns of echinoderm abundance detected at our study sites reflected wider local trends. The trophic cascade evident at the scale of Howe Sound was observed at half of the study sites. It remains unclear whether the urchin response was triggered directly, via a reduction in urchin mortality, or indirectly, via a shift in urchin distribution into areas previously occupied by the predatory sea stars. Understanding the ecological implications of sudden and extreme population declines may further elucidate the role of echinoderms in temperate seas, and provide insight into the resilience of marine ecosystems to biological disturbances.},
Doi = {10.7717/peerj.1980},
ISSN = {2167-8359},
Language = {en},
Url = {https://peerj.com/articles/1980},
Urldate = {2018-02-06}
}
@Misc{sciani_cividis_2018,
Title = {cividis: {Implementation} of the {Matplotlib} 'viridis' color map in {R} (lite version)},
Author = {Sciani, Marco},
Month = jan,
Note = {original-date: 2018-01-15T07:56:06Z},
Year = {2018},
Shorttitle = {cividis},
Url = {https://github.com/marcosci/cividis},
Urldate = {2018-01-15}
}
@Book{steele_beautiful_2010,
Title = {Beautiful {Visualization}: {Looking} at {Data} through the {Eyes} of {Experts}},
Author = {Steele, Julie and Iliinsky, Noah},
Publisher = {O'Reilly Media},
Year = {2010},
Edition = {1},
Month = jun,
ISBN = {1-4493-7986-9},
Shorttitle = {Beautiful {Visualization}}
}
@Article{su_its_2008,
Title = {It’s easy to produce chartjunk using {Microsoft}®{Excel} 2007 but hard to make good graphs},
Author = {Su, Yu-Sung},
Journal = {Computational Statistics \& Data Analysis},
Year = {2008},
Month = jun,
Number = {10},
Pages = {4594--4601},
Volume = {52},
Abstract = {The purpose of default settings in a graphic tool is to make it easy to produce good graphics that accord with the principles of statistical graphics, e.g., [Tufte, E.R., 1990. Envisioning Information. Graphics Press, Cheshire, Conn, Tufte, E.R., 1997. Visual Explanations: Images and Quantities, Evidence and Narrative, 2nd Edition. Graphics Press, Cheshire, Conn, Cleveland, W.S., 1993. Visualizing Data. Hobart Press, N.J Cleveland, W.S., 1994. The Elements of Graphing Data, rev. edition. AT\&T Bell Laboratories, Murray Hill, N.J, Wainer, H., 1997. Visual revelations: Graphical tales of fate and deception from Napoleon to Ross Perot. Copernicus, New York, Spence, R., 2001. Information Visualization. ACM Press \& AddisonWesley, New York, and Few, S., 2004. Show Me the Numbers. Analytic Press, Hillsdale, NJ]. If the defaults do not embody these principles, then the only way to produce good graphics is to be sufficiently familiar with the principles of statistical graphics. This paper shows that Excel graphics defaults do not embody the appropriate principles. Users who want to use Excel are advised to know the principles of good graphics well enough so that they can choose the appropriate options to override the defaults. Microsoft® should overhaul the Excel graphics engine so that its defaults embody the principles of statistical graphics and make it easy for non-experts to produce good graphs.},
Doi = {10.1016/j.csda.2008.03.007},
File = {ScienceDirect Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/T6N4TMUQ/science.html:text/html},
Url = {http://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6V8V-4S1S6FC-6&_user=10&_rdoc=1&_fmt=&_orig=search&_sort=d&view=c&_acct=C000050221&_version=1&_urlVersion=0&_userid=10&md5=d3e57dcf23c1adccee012110b71fefcf},
Urldate = {2008-07-04}
}
@InProceedings{swayne_exploratory_2004,
Title = {Exploratory visual analysis of graphs in {GGobi}},
Author = {Swayne, Deborah F. and Buja, Andreas and Lang, Duncan Temple},
Booktitle = {Proceeds of the 3d International Workshop on Distributed Statistical Computing (DSC 2003)},
Year = {2004},
Editor = {K. Hornik and F. Leisch},
Pages = {477--488},
Publisher = {Springer},
Url = {https://link.springer.com/chapter/10.1007/978-3-7908-2656-2_39}
}
@Article{thompson_graphical_2010,
Title = {Graphical {Comparison} of {MCMC} {Performance}},
Author = {Thompson, Madeleine B},
Journal = {1011.4457},
Year = {2010},
Month = nov,
Abstract = {This paper presents a graphical method for comparing performance of Markov Chain Monte Carlo methods. Most researchers present comparisons of MCMC methods using tables of figures of merit; this paper presents a graphical alternative. It first discusses the computation of autocorrelation time, then uses this to construct a figure of merit, log density function evaluations per independent observation. Then, it demonstrates how one can plot this figure of merit against a tuning parameter in a grid of plots where columns represent sampling methods and rows represent distributions. This type of visualization makes it possible to convey a greater depth of information without overwhelming the user with numbers, allowing researchers to put their contributions into a broader context than is possible with a textual presentation.},
File = {1011.4457 PDF:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/VHPNUKD5/Thompson - 2010 - Graphical Comparison of MCMC Performance.pdf:application/pdf;arXiv.org Snapshot:/home/bolker/.mozilla/firefox/f2nw6467.default/zotero/storage/Q2R69HTJ/1011.html:text/html},
Keywords = {Statistics - Computation, G.3},
Url = {http://arxiv.org/abs/1011.4457},
Urldate = {2010-11-22}
}
@Article{tibshirani_estimating_1987,
Title = {Estimating optimal transformations for regression},
Author = {Rob Tibshirani},
Journal = {Journal of the American Statistical Association},
Year = {1987},
Pages = {394},
Volume = {83}
}
@Book{tufte_visual_2001,
Title = {The {Visual} {Display} of {Quantitative} {Information}},
Author = {Tufte, Edward},
Publisher = {Graphics Press},
Year = {2001},
Edition = {2d}
}
@Book{tufte_beautiful_2006,
Title = {Beautiful evidence},
Author = {Tufte, Edward R},
Publisher = {Graphics Press},
Year = {2006},
Address = {Cheshire, Conn.},
ISBN = {0-9613921-7-7 978-0-9613921-7-8},
Language = {English}
}
@Book{tufte_visual_1997,
Title = {Visual explanations: images and quantities, evidence and narrative},
Author = {Tufte, Edward R},
Publisher = {Graphics Press},
Year = {1997},
Address = {Cheshire, Conn.},
ISBN = {0-9613921-2-6 978-0-9613921-2-3},
Language = {English},
Shorttitle = {Visual explanations}
}
@Book{tufte_envisioning_1995,
Title = {Envisioning information},
Author = {Tufte, Edward R},
Publisher = {Graphics Press},
Year = {1995},
Address = {Cheshire, Conn.},
ISBN = {0-9613921-1-8 978-0-9613921-1-6},
Language = {English}
}
@Article{tufte_dataink_1990,
Title = {Data-{Ink} {Maximization} and {Graphical} {Design}},
Author = {Tufte, E. R.},
Journal = {Oikos},
Year = {1990},
Month = jun,
Note = {ArticleType: research-article / Full publication date: Jun., 1990 / Copyright © 1990 Nordic Society Oikos},
Number = {2},
Pages = {130--144},
Volume = {58},
Copyright = {Copyright © 1990 Nordic Society Oikos},
Doi = {10.2307/3545420},
ISSN = {0030-1299},
Url = {http://www.jstor.org/stable/3545420},
Urldate = {2013-01-03}
}
@PhdThesis{wei_extending_2017,
Title = {Extending {Growth} {Mixture} {Models} and {Handling} {Missing} {Values} via {Mixtures} of {Non}-{Elliptical} {Distributions}},
Author = {Wei, Yuhong},
Year = {2017},
Type = {Thesis},
Abstract = {Growth mixture models (GMMs) are used to model intra-individual change and inter-individual differences in change and to detect underlying group structure in longitudinal studies. Regularly, these models are fitted under the assumption of normality, an assumption that is frequently invalid. To this end, this thesis focuses on the development of novel non-elliptical growth mixture models to better fit real data. Two non-elliptical growth mixture models, via the multivariate skew-t distribution and the generalized hyperbolic distribution, are developed and applied to simulated and real data. Furthermore, these two non-elliptical growth mixture models are extended to accommodate missing values, which are near-ubiquitous in real data.
Recently, finite mixtures of non-elliptical distributions have flourished and facilitated the flexible clustering of the data featuring longer tails and asymmetry. However, in practice, real data often have missing values, and so work in this direction is also pursued. A novel approach, via mixtures of the generalized hyperbolic distribution and mixtures of the multivariate skew-t distributions, is presented to handle missing values in mixture model-based clustering context. To increase parsimony, families of mixture models have been developed by imposing constraints on the component scale matrices whenever missing data occur. Next, a mixture of generalized hyperbolic factor analyzers model is also proposed to cluster high-dimensional data with different patterns of missing values. Two missingness indicator matrices are also introduced to ease the computational burden. The algorithms used for parameter estimation are presented, and the performance of the methods is illustrated on simulated and real data.},
Language = {en},
Url = {https://macsphere.mcmaster.ca/handle/11375/21987},
Urldate = {2018-02-04}
}
@Book{wickham_ggplot2_2009,
Title = {ggplot2: {Elegant} {Graphics} for {Data} {Analysis}},
Author = {Wickham, Hadley},
Publisher = {Springer},
Year = {2009},
Edition = {2nd Printing.},
Month = aug,
ISBN = {0-387-98140-3},
Shorttitle = {ggplot2}
}
@Article{wickham_graphical_2010,