forked from ggplot2-exts/gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
1947 lines (1832 loc) · 67 KB
/
_config.yml
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
markdown: kramdown
encoding: "utf-8"
sass:
sass_dir: css
style: compressed
widgets:
-
name: ggQQunif
thumbnail: images/ggQQunif.png
url: https://github.com/rcorty/ggQQunif
jslibs: >
ghuser: rcorty
ghrepo: ggQQunif
tags: visualization,quantiles,p-values,statistics,big data
cran: true
release: 0.1.5
examples:
ghauthor: rcorty
short: >
Make QQ plots for big data expected to be uniformly distributed, e.g. p-values.
description: >
For "big data" applications, we often have thousands or millions of p-values.
The QQ-plot is a standard way to evaluate them, but can be horrifyingly slow when there are many p-values.
This package computes where all the points would go in the naive implementation, then thins them strategically to greatly reduce overplotting, resulting in much faster plotting.
-
name: ggupset
thumbnail: images/ggupset.png
url: https://github.com/const-ae/ggupset
jslibs: >
ghuser: const-ae
ghrepo: ggupset
tags: visualization,upset,combination matrix
cran: true
release:
examples: https://github.com/const-ae/ggupset#example
ghauthor: const-ae
short: >
Combination Matrix Axis for 'ggplot2' to Create 'UpSet' Plots
description: >
Replace the standard x-axis in 'ggplots' with a combination matrix
to visualize complex set overlaps. 'UpSet' has introduced a new way to visualize
the overlap of sets as an alternative to Venn diagrams.
This package provides a simple way to produce such plots using 'ggplot2'.
In addition it can convert any categorical axis into a combination
matrix axis.
-
name: xmrr
thumbnail: images/xmr_chart.png
url: https://github.com/Zanidean/xmrr
jslibs: >
ghuser: Zanidean
ghrepo: xmrr
tags: XmR, Visualization, Control Charts, QC, XBar
cran: true
release:
examples: https://sramhc.shinyapps.io/xmrbuilder/
ghauthor: Alex Zanidean
short: >
Generate XMR Control Chart Data from Time-Series Data.
description: >
Use xmr() for XmR data which re-calculates to signal true change, and use xmr_chart() for XmR style control charts with recalculated process limits.
-
name: gg3D
thumbnail: images/gg3D.png
url: https://github.com/AckerDWM/gg3D
jslibs: >
ghuser: AckerDWM
ghrepo: gg3D
tags: 3D, Visualization
cran: false
release:
examples: http://htmlpreview.github.io/?https://github.com/AckerDWM/gg3D/blob/master/gg3D-vignette.html
ghauthor: Daniel Acker
short: >
3D perspective plots for ggplot2
description: >
gg3D adds 3D axes, 3D perspective projections with arbitrary rotations, and 3D wireframe plots to ggplot.
-
name: ggQC
thumbnail: images/ggQC.png
url: https://github.com/kenithgrey/ggQC
jslibs: >
ghuser: kenithgrey
ghrepo: ggQC
tags: QC, XmR, XbarR, SixSigma, Visualization
cran: true
release:
examples: http://ggqc.r-bar.net/
ghauthor: Kenith Grey
short: >
Use ggQC to plot single, faceted and multi-layered quality control charts .
description: >
ggQC is used to create single, faceted, or multi-layered quality control charts using functions stat_QC(), stat_QC_lines() and stat_mR(). Supported charts include XmR, XbarR, n, c, p, np and more.
-
name: ggdist
thumbnail: images/ggdist.png
url: https://mjskay.github.io/ggdist
jslibs: >
ghuser: mjskay
ghrepo: ggdist
tags: visualization,uncertainty,confidence,probability
cran: true
release:
examples: https://mjskay.github.io/ggdist/articles
ghauthor: mjskay
short: >
'ggdist' provides stats and geoms for visualizing distributions and uncertainty.
description: >
'ggdist' provides stats and geoms for visualizing distributions that are particularly tuned for
visualizing uncertainty in either a frequentist or Bayesian mode. Both analytical distributions (such as
frequentist confidence distributions or Bayesian priors) and distributions represented as samples (such as
bootstrap distributions or Bayesian posterior samples) are easily visualized. Visualization primitives include
but are not limited to: points with multiple uncertainty intervals, eye plots,
density plots, gradient plots, dot plots, quantile dot plots,
complementary cumulative distribution function (CCDF) barplots,
and fit curves with multiple uncertainty ribbons.
-
name: ggedit
thumbnail: images/ggedit.png
url: https://github.com/metrumresearchgroup/ggedit
jslibs: >
ghuser: metrumresearchgroup
ghrepo: ggedit
tags: visualization, interactive, shiny, general,themes
cran: true
release:
examples:
ghauthor: yonicd
short: >
ggedit is aimed to interactively edit ggplot layers, scales and themes aesthetics
description: >
ggedit is aimed to allows novice and expert ggplot2 users to interactively edit ggplot layers, scales and themes aesthetics, while returning objects and scripts of updated plots using shiny gadgets and modules.
-
name: ggpage
thumbnail: images/ggpage.png
url: https://emilhvitfeldt.github.io/ggpage/
jslibs: >
ghuser: emilhvitfeldt
ghrepo: ggpage
tags: visualization,text
cran: true
release:
examples: https://emilhvitfeldt.github.io/ggpage/
ghauthor: emilhvitfeldt
short: >
Creates Page Layout Visualizations.
description: >
Facilitates the creation of page layout
visualizations in which words are represented as rectangles with sizes
relating to the length of the words. Which then is divided in lines
and pages for easy overview of up to quite large texts.
-
name: ggbreak
thumbnail: images/ggbreak.png
url: https://github.com/YuLab-SMU/ggbreak
jslibs: >
ghuser: YuLab-SMU
ghrepo: ggbreak
tags: visualization, geoms
cran: true
release:
examples: https://cran.r-project.org/web/packages/ggbreak/vignettes/ggbreak.html
ghauthor: YuLab-SMU
short: >
Set Axis Break for 'ggplot2'
description: >
An implementation of scale functions for setting axis breaks of a 'gg' plot.
-
name: ggimg
thumbnail: images/ggimg.png
url: https://github.com/statsmaths/ggimg
jslibs: >
ghuser: statsmaths
ghrepo: ggimg
tags: visualization, geoms
cran: true
release:
examples:
ghauthor: statsmaths
short: >
Graphics Layers for Plotting Image Data with ggplot2.
description: >
Provides two new layer types for displaying image data as layers
within the Grammar of Graphics framework. Displays images using either a
rectangle interface, with a fixed bounding box, or a point interface using a
central point and general size parameter. Images can be given as local
JPEG or PNG files, external resources, or as a list column containing
raster image data.
-
name: gganatogram
thumbnail: images/gganatogram.png
url: https://github.com/jespermaag/gganatogram
jslibs: >
ghuser: jespermaag
ghrepo: gganatogram
tags: anatograms, tissue, visualization, anatomy, expression, pharmacology
cran: false
release:
examples:
ghauthor: jespermaag
short: >
gganatogram makes it possible to visualise tissues for different organisms
or cell compartments.
description: >
gganatogram is aimed to users who would like to visualise certain organs
or cell compartments based on values, or to highlight tissues. This can be
useful when the user easily want to display tissue information e.g. RNA-seq,
pharmacology or mutations per tissue.
-
name: ggforce
thumbnail: images/ggforce.png
url: https://github.com/thomasp85/ggforce
jslibs: >
ghuser: thomasp85
ghrepo: ggforce
tags: visualization,general
cran: true
release:
examples:
ghauthor: thomasp85
short: >
ggforce is aimed at providing missing functionality to ggplot2 through the extension system introduced with ggplot2 v2.0.0.
description: >
-
name: ggalt
thumbnail: images/ggalt.png
url: https://github.com/hrbrmstr/ggalt
jslibs: >
ghuser: hrbrmstr
ghrepo: ggalt
tags: visualization,general
cran: true
release:
examples:
ghauthor: hrbrmstr
short: >
A compendium of ‘geoms’, ‘coords’ and ‘stats’ for ‘ggplot2’.
description: >
A compendium of ‘geoms’, ‘coords’ and ‘stats’ for ‘ggplot2’, including splines, 1d and 2d densities, univariate average shifted histograms and a new map coordinate system based on the ‘PROJ.4’-library.
-
name: ggiraph
thumbnail: images/ggiraph.png
url: https://github.com/davidgohel/ggiraph
jslibs: >
ghuser: davidgohel
ghrepo: ggiraph
tags: visualization,general
cran: true
release:
examples:
ghauthor: davidgohel
short: >
htmlwidget to make 'ggplot' graphics interactive.
description: >
-
name: ggmuller
thumbnail: images/ggmuller.png
url: https://cran.r-project.org/web/packages/ggmuller/index.html
jslibs: >
ghuser: robjohnnoble
ghrepo: ggmuller
tags: visualization,evolution,dynamics
cran: true
release:
examples: https://cran.r-project.org/web/packages/ggmuller/vignettes/ggmuller.html
ghauthor: robjohnnoble
short: >
Creates Muller plots for visualizing evolutionary dynamics.
description: >
An attempt to set an easy-to-use standard for representing evolutionary dynamics.
Should prove useful to researchers in experimental evolution, cancer research, population genetics, and beyond.
-
name: ggstance
thumbnail: images/ggstance.png
url: https://github.com/lionel-/ggstance
jslibs: >
ghuser: lionel-
ghrepo: ggstance
tags: visualization,general
cran: true
release:
examples:
ghauthor: lionel-
short: >
ggstance implements horizontal versions of common ggplot2 geoms.
description: >
-
name: ggrepel
thumbnail: images/ggrepel.png
url: https://github.com/slowkow/ggrepel
jslibs: >
ghuser: slowkow
ghrepo: ggrepel
tags: visualization,general
cran: true
release:
examples: https://cran.r-project.org/web/packages/ggrepel/vignettes/ggrepel.html
ghauthor: slowkow
short: >
Repel overlapping text labels away from each other.
description: >
-
name: ggraph
thumbnail: images/ggraph.png
url: https://github.com/thomasp85/ggraph
jslibs: >
ghuser: thomasp85
ghrepo: ggraph
tags: visualization,general
cran: true
release:
examples:
ghauthor: thomasp85
short: >
ggraph is tailored at plotting graph-like data structures (graphs, networks, trees, hierarchies...).
description: >
-
name: gginnards
thumbnail: images/gginnards.png
url: https://docs.r4photobiology.info/gginnards
jslibs: >
ghuser: aphalo
ghrepo: gginnards
tags: grammar extensions,layer manipulation,debug
cran: true
release:
examples: https://docs.r4photobiology.info/gginnards/articles
ghauthor: aphalo
short: >
Find, delete, insert and move plot layers. Delete unused data from the
data object stored within a ggplot object. Dump data to the R console.
description: >
Package ‘gginnards’ is a set of extensions to R package ‘ggplot2’
(>= 3.0.0). Provides tools making easy to edit and explore ggplot objects.
It also provides stats and geom that can be used to dump the data input
to geoms and stats to the R console or to summarize it using arbitrary
functions and then dumping the summary to the R console.
-
name: ggpp
thumbnail: images/ggpp.png
url: https://docs.r4photobiology.info/ggpp
jslibs: >
ghuser: aphalo
ghrepo: ggpp
tags: grammar extensions,plot insets,position nudge,npc
cran: true
release:
examples: https://docs.r4photobiology.info/ggpp/articles
ghauthor: aphalo
short: >
Add plots, tables and grobs as plot insets; nudge labels away from a focal
point or line; filter observations by local density.
description: >
Package ‘ggpp’ (Grammar Extensions) is a set of extensions to
R package ‘ggplot2’ (>= 3.0.0). Provides `geom_plot()`, `geom_grob()`,
`geom_table()` and `stat_fmt_tb()` for insets. Constructors ggplot.ts()`
and `ggplot.xts()`. Geometries for margin annotations. Selective
annotation of observations in high/low density plot regions and nudging
away from lines or focal points, compatible with `geom_text_repel()` and
`geom_label_repel()` from package ‘ggrepel’.
-
name: ggpmisc
thumbnail: images/ggpmisc.png
url: https://docs.r4photobiology.info/ggpmisc
jslibs: >
ghuser: aphalo
ghrepo: ggpmisc
tags: visualization,general,model fit,anova,table
cran: true
release:
examples: https://docs.r4photobiology.info/ggpmisc/articles
ghauthor: aphalo
short: >
Annotate plots with fitted model equations, ANOVA tables, summary tables;
find and label peaks and valleys; annotations support grouping and facets.
description: >
Package ‘ggpmisc’ (Miscellaneous Extensions to ‘ggplot2’) is a set of
extensions to R package ‘ggplot2’ (>= 3.0.0) with emphasis on annotations
and highlighting related to fitted models and data summaries. scales
suitable for volcano and quadrant plots. Stats for locating peaks and
valleys. See also packages 'gginnards' and 'ggpp' for functions previously
included in 'ggpmisc'.
-
name: geomnet
thumbnail: images/geomnet.png
url: https://github.com/sctyner/geomnet
jslibs: >
ghuser: sctyner
ghrepo: geomnet
tags: visualization,general
cran: true
release:
examples:
ghauthor: sctyner
short: >
geomnet implements network visualizations in ggplot2 via geom_net.
description: >
-
name: ggExtra
thumbnail: images/ggExtra.png
url: https://github.com/daattali/ggExtra
jslibs: >
ghuser: daattali
ghrepo: ggExtra
tags: histogram,marginal,density
cran: true
release:
examples: http://daattali.com/shiny/ggExtra-ggMarginal-demo/
ghauthor: daattali
short: >
ggExtra lets you add marginal density plots or histograms to ggplot2 scatterplots.
description: >
-
name: ggfortify
thumbnail: images/ggfortify.png
url: https://github.com/sinhrks/ggfortify
jslibs: >
ghuser: sinhrks
ghrepo: ggfortify
tags: visualization,general
cran: true
release:
examples: https://github.com/sinhrks/ggfortify#examples
ghauthor: terrytangyuan
short: >
The unified interface to ggplot2 many popular statistical pakackage results.
description: >
Unified plotting tools for statistics commonly used, such as GLM, time series,
PCA families, clustering and survival analysis. The package offers a single
plotting interface for these analysis results and plots in a unified style
using 'ggplot2'.
-
name: autoplotly
thumbnail: images/ggfortify.png
url: https://github.com/terrytangyuan/autoplotly
jslibs: plotly
ghuser: terrytangyuan
ghrepo: autoplotly
tags: visualization,general
cran: true
release:
examples: https://terrytangyuan.github.io/2018/02/12/autoplotly-intro/
ghauthor: terrytangyuan
short: >
Automatic generation of interactive visualizations for popular statistical results.
description: >
Automatically generate interactive visualizations for popular statistical results
supported by 'ggfortify', such as time series, PCA, clustering and survival analysis,
with 'plotly.js' <https://plot.ly/> and 'ggplot2' style. The generated visualizations
can also be easily extended using 'ggplot2' and 'plotly' syntax while staying interactive.
-
name: gganimate
thumbnail: images/gganimate.gif
url: https://gganimate.com
jslibs: >
ghuser: thomasp85
ghrepo: gganimate
tags: visualization,general
cran: true
release:
examples: https://gganimate.com
ghauthor: thomasp85
short: >
A Grammar of Animated Graphics.
description: >
The grammar of graphics as implemented in the 'ggplot2' package has
been successful in providing a powerful API for creating static
visualisation. In order to extend the API for animated graphics this package
provides a completely new set of grammar, fully compatible with 'ggplot2'
for specifying transitions and animations in a flexible and extensible way.
-
name: ggfx
thumbnail: images/ggfx.png
url: https://ggfx.data-imaginist.com/
jslibs: >
ghuser: thomasp85
ghrepo: ggfx
tags: visualization,general
cran: true
release:
examples: https://ggfx.data-imaginist.com/
ghauthor: thomasp85
short: >
Pixel Filters for 'ggplot2' and 'grid'
description: >
Provides a range of filters that can be applied to layers from the
'ggplot2' package and its extensions, along with other graphic elements such
as guides and theme elements. The filters are applied at render time and
thus uses the exact pixel dimensions needed.
-
name: plotROC
thumbnail: images/plotROC.png
url: https://github.com/sachsmc/plotROC
jslibs: >
ghuser: sachsmc
ghrepo: plotROC
tags: visualization,general
cran: true
release:
examples:
ghauthor: sachsmc
short: >
plotROC provides functions to generate an interactive ROC curve plot
for web use, and print versions.
description: >
-
name: ggbump
thumbnail: images/ggbump.png
url: https://github.com/davidsjoberg/ggbump
jslibs: >
ghuser: davidsjoberg
ghrepo: ggbump
tags: visualization,general,geoms
cran: true
release:
examples:
ghauthor: davidsjoberg
short: >
Bump Chart and Sigmoid Curves.
description: >
A geom for ggplot to create bump plots. Can be good to use for showing
rank over time.
-
name: ggthemes
thumbnail: images/ggthemes.png
url: https://github.com/jrnold/ggthemes
jslibs: >
ghuser: jrnold
ghrepo: ggthemes
tags: visualization,general,themes
cran: true
release:
examples:
ghauthor: jrnold
short: >
Some extra geoms, scales, and themes for ggplot.
description: >
-
name: ggspectra
thumbnail: images/ggspectra.png
url: https://docs.r4photobiology.info/ggspectra
jslibs: >
ghuser:
ghrepo:
tags: visualization,general
cran: true
release:
examples: https://docs.r4photobiology.info/ggspectra/articles
ghauthor: aphalo
short: >
'ggspectra' extends 'ggplot2' with stats, geoms and annotations for
plotting light spectra.
description: >
The goal of ‘ggspectra’ is to make it easy to plot radiation spectra and
similar data, such and transmittance, absorbance and reflectance spectra,
producing fully annotated publication- and presentation-ready plots.
Package ‘ggspectra’ provides stats, geoms, scales and functions to be
used for plotting radiation-related spectra and annotating the plots with
quantities derived from spectral data. All summary quantities implemented
in ‘photobiology’ can be used for annotations including biologically
effective irradiances and exposures.
-
name: ggstatsplot
thumbnail: images/ggstatsplot.png
url: https://github.com/IndrajeetPatil/ggstatsplot
jslibs: >
ghuser: IndrajeetPatil
ghrepo: ggstatsplot
tags: visualization,statistics
cran: true
release:
examples: https://indrajeetpatil.github.io/ggstatsplot/
ghauthor: IndrajeetPatil
short: >
'ggstatsplot' provides a collection of functions to enhance 'ggplot2'
plots with results from statistical tests.
description: >
Extension of 'ggplot2', 'ggstatsplot' creates graphics with
details from statistical tests included in the plots themselves. It
provides an easier syntax to generate information-rich plots for
statistical analysis of continuous (violin plots, scatterplots,
histograms, dot plots, dot-and-whisker plots) or categorical (pie and
bar charts) data. Currently, it supports the most common types of
statistical approaches and tests: parametric, nonparametric, robust,
and Bayesian versions of t-test/ANOVA, correlation analyses,
contingency table analysis, meta-analysis, and regression analyses.
-
name: ggnetwork
thumbnail: images/ggnetwork.png
url: https://github.com/briatte/ggnetwork
jslibs: >
ghuser: briatte
ghrepo: ggnetwork
tags: visualization,general
cran: true
release:
examples:
ghauthor: briatte
short: >
The ggnetwork package provides a way to build network plots with ggplot2.
description: >
-
name: ggtech
thumbnail: images/ggtech.png
url: https://github.com/ricardo-bion/ggtech
jslibs: >
ghuser: ricardo-bion
ghrepo: ggtech
tags: visualization,general,themes
cran: true
release:
examples:
ghauthor: ricardo-bion
short: >
ggplot2 tech themes, scales, and geoms.
description: >
-
name: ggradar
thumbnail: images/ggradar.png
url: https://github.com/ricardo-bion/ggradar
jslibs: >
ghuser: ricardo-bion
ghrepo: ggradar
tags: visualization,general
cran: true
release:
examples:
ghauthor: ricardo-bion
short: >
ggradar allows you to build radar charts with ggplot2.
description: >
-
name: ggx
thumbnail: images/ggx.png
url: https://github.com/brandmaier/ggx
jslibs: >
ghuser: brandmaier
ghrepo: ggx
tags: visualization,nlp
cran: true
release:
examples:
ghauthor: brandmaier
short: >
A Natural Language Interface to 'ggplot2'.
description: >
The 'ggplot2' package is the state-of-the-art toolbox for
creating and formatting graphs. However, it is easy to forget
how certain formatting commands are named and sometimes users
find themselves asking: How do you rotate the x-axis labels again?
Or how do you hide the legend...? This package allows users to issue
natural language commands related to theme-related styling of plots
(colors, font size and such), which then are translated into valid
'ggplot2' commands.
-
name: ggTimeSeries
thumbnail: images/ggTimeSeries.png
url: https://github.com/Ather-Energy/ggTimeSeries
jslibs: >
ghuser: Ather-Energy
ghrepo: ggTimeSeries
tags: visualization,general
cran: true
release:
examples:
ghauthor: Ather-Energy
short: >
This R package offers novel time series visualisations.
description: >
-
name: ggtree
thumbnail: images/ggtree.png
url: https://guangchuangyu.github.io/ggtree
jslibs: >
ghuser: GuangchuangYu
ghrepo: ggtree
tags: visualization,general
cran: false
release:
examples: https://guangchuangyu.github.io/ggtree/featuredArticles/
ghauthor: GuangchuangYu
short: >
gtree is designed for visualizing phylogenetic tree and different types of associated annotation data.
description: >
-
name: ggseas
thumbnail: images/ggseas.png
url: https://github.com/ellisp/ggseas
jslibs: >
ghuser: ellisp
ghrepo: ggseas
tags: visualization,general
cran: true
release:
examples:
ghauthor: ellisp
short: >
Seasonal adjustment on the fly extension for ggplot2.
description: >
-
name: ggsci
thumbnail: images/ggsci.png
url: https://nanx.me/ggsci/
jslibs: >
ghuser: road2stat
ghrepo: ggsci
tags: visualization,general
cran: true
release:
examples: https://nanx.me/ggsci/
ghauthor: road2stat
short: >
A collection of ‘ggplot2’ color palettes inspired by scientific journals
and science fiction TV shows.
description: >
-
name: ggmosaic
thumbnail: images/ggmosaic.png
url: https://github.com/haleyjeppson/ggmosaic
jslibs: >
ghuser: haleyjeppson
ghrepo: ggmosaic
tags: visualization,general
cran: true
release:
examples:
ghauthor: haleyjeppson
short: >
ggmosaic implements mosaic plots in ‘ggplot2’ via geom_mosaic.
description: >
-
name: survminer
thumbnail: images/survminer.png
url: http://www.sthda.com/english/rpkgs/survminer/
jslibs: >
ghuser: kassambara
ghrepo: survminer
tags: visualization,survival
cran: true
release:
examples: https://www.r-bloggers.com/survival-plots-have-never-been-so-informative/
ghauthor: kassambara
short: >
Drawing Survival Curves using 'ggplot2'
description: >
Contains the function 'ggsurvplot()' for drawing easily beautiful and
'ready-to-publish' survival curves with the 'number at risk' table.
Other functions are also available for visual examinations of 'cox' model
assumptions.
-
name: ggeasy
thumbnail: images/ggeasy.png
url: https://jonocarroll.github.io/ggeasy/
jslibs: >
ghuser: jonocarroll
ghrepo: ggeasy
tags: visualization,teaching
cran: true
release:
examples: https://jonocarroll.github.io/ggeasy/
ghauthor: jonocarroll
short: >
Easy Access to 'ggplot2' Commands
description: >
Provides a series of aliases to commonly used but difficult
to remember 'ggplot2' sequences.
-
name: simplevis
thumbnail: images/simplevis.png
url: https://statisticsnz.github.io/simplevis/index.html
jslibs: >
ghuser: statisticsnz
ghrepo: simplevis
tags: visualization,teaching
cran: true
release:
examples: https://statisticsnz.github.io/simplevis/index.html
ghauthor: statisticsnz
short: >
Simple 'ggplot2' Visualisation with Less Brainpower and Typing
description: >
Wrapper functions to make 'ggplot2' visualisation easier with
less brainpower and typing.
-
name: ggside
thumbnail: images/ggside.png
url: https://github.com/jtlandis/ggside
jslibs: >
ghuser: jtlandis
ghrepo: ggside
tags: visualization,correlation
cran: true
release:
examples: https://cran.r-project.org/web/packages/ggside/index.html
ghauthor: jtlandis
short: >
Side Grammar Graphics
description: >
The grammar of graphics as shown in 'ggplot2' has provided
an expressive API for users to build plots. 'ggside' extends 'ggplot2'
by allowing users to add graphical information about one of the main panel's
axis using a familiar 'ggplot2' style API with tidy data. This package is
particularly useful for visualizing metadata on a discrete axis, or summary
graphics on a continuous axis such as a boxplot or a density distribution.
-
name: ggcorrplot
thumbnail: images/ggcorrplot.png
url: https://rpkgs.datanovia.com/ggcorrplot/
jslibs: >
ghuser: kassambara
ghrepo: ggcorrplot
tags: visualization,correlation
cran: true
release:
examples: https://rpkgs.datanovia.com/ggcorrplot/
ghauthor: kassambara
short: >
Visualization of a correlation matrix using 'ggplot2'
description: >
The 'ggcorrplot' package can be used to visualize easily a
correlation matrix using 'ggplot2'. It provides a solution for reordering the
correlation matrix and displays the significance level on the plot. It also
includes a function for computing a matrix of correlation p-values.
-
name: ggpubr
thumbnail: images/ggpubr.png
url: https://rpkgs.datanovia.com/ggpubr/
jslibs: >
ghuser: kassambara
ghrepo: ggpubr
tags: visualization,statistics
cran: true
release:
examples: https://rpkgs.datanovia.com/ggpubr/
ghauthor: kassambara
short: >
‘ggplot2’ Based Publication Ready Plots
description: >
The 'ggplot2' package is excellent and flexible for elegant data
visualization in R. However the default generated plots requires some formatting
before we can send them for publication. Furthermore, to customize a 'ggplot',
the syntax is opaque and this raises the level of difficulty for researchers
with no advanced R programming skills. 'ggpubr' provides some easy-to-use
functions for creating and customizing 'ggplot2'- based publication ready plots.
-
name: ggthemr
thumbnail: images/cttobin-ggthemr.png
url: https://github.com/cttobin/ggthemr
jslibs: >
ghuser: cttobin
ghrepo: ggthemr
tags: visualization,general,themes
cran: false
release:
examples:
ghauthor: cttobin
short: >
Themes for ggplot
description: >
Themes for ggplot. The idea of this package is that you can just set the theme and then forget about it. You should not have to change any of your existing code.
-
name: GGally
thumbnail: images/ggally.png
url: https://ggobi.github.io/ggally/
jslib: >
ghuser: ggobi
ghrepo: ggally
tags: visualization,general
cran: true
release:
examples: https://ggobi.github.io/ggally/
ghauthor: ggobi
short: >
ggally extends 'ggplot2' by adding several functions to reduce the complexity of combining geometric objects with transformed data.
description: >
ggplot2 is a plotting system based on the grammar of graphics. 'GGally' extends 'ggplot2' by adding several functions to reduce the complexity of combining geometric objects with transformed data. Some of these functions include a pairwise plot matrix, a two group pairwise plot matrix, a parallel coordinates plot, a survival plot, and several functions to plot networks.
-
name: ggseqlogo
thumbnail: images/ggseqlogo.png
url: https://github.com/omarwagih/ggseqlogo
jslib: >
ghuser: omarwagih
ghrepo: ggseqlogo
tags: visualization,general
cran: false
release:
examples: https://github.com/omarwagih/ggseqlogo
ghauthor: omarwagih
short: >
Publication-ready sequence logos using ggplot2.
description: >
ggseqlogo extends 'ggplot2' allowing users to flexibily plot sequence logos.
-
name: ggChernoff
thumbnail: images/ggChernoff.png
url: https://github.com/Selbosh/ggChernoff
jslib: >
ghuser: Selbosh
ghrepo: ggChernoff
tags: visualization
cran: false
examples: https://github.com/Selbosh/ggChernoff
ghauthor: Selbosh
short: >
Visualise multivariate data using human faces
description: >
Adds geoms, scales and aesthetics to plot 'Chernoff' faces that vary their expression according to your data.
Make your data smile or frown, angry or straight-faced, with continuous scales and legend support.
-
name: ggridges
thumbnail: images/ggridges.png
url: https://cran.r-project.org/web/packages/ggridges/vignettes/introduction.html
jslibs: >
ghuser: clauswilke
ghrepo: ggridges
tags: visualization,general
cran: true
release:
examples: https://cran.r-project.org/web/packages/ggridges/vignettes/gallery.html
ghauthor: clauswilke
short: >
Ridgeline plot geoms for 'ggplot2'
description: >
Ridgeline plots provide a convenient way of visualizing changes in distributions over time or space. This package enables the creation of such plots in 'ggplot2'.
-
name: lemons
thumbnail: images/lemon.png
url: https://github.com/stefanedwards/lemon
jslibs: >
ghuser: stefanedwards
ghrepo: lemon
tags: visualization,brackets,axis
cran: true
release:
examples: https://cran.r-project.org/web/packages/lemon/vignettes/capped-axes.html
ghauthor: stenfanedwards
short: >
Repositioning legends and adding brackets to axes to 'ggplot2'.
description: >
Functions for working with legends and axis lines of 'ggplot2', facets that repeat axis lines on all panels, and some 'knitr' extensions.
-
name: cowplot