-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphicsGallery.html
624 lines (570 loc) · 29.8 KB
/
graphicsGallery.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>R DataViz Gallery</title>
</head>
<body>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1" /> -->
<link href="auxDocs/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="auxDocs/gallery.css" type="text/css" />
<link rel="stylesheet" href="auxDocs/reset.css" type="text/css" />
<link rel="stylesheet" href="auxDocs/et-book.css" type="text/css" />
<link rel="stylesheet" href="auxDocs/riley.css" type="text/css" />
<!-- <link rel="stylesheet" href="auxDocs/riley-navbar.css" type="text/css" /> -->
<style type="text/css">
/*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;*/
/*}*/
/*.table th:not([align]) {*/
/*text-align: left;*/
/*}*/
.main-container {
max-width: 940px;
margin-left: auto;
margin-right: auto;
}
code {
color: inherit;
/*background-color: rgba(0, 0, 0, 0.04);*/
}
/*img {*/
/*max-width:100%;*/
/*height: auto;*/
/*}*/
/*.tabbed-pane {*/
/*padding-top: 12px;*/
/*}*/
/*button.code-folding-btn:focus {*/
/*outline: none;*/
/*}*/
/*</style>
<style type="text/css">*/
/* padding for bootstrap navbar */
body {
padding-top: 51px;
padding-bottom: 40px;
}
/* offset scroll position for anchor links (for fixed navbar) */
.section h1 {
padding-top: 56px;
margin-top: -56px;
}
.section h2 {
padding-top: 56px;
margin-top: -56px;
}
.section h3 {
padding-top: 56px;
margin-top: -56px;
}
.section h4 {
padding-top: 56px;
margin-top: -56px;
}
.section h5 {
padding-top: 56px;
margin-top: -56px;
}
.section h6 {
padding-top: 56px;
margin-top: -56px;
}
</style>
<!-- <script> -->
<!-- // 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 it active -->
<!-- menuAnchor.parent().addClass('active'); -->
<!-- -->
<!-- // if it's got a parent navbar menu mark it active as well -->
<!-- menuAnchor.closest('li.dropdown').addClass('active'); -->
<!-- }); -->
<!-- </script> -->
<!-- </head> -->
<!-- <body> -->
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
<!-- CODEFOLDING SCRIPT -->
<!-- <script>
window.initializeCodeFolding = function(show) {
// handlers for show-all and hide all
$("#rmd-show-all-code").click(function() {
$('div.r-code-collapse').each(function() {
$(this).collapse('show');
});
});
$("#rmd-hide-all-code").click(function() {
$('div.r-code-collapse').each(function() {
$(this).collapse('hide');
});
});
// index for unique code element ids
var currentIndex = 1;
// select all R code blocks
var rCodeBlocks = $('pre.r');
rCodeBlocks.each(function() {
// create a collapsable div to wrap the code in
var div = $('<div class="collapse r-code-collapse"></div>');
if (show)
div.addClass('in');
var id = 'rcode-643E0F36' + currentIndex++;
div.attr('id', id);
$(this).before(div);
$(this).detach().appendTo(div);
// add a show code button right above
var showCodeText = $('<span>' + (show ? 'Hide' : 'Code') + '</span>');
var showCodeButton = $('<button type="button" class="btn btn-default btn-xs code-folding-btn pull-right"></button>');
showCodeButton.append(showCodeText);
showCodeButton
.attr('data-toggle', 'collapse')
.attr('data-target', '#' + id)
.attr('aria-expanded', show)
.attr('aria-controls', id);
var buttonRow = $('<div class="row"></div>');
var buttonCol = $('<div class="col-md-12"></div>');
buttonCol.append(showCodeButton);
buttonRow.append(buttonCol);
div.before(buttonRow);
// update state of button on show/hide
div.on('hidden.bs.collapse', function () {
showCodeText.text('Code');
});
div.on('show.bs.collapse', function () {
showCodeText.text('Hide');
});
});
}
</script> -->
<div class="container-fluid main-container">
<div class="navbar navbar-default navbar-fixed-top" role=
"navigation">
<div class="container">
<div class="navbar-header"><a class="navbar-brand" href="index.html"><i class="fa fa-home" aria-hidden="true"></i></a></div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav"></ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="litSearchMethods.html">Methods</a>
</li>
<li>
<a href="graphicsGallery.html">DataViz <!--& Tabulations--></a>
</li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">< Source Code ></a>
<ul class="dropdown-menu" role="button">
<li><a href="QCA.nb.html"><code>R</code> Source Code & Output Notebook</a></li>
<li><a href="sourceCode.html"><code>R</code> & <code>SQL</code> Source Files & Data</a></li>
</ul>
</li>
<!-- <li> -->
<!-- <a target="_blank" href="auxDocs/_journal-Passcode.html"> [<i class="fa fa-lock" aria-hidden="true"></i>]</a> -->
<!-- </li> -->
<!-- </ul>
</li> -->
</ul>
</div>
<!--/.nav-collapse --></div>
<!--/.container --></div>
<!--/.navbar -->
<div class="fluid-row" id="header"></div>
</div>
<h1 class="title toc-ignore"><em><code>R</code></em> DataViz Gallery</h1>
<style>
body {
background-color: rgba(0, 0, 0, 0.025);
width: 95%;
}
p {
width:95% !important;
}
h1:not(.title) {
text-align: center;
margin-top: 3em;
margin-bottom: 1.5em;
}
h1:not(.title)::after {
width : 100%;
/*margin-top : 21px;*/
/*margin-bottom : 21px;*/
border : 0;
height: 1px;
/*border-top : 2px solid #3f3f3f;*/
background-image: linear-gradient(to right, #e6e6e6, #333, #e6e6e6);
}
</style>
<hr class="Bold"/>
<div style="text-align:center;">
<p><span class="newthought">Graphics on this page were created using</span> <em><strong>R</strong>-v3.3.3</em> <span class="citation">(R Core Team, 2016)</span>, and the following <em><strong>R</strong>-packages</em>:</p>
<p><em>base-v3.3.</em> <span class="citation">(R Core Team, 2016)</span>, <em>bibtex-v0.4.</em> <span class="citation">(Francois, 2014)</span>, <em>cairoDevice-v2.24.</em> <span class="citation">(Lawrence, 2015)</span>, <em>car-v2.1.</em> <span class="citation">(Fox & Weisberg, 2011)</span>, <em>DBI-v0.7.</em> <span class="citation">(Databases, 2014)</span>, <em>dplyr-v0.5.</em> <span class="citation">(Wickham & Francois, 2015)</span>, <em>extrafont-v0.17.</em> <span class="citation">(Chang, 2014)</span>, <em>ggplot2-v2.2.</em> <span class="citation">(Wickham, 2009)</span>, <em>gWidgets-v0.0.</em> <span class="citation">(Verzani, 2014)</span>, <em>gWidgetsRGtk2-v0.0.</em> <span class="citation">(Lawrence & Verzani, 2014)</span>, <em>igraph-v1.0.</em> <span class="citation">(Csardi & Nepusz, 2006)</span>, <em>knitr-v1.16.</em> <span class="citation">(Xie, 2015)</span>, <em>pander-v0.6.</em> <span class="citation">(Daroczi & Tsegelskyi, 2015)</span>, <em>plyr-v1.8.</em> <span class="citation">(Wickham, 2011)</span>, <em>RGtk2-v2.20.</em> <span class="citation">(Lawrence & Temple Lang, 2010)</span>, <em>rmarkdown-v1.5.</em> <span class="citation">(J. Allaire et al., 2016)</span>, <em>RQDA-v0.2.</em> <span class="citation">(Huang, 2014)</span>, <em>RSQLite-v1.0.</em> <span class="citation">(Wickham, James, & Falcon, 2014)</span>, <em>scales-v0.4.</em> <span class="citation">(Wickham, 2016a)</span>, <em>tidyr-v0.6.</em> <span class="citation">(Wickham, 2016b)</span>, <em>ggthemes-v3.4.</em> <span class="citation">(Arnold, 2016)</span>, <em>kableExtra-v0.2.</em> <span class="citation">(Zhu, 2016)</span>, <em>tufte-v0.2.</em> <span class="citation">(Xie & Allaire, 2016)</span>, <em>devtools-v1.13.</em> <span class="citation">(Wickham & Chang, 2016)</span>, <em>sysfonts-v0.5.</em> <span class="citation">(Qiu & others, 2015)</span>, <em>showtext-v0.4.</em> <span class="citation">(Qiu, 2015)</span>, <em>Riley-v0.1.</em> <span class="citation">(Smith-Hunter, 2017)</span>, and <em>stats-v3.3.</em> <span class="citation">(Team & worldwide, 2017)</span></p>
</div>
<hr class="SemiBold">
<div id="donut-plot-via-the-ggplot2-package" class="section level1">
<h1>Donut Plot via the <strong><code>ggplot2</code></strong> package</h1>
<div class="gallery cf">
<div class="lightbox" href="#rplot-donut_scat-1">
<img src=graphics/bibs/rplot-donut_scat-1.svg style="width=auto;" />
</div>
</div>
</div>
<div id="timelines-via-the-ggplot2-package" class="section level1">
<h1>Timelines via the <strong><code>ggplot2</code></strong> package</h1>
<div class="gallery cf">
<div class="lightbox" href="#graphics/bibs/rplot-tl_inv-1.svg">
<img src=graphics/bibs/rplot-tl_inv-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-tl_map-1.svg">
<img src=graphics/bibs/rplot-tl_map-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-tl_smw-1.svg">
<img src=graphics/bibs/rplot-tl_smw-1.svg style="width=auto;" />
</div>
</div>
</div>
<div id="histogram-timeline-via-base-r-graphics" class="section level1">
<h1>Histogram Timeline via <strong><code>Base R Graphics</code></strong></h1>
<div class="gallery cf">
<div class="lightbox" href="#graphics/bibs/rplot-hist_yrXscat-1.svg">
<img src=graphics/bibs/rplot-hist_yrXscat-1.svg style="width=auto;" />
</div>
</div>
</div>
<div id="dot-plots-via-my-in-progress-riley-package" class="section level1">
<h1>Dot plots<a href="#fn1" class="footnoteRef" id="fnref1"><sup>1</sup></a> via My <em>in Progress</em> <strong><code>Riley</code></strong> Package</h1>
<div class="gallery cf">
<div class="lightbox" href="#graphics/bibs/rplot-dot_populations-1.svg">
<img src=graphics/bibs/rplot-dot_populations-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-dot_qlAnalytics-1.svg">
<img src=graphics/bibs/rplot-dot_qlAnalytics-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-dot_qtAnalytics-1.svg">
<img src=graphics/bibs/rplot-dot_qtAnalytics-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-dot_sampling-1.svg">
<img src=graphics/bibs/rplot-dot_sampling-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-dot_scatXjournal-1.svg">
<img src=graphics/bibs/rplot-dot_scatXjournal-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-dot_settings-1.svg">
<img src=graphics/bibs/rplot-dot_settings-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-dot_topics-1.svg">
<img src=graphics/bibs/rplot-dot_topics-1.svg style="width=auto;" />
</div>
</div>
</div>
<div id="parallel-sets-via-the-ggplot2-package" class="section level1">
<h1>Parallel Sets via the <strong><code>ggplot2</code></strong> package</h1>
<div class="gallery cf">
<div class="lightbox" href="#graphics/bibs/rplot-parset_archivalDataSrcs-1.svg">
<img src=graphics/bibs/rplot-parset_archivalDataSrcs-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_designs-1.svg">
<img src=graphics/bibs/rplot-parset_designs-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_exp-1.svg">
<img src=graphics/bibs/rplot-parset_exp-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_methodologies-1.svg">
<img src=graphics/bibs/rplot-parset_methodologies-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_mixedMethods-1.svg">
<img src=graphics/bibs/rplot-parset_mixedMethods-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_mmMethods-1.svg">
<img src=graphics/bibs/rplot-parset_mmMethods-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_qlAnalytics-1.svg">
<img src=graphics/bibs/rplot-parset_qlAnalytics-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_qlDesigns-1.svg">
<img src=graphics/bibs/rplot-parset_qlDesigns-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_qlMethods-1.svg">
<img src=graphics/bibs/rplot-parset_qlMethods-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_qtAnalytics-1.svg">
<img src=graphics/bibs/rplot-parset_qtAnalytics-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_qtDesigns-1.svg">
<img src=graphics/bibs/rplot-parset_qtDesigns-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_qtMethods-1.svg">
<img src=graphics/bibs/rplot-parset_qtMethods-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_sampling-1.svg">
<img src=graphics/bibs/rplot-parset_sampling-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_scatXjournal-1.svg">
<img src=graphics/bibs/rplot-parset_scatXjournal-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_scatXjournal-2.svg">
<img src=graphics/bibs/rplot-parset_scatXjournal-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/bibs/rplot-parset_settings-1.svg">
<img src=graphics/bibs/rplot-parset_settings-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-parset_ecoLvls-1.svg">
<img src=graphics/EcoLvls/rplot-parset_ecoLvls-1.svg style="width=auto;" />
</div>
</div>
</div>
<div id="network-diagrams-via-the-igraph-arcdiagram" class="section level1">
<h1>Network Diagrams via the <strong><code>igraph</code></strong> & <strong><code>arcdiagram</code></strong></h1>
<div class="gallery cf">
<div class="lightbox" href="#graphics/EcoLvls/rplot-net_ecolvls_analysis-1.svg">
<img src=graphics/EcoLvls/rplot-net_ecolvls_analysis-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-net_ecolvls-1.svg">
<img src=graphics/EcoLvls/rplot-net_ecolvls-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-net_lvls_bibkeys-1.svg">
<img src=graphics/EcoLvls/rplot-net_lvls_bibkeys-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-net_snetgfr-1.svg">
<img src=graphics/EcoLvls/rplot-net_snetgfr-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-net_topics-1.svg">
<img src=graphics/EcoLvls/rplot-net_topics-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-arc_aledges2-1.png">
<img src=graphics/EcoLvls/rplot-arc_aledges2-1.png style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-arc_alnetg-1.png">
<img src=graphics/EcoLvls/rplot-arc_alnetg-1.png style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-arc_lvls_TEST-1.png">
<img src=graphics/EcoLvls/rplot-arc_lvls_TEST-1.png style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-arc_lvls-1.png">
<img src=graphics/EcoLvls/rplot-arc_lvls-1.png style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/EcoLvls/rplot-arc_sys-1.png">
<img src=graphics/EcoLvls/rplot-arc_sys-1.png style="width=auto;" />
</div>
<h1 id="hierarchical-cluster-analysis-dendrograms-related-barplots-via-base-r-graphics">Hierarchical Cluster Analysis Dendrograms & Related Barplots via <strong><code>Base R Graphics</code></strong></h1>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_all-1.svg">
<img src=graphics/cluster/rplot-hclust_all-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_all-2.svg">
<img src=graphics/cluster/rplot-hclust_all-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_bibkeys-1.svg">
<img src=graphics/cluster/rplot-hclust_bibkeys-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_pops-1.svg">
<img src=graphics/cluster/rplot-hclust_pops-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_pops-2.svg">
<img src=graphics/cluster/rplot-hclust_pops-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_smthds-1.svg">
<img src=graphics/cluster/rplot-hclust_smthds-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_smthds-2.svg">
<img src=graphics/cluster/rplot-hclust_smthds-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_topics1-1.svg">
<img src=graphics/cluster/rplot-hclust_topics1-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_topics1-2.svg">
<img src=graphics/cluster/rplot-hclust_topics1-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_topics2-1.svg">
<img src=graphics/cluster/rplot-hclust_topics2-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_topics2-2.svg">
<img src=graphics/cluster/rplot-hclust_topics2-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-hclust_topics3-1.svg">
<img src=graphics/cluster/rplot-hclust_topics3-1.svg style="width=auto;" />
</div>
<h1 id="k-means-fuzzy-analysis-clustering-graphics-via-the-cluster-package">K-Means & Fuzzy Analysis Clustering Graphics via the <strong><code>Cluster</code></strong> Package</h1>
<div class="lightbox" href="#graphics/cluster/rplot-kclust_all-1.svg">
<img src=graphics/cluster/rplot-kclust_all-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-kclust_pops-1.svg">
<img src=graphics/cluster/rplot-kclust_pops-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-kclust_pops-2.svg">
<img src=graphics/cluster/rplot-kclust_pops-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-kclust_smthds-1.svg">
<img src=graphics/cluster/rplot-kclust_smthds-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-kclust_smthds-2.svg">
<img src=graphics/cluster/rplot-kclust_smthds-2.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-kclust_topics1-1.svg">
<img src=graphics/cluster/rplot-kclust_topics1-1.svg style="width=auto;" />
</div>
<div class="lightbox" href="#graphics/cluster/rplot-kclust_topics2-1.svg">
<img src=graphics/cluster/rplot-kclust_topics2-1.svg style="width=auto;" />
</div>
</div>
<hr class="Bold">
<h1 style="text-align:left;margin-top:-1em;">
References
</h1>
<div class="refs">
<div id="refs" class="references">
<div id="ref-R-rmarkdown">
<p>Allaire, J., Cheng, J., Xie, Y., McPherson, J., Chang, W., Allen, J., … Hyndman, R. (2016). <em>rmarkdown: Dynamic documents for R</em>. Retrieved from <a href="https://CRAN.R-project.org/package=rmarkdown" class="uri">https://CRAN.R-project.org/package=rmarkdown</a></p>
</div>
<div id="ref-R-ggthemes">
<p>Arnold, J. B. (2016). <em>ggthemes: Extra themes, scales and geoms for ggplot2</em>. Retrieved from <a href="https://CRAN.R-project.org/package=ggthemes" class="uri">https://CRAN.R-project.org/package=ggthemes</a></p>
</div>
<div id="ref-R-extrafont">
<p>Chang, W. (2014). <em>extrafont: Tools for using fonts</em>. Retrieved from <a href="https://CRAN.R-project.org/package=extrafont" class="uri">https://CRAN.R-project.org/package=extrafont</a></p>
</div>
<div id="ref-cleveland1984graphical">
<p>Cleveland, W. S. (1984). Graphical methods for data presentation: Full scale breaks, dot charts, and multibased logging. <em>The American Statistician</em>, <em>38</em>, 270–280.</p>
</div>
<div id="ref-R-igraph">
<p>Csardi, G., & Nepusz, T. (2006). The igraph software package for complex network research. <em>Interjournal</em>, <em>Complex Systems</em>, 1695. Retrieved from <a href="http://igraph.org" class="uri">http://igraph.org</a></p>
</div>
<div id="ref-R-pander">
<p>Daroczi, G., & Tsegelskyi, R. (2015). <em>pander: An R pandoc writer</em>. Retrieved from <a href="https://CRAN.R-project.org/package=pander" class="uri">https://CRAN.R-project.org/package=pander</a></p>
</div>
<div id="ref-R-DBI">
<p>Databases, R. S. I. G. on. (2014). <em>DBI: RDatabase interface</em>. Retrieved from <a href="https://CRAN.R-project.org/package=DBI" class="uri">https://CRAN.R-project.org/package=DBI</a></p>
</div>
<div id="ref-R-car">
<p>Fox, J., & Weisberg, S. (2011). <em>An R companion to applied regression</em> (Second). Thousand Oaks CA: SAGE. Retrieved from <a href="http://socserv.socsci.mcmaster.ca/jfox/Books/Companion" class="uri">http://socserv.socsci.mcmaster.ca/jfox/Books/Companion</a></p>
</div>
<div id="ref-R-bibtex">
<p>Francois, R. (2014). <em>bibtex: Bibtex parser</em>. Retrieved from <a href="https://CRAN.R-project.org/package=bibtex" class="uri">https://CRAN.R-project.org/package=bibtex</a></p>
</div>
<div id="ref-R-RQDA">
<p>Huang, R. (2014). <em>RQDA: R-based qualitative data analysis</em>. Retrieved from <a href="http://rqda.r-forge.r-project.org/" class="uri">http://rqda.r-forge.r-project.org/</a></p>
</div>
<div id="ref-R-cairoDevice">
<p>Lawrence, M. (2015). <em>cairoDevice: Embeddable cairo graphics device driver</em>. Retrieved from <a href="https://CRAN.R-project.org/package=cairoDevice" class="uri">https://CRAN.R-project.org/package=cairoDevice</a></p>
</div>
<div id="ref-R-RGtk2">
<p>Lawrence, M., & Temple Lang, D. (2010). RGtk2: A graphical user interface toolkit for R. <em>Journal of Statistical Software</em>, <em>37</em>(8), 1–52. Retrieved from <a href="http://www.jstatsoft.org/v37/i08/" class="uri">http://www.jstatsoft.org/v37/i08/</a></p>
</div>
<div id="ref-R-gWidgetsRGtk2">
<p>Lawrence, M., & Verzani, J. (2014). <em>gWidgetsRGtk2: Toolkit implementation of gWidgets for RGtk2</em>. Retrieved from <a href="https://CRAN.R-project.org/package=gWidgetsRGtk2" class="uri">https://CRAN.R-project.org/package=gWidgetsRGtk2</a></p>
</div>
<div id="ref-R-showtext">
<p>Qiu, Y. (2015). <em>showtext: Using fonts more easily in RGraphs</em>. Retrieved from <a href="https://CRAN.R-project.org/package=showtext" class="uri">https://CRAN.R-project.org/package=showtext</a></p>
</div>
<div id="ref-R-sysfonts">
<p>Qiu, Y., & others. (2015). <em>sysfonts: Loading system fonts into R</em>. Retrieved from <a href="https://CRAN.R-project.org/package=sysfonts" class="uri">https://CRAN.R-project.org/package=sysfonts</a></p>
</div>
<div id="ref-R-base">
<p>R Core Team. (2016). <em>R: A language and environment for statistical computing</em>. Vienna, Austria: R Foundation for Statistical Computing. Retrieved from <a href="https://www.R-project.org/" class="uri">https://www.R-project.org/</a></p>
</div>
<div id="ref-robbins2006dot">
<p>Robbins, N. P. (2006). Dot plots: A useful alternative to bar charts. Retrieved from <a href="http://www.b-eye-network.com/view/2468" class="uri">http://www.b-eye-network.com/view/2468</a></p>
</div>
<div id="ref-R-Riley">
<p>Smith-Hunter, R. (2017). <em>Riley: A developing package of r functions for (community-based) psychology research</em>. Retrieved from <a href="https://github.com/EccRiley/Riley" class="uri">https://github.com/EccRiley/Riley</a></p>
</div>
<div id="ref-R-stats">
<p>Team, R. C., & worldwide. (2017). <em>The R stats package</em>. Retrieved from <a href="http://www.r-project.org/" class="uri">http://www.r-project.org/</a></p>
</div>
<div id="ref-R-gWidgets">
<p>Verzani, J. (2014). <em>GWidgets: GWidgets API for building toolkit-independent, interactive GUIs</em>. Retrieved from <a href="https://CRAN.R-project.org/package=gWidgets" class="uri">https://CRAN.R-project.org/package=gWidgets</a></p>
</div>
<div id="ref-R-ggplot2">
<p>Wickham, H. (2009). <em>ggplot2: Elegant graphics for data analysis</em>. Springer-Verlag New York. Retrieved from <a href="http://ggplot2.org" class="uri">http://ggplot2.org</a></p>
</div>
<div id="ref-R-plyr">
<p>Wickham, H. (2011). The split-apply-combine strategy for data analysis. <em>Journal of Statistical Software</em>, <em>40</em>(1), 1–29. Retrieved from <a href="http://www.jstatsoft.org/v40/i01/" class="uri">http://www.jstatsoft.org/v40/i01/</a></p>
</div>
<div id="ref-R-scales">
<p>Wickham, H. (2016a). <em>scales: Scale functions for visualization</em>. Retrieved from <a href="https://CRAN.R-project.org/package=scales" class="uri">https://CRAN.R-project.org/package=scales</a></p>
</div>
<div id="ref-R-tidyr">
<p>Wickham, H. (2016b). <em>tidyr: Easily tidy data with spread() and gather() functions</em>. Retrieved from <a href="https://CRAN.R-project.org/package=tidyr" class="uri">https://CRAN.R-project.org/package=tidyr</a></p>
</div>
<div id="ref-R-devtools">
<p>Wickham, H., & Chang, W. (2016). <em>devtools: Tools to make developing RPackages easier</em>. Retrieved from <a href="https://CRAN.R-project.org/package=devtools" class="uri">https://CRAN.R-project.org/package=devtools</a></p>
</div>
<div id="ref-R-dplyr">
<p>Wickham, H., & Francois, R. (2015). <em>dplyr: A grammar of data manipulation</em>. Retrieved from <a href="https://CRAN.R-project.org/package=dplyr" class="uri">https://CRAN.R-project.org/package=dplyr</a></p>
</div>
<div id="ref-R-RSQLite">
<p>Wickham, H., James, D. A., & Falcon, S. (2014). <em>RSQLite: SQLite interface for R</em>. Retrieved from <a href="https://CRAN.R-project.org/package=RSQLite" class="uri">https://CRAN.R-project.org/package=RSQLite</a></p>
</div>
<div id="ref-R-knitr">
<p>Xie, Y. (2015). <em>Dynamic documents with R and knitr</em> (2nd ed.). Boca Raton, Florida: Chapman; Hall/CRC. Retrieved from <a href="http://yihui.name/knitr/" class="uri">http://yihui.name/knitr/</a></p>
</div>
<div id="ref-R-tufte">
<p>Xie, Y., & Allaire, J. (2016). <em>tufte: Tufte’s styles for Rmarkdown documents</em>. Retrieved from <a href="https://CRAN.R-project.org/package=tufte" class="uri">https://CRAN.R-project.org/package=tufte</a></p>
</div>
<div id="ref-R-kableExtra">
<p>Zhu, H. (2016). <em>kableExtra: Decorate kable output using pipe syntax</em>. Retrieved from <a href="https://github.com/haozhu233/kableExtra" class="uri">https://github.com/haozhu233/kableExtra</a></p>
</div>
</div>
</div>
<div class="footnotes">
<hr />
<ol>
<li id="fn1"><p><span class="citation">Robbins (2006)</span>;<span class="citation">Cleveland (1984)</span><a href="#fnref1">↩</a></p></li>
</ol>
</div>
<hr class="Bold" />
<style>
</style>
<div style="width:25%;color:rgba(0, 0, 0, 0.6);text-align:left;font-size:0.75rem;float:right">
<!-- <div class="contactIcons"> -->
<span style="color:#404040;" class="lmText" id="lmText"></span><span id="lmDate" class="lmDate"></span>
<hr />
<a href="mailto:[email protected]" target="_blank" aria-label="Email: [email protected]" class="iconOnly"><i class="fa fa-envelope" aria-hidden="true"></i></a> <a href="https://www.linkedin.com/in/rachel-smith-9b8b2931/" target="_blank" aria-label="Linked In" class="iconOnly"><i class="fa fa-linkedin-square"></i></a> <a href="https://github.com/eccriley" target="_blank" aria-label="Github" class="iconOnly"><i class="fa fa-github-square" aria-hidden="true"></i></a> <a href="https://twitter.com/rileymsmith19" target="_blank" aria-label="Twitter" class="iconOnly"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
<!-- </div> -->
<hr />
<span>Design by <a href="EccRiley.github.io"><em><strong>Rachel ("Riley") Smith-Hunter</strong></em></a> based on the <a href="https://github.com/edwardtufte/tufte-css"><em><code>Tufte CSS</code></em></a> theme by <a href="https://github.com/daveliepmann"><em>Dave Liepmann</em></a> & <a href="https://github.com/edwardtufte"><em>Edward Tufte</em></a></span>
<hr />
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Conducting a Community-Psychology-Focused & Action-Oriented Systematic Literature Review using R, SQL, & Git</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://eccriley.github.io/CommPsy-SysLitRvw/" property="cc:attributionName" rel="cc:attributionURL">Rachel M. Smith-Hunter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>. Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="EccRiley.github.io" rel="dct:source">EccRiley.github.io</a>.<br /><br />
<script src="auxDocs/lastModified.js"></script>
</div>
<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
</script>
</body>
</html>