-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.yaml
2062 lines (2058 loc) · 64 KB
/
config.yaml
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: rpdf
thumbnail: images/yonicd-rpdf.png
url: https://github.com/yonicd/rpdf
jslibs: >
[pdf](https://github.com/mozilla/pdf.js), [jQuery](https://jquery.com/)
ghuser: yonicd
ghrepo: rpdf
tags: visualization, general
cran: true
examples: https://github.com/yonicd/rpdf
ghauthor: yonicd
short: >
An htmlwidgets binding for the pdf javascript library to view pdf directly on the internal viewer.
description: >
View PDF files in R using the Mozilla pdf JavaScript library and the 'htmlwidgets' package. Can be used directly from the R console, from 'RStudio', in Shiny apps and R Markdown documents.
-
name: jsTree
thumbnail: images/yonicd-jsTree.png
url: https://github.com/metrumresearchgroup/jsTree
jslibs: >
[jsTree](https://www.jstree.com/), [jQuery](https://jquery.com/), [bootstrap](http://getbootstrap.com/)
ghuser: metrumresearchgroup
ghrepo: jsTree
tags: visualization, heirarchy, data managment, general
cran: true
examples: https://github.com/metrumresearchgroup/jsTree
ghauthor: yonicd
short: >
An htmlwidgets binding for the jsTree javascript library to interact with heirachry structures.
description: >
Create and customize interactive trees using the jQuery 'jsTree' plugin library and the 'htmlwidgets' package. These trees can be used directly from the R console, from 'RStudio', in Shiny apps and R Markdown html documents.
-
name: shinyCanvas
thumbnail: images/yonicd-shinyCanvas.png
url: https://github.com/metrumresearchgroup/shinyCanvas
jslibs: >
[d3](http://d3js.org)
ghuser: metrumresearchgroup
ghrepo: shinyCanvas
tags: visualization, general, scatter
cran: false
examples: https://github.com/metrumresearchgroup/shinyCanvas
ghauthor: yonicd
short: >
An htmlwidgets binding for the d3js editable splines with animation.
description: >
An htmlwidget binding for interacting with bivariate plots by dragging/adding/removing points and changing interpolations written in the d3.js library, that when used in Shiny the widget can be used as a functional slider, returning current locations of points and samples of the interpolated line with animation. This widget was motivated by an example written by [Mike Bostock](https://bl.ocks.org/mbostock/4342190).
-
name: phylocanvas
thumbnail: images/zachcp-phylocanvas.png
url: https://zachcp.github.io/phylocanvas/
jslibs: >
[phylocanvas](https://github.com/phylocanvas)
ghuser: zachcp
ghrepo: phylocanvas
tags: phylogenetics, trees, biology
cran: true
examples: https://zachcp.github.io/phylocanvas/
ghauthor: zachcp
short: >
An htmlwidgets binding for creating interactive phylogenetic trees.
description: >
An htmlwidgets binding for the excellent [phylocanvas](https://github.com/phylocanvas) library for creating interactive phylogenetic trees.
-
name: msaR
thumbnail: images/zachcp-msaR.png
url: https://zachcp.github.io/msaR/
jslibs: >
[msa](https://github.com/wilzbach/msa)
ghuser: zachcp
ghrepo: msaR
tags: sequence, alignment, general, biology, DNA
cran: true
examples: https://zachcp.github.io/msaR/
ghauthor: zachcp
short: >
An htmlwidgets binding for creating interactive multiple sequence alignments.
description: >
An htmlwidgets binding for the excellent [msa](https://github.com/wilzbach/msa) library for interactively plotting DNA or protein multiple sequence alignments.
-
name: d3Tree
thumbnail: images/yonicd-d3Tree.png
url: https://github.com/metrumresearchgroup/d3Tree
jslibs: >
[d3](http://d3js.org),[cycle](https://cycle.js.org/),[d3-tip](https://github.com/Caged/d3-tip)
ghuser: metrumresearchgroup
ghrepo: d3Tree
tags: visualization, reactive query
cran: true
examples: https://github.com/metrumresearchgroup/d3Tree
ghauthor: yonicd
short: >
An htmlwidgets binding for the d3js trees.
description: >
An htmlwidget binding for trees written in the d3.js library, that when used in shiny returns query strings that represent the current state of the tree. This widget was motivated by a [repository](https://github.com/cpsievert/shiny_apps/tree/master/ggtree) written by [Carson Sievert](https://github.com/cpsievert), and was written in collaboration with [Kent Russell](https://github.com/timelyportfolio).
-
name: slickR
thumbnail: images/yonicd-slickR.png
url: https://github.com/metrumresearchgroup/slickR
jslibs: >
[slick](https://github.com/kenwheeler/slick)
ghuser: metrumresearchgroup
ghrepo: slickR
tags: visualization, general
cran: true
examples: https://github.com/metrumresearchgroup/slickR
ghauthor: yonicd
short: >
An htmlwidgets binding for the slick carousel.
description: >
An htmlwidget binding for the excellent [slick.js](https://github.com/kenwheeler/slick) carousel library, developed by [Ken Wheeler](https://github.com/kenwheeler).
-
name: datamaps
thumbnail: images/htmlwidgets-datamaps.png
url: https://github.com/htmlwidgets/datamaps
jslibs: >
[datamaps](http://datamaps.github.io),[d3](http://d3js.org)
ghuser: htmlwidgets
ghrepo: datamaps
tags: visualization,maps
cran:
release: alpha
examples:
ghauthor: ramnathv
short: >
An htmlwidgets binding for the datamaps package.
description:
-
name: rChartsCalmap
thumbnail: images/ramnathv-rChartsCalmap.png
url: https://github.com/ramnathv/rChartsCalmap
jslibs: >
[Cal-Heatmap](http://kamisama.github.io/cal-heatmap/),[d3](http://d3js.org)
ghuser: ramnathv
ghrepo: rChartsCalmap
tags: visualization,calendar,heatmap
cran:
release: stable
examples:
ghauthor: ramnathv
short: >
An htmlwidgets binding for the Cal-Heatmap plugin.
description: >
An htmlwidgets binding for the excellent [Cal-Heatmap](http://kamisama.github.io/cal-heatmap/) plugin, developed by [Wan Qi Chen](https://github.com/kamisama). This binding was motivated by a tweet by Alex Bresler and uses data provided by him on points scored by Paul George.
-
name: leaflet
thumbnail: images/rstudio-leaflet.png
url: http://rstudio.github.io/leaflet/
jslibs: >
[leaflet](http://leafletjs.com)
ghuser: rstudio
ghrepo: leaflet
tags: visualization,maps
cran: true
release: stable
examples:
ghauthor: rstudio
short: >
Leaflet is an open-source JavaScript library for interactive maps. This package makes it easy to create Leaflet maps from R.
description:
-
name: DT
thumbnail: images/rstudio-DT.png
url: http://rstudio.github.io/DT/
jslibs: >
[DataTables](https://www.datatables.net)
ghuser: rstudio
ghrepo: DT
tags: tables
cran: true
release: stable
examples:
ghauthor: rstudio
short: >
This package provides a function datatable() to display R data via the DataTables javascript library.
description:
-
name: dygraphs
thumbnail: images/rstudio-dygraphs.png
url: http://rstudio.github.io/dygraphs/
jslibs: >
[dygraphs](http://dygraphs.com)
ghuser: rstudio
ghrepo: dygraphs
tags: visualization,timeseries
cran: true
release: stable
examples:
ghauthor: rstudio
short: >
An R interface to the dygraphs JavaScript charting library. It provides rich facilites for charting time-series data in R.
description:
-
name: metricsgraphics
thumbnail: images/hrbrmstr-metricsgraphics.png
url: http://hrbrmstr.github.io/metricsgraphics/
jslibs: >
[metricsgraphicsjs](http://metricsgraphicsjs.org),[d3](http://d3js.org)
ghuser: hrbrmstr
ghrepo: metricsgraphics
tags: visualization,general
cran: true
release: stable
examples:
ghauthor: hrbrmstr
short: >
An htmlwidget interface to the MetricsGraphics.js D3-based charting library.
description:
-
name: streamgraph
thumbnail: images/hrbrmstr-streamgraph.png
url: http://hrbrmstr.github.io/streamgraph/
jslibs: >
[d3](http://d3js.org)
ghuser: hrbrmstr
ghrepo: streamgraph
tags: visualization,steamgraph
cran:
release: stable
examples:
ghauthor: hrbrmstr
short: >
An htmlwidget for making streamgraphs.
description:
-
name: networkD3
thumbnail: images/christophergandrud-networkD3.png
url: http://christophergandrud.github.io/networkD3/
jslibs: >
[d3](http://d3js.org)
ghuser: christophergandrud
ghrepo: networkD3
tags: visualization,networks
cran: true
release: stable
examples:
ghauthor: christophergandrud
short: >
A port of Christopher Gandrud's d3Network package to the htmlwidgets framework.
description:
-
name: threejs
thumbnail: images/bwlewis-rthreejs.png
url: https://github.com/bwlewis/rthreejs
jslibs: >
[threejs](http://threejs.org)
ghuser: bwlewis
ghrepo: rthreejs
tags: visualization,3D
cran: true
release: stable
examples:
ghauthor: bwlewis
short: >
An htmlwidgets binding for three.js.
description:
-
name: DiagrammeR
thumbnail: images/rich-iannone-DiagrammeR.png
url: http://rich-iannone.github.io/DiagrammeR/
jslibs: >
[d3](http://d3js.org),viz,[mermaid](http://knsv.github.io/mermaid/)
ghuser: rich-iannone
ghrepo: DiagrammeR
tags: visualization,diagram,networks
cran: true
release: stable
examples:
ghauthor: rich-iannone
short: >
Easily create graph diagrams using R.
description:
-
name: sigmaGraph
thumbnail: images/jpmarindiaz-sigmaGraph.png
url: https://github.com/jpmarindiaz/sigmaGraph
jslibs: >
[sigma](http://sigmajs.org)
ghuser: jpmarindiaz
ghrepo: sigmaGraph
tags: visualization,networks
cran:
release: alpha
examples:
ghauthor: jpmarindiaz
short: >
R interface to sigmajs library.
description:
-
name: bubbleCloud
thumbnail:
url: https://github.com/jpmarindiaz/bubbleCloud
jslibs: >
ghuser: jpmarindiaz
ghrepo: bubbleCloud
tags: visualization,bubbles
cran:
release: alpha
examples:
ghauthor: jpmarindiaz
short:
description:
-
name: d3plus
thumbnail: images/jpmarindiaz-d3plus.png
url: https://github.com/jpmarindiaz/d3plus
jslibs: >
[d3plus](http://d3plus.org),[d3](http://d3js.org)
ghuser: jpmarindiaz
ghrepo: d3plus
tags: visualization,networks
cran:
release: alpha
examples:
ghauthor: jpmarindiaz
short: >
R Htmlwidget for d3plus.
description:
-
name: isotope
thumbnail: images/jpmarindiaz-isotope.png
url: https://github.com/jpmarindiaz/isotope
jslibs: >
[isotope](http://isotope.metafizzy.co)
ghuser: jpmarindiaz
ghrepo: isotope
tags: grid
cran:
release: alpha
examples:
ghauthor: jpmarindiaz
short: >
Isotope layout library for rendering R data frames as interactive galleries.
description:
-
name: D3TableFilter
thumbnail: images/ThomasSiegmund-D3TableFilter.png
url: https://github.com/ThomasSiegmund/D3TableFilter
jslibs: >
[TableFilter](http://tablefilter.free.fr),[d3](http://d3js.org), [jQuery Sparklines](http://omnipotent.net/jquery.sparkline/)
ghuser: ThomasSiegmund
ghrepo: D3TableFilter
tags: tables,visualization
cran:
release: stable
examples: https://thomassiegmund.shinyapps.io/interaction/
ghauthor: ThomasSiegmund
short: >
A table widget based on Max Guglielmi's "HTML Table Filter Generator" and D3.js.
description:
-
name: rhandsontable
thumbnail: images/jrowen-rhandsontable.png
url: https://github.com/jrowen/rhandsontable/
jslibs: >
[handsontable](http://handsontable.com)
ghuser: jrowen
ghrepo: rhandsontable
tags: tables
cran: true
release: alpha
examples:
ghauthor: jrowen
short: >
An htmlwidgets implementation of Handsontable.js, a minimalist Excel-like data grid editor for HTML & JavaScript.
description:
-
name: rcdimple
thumbnail: images/timelyportfolio-rcdimple.png
url: https://github.com/timelyportfolio/rcdimple
jslibs: >
[dimple](http://dimplejs.org),[d3](http://d3js.org)
ghuser: timelyportfolio
ghrepo: rcdimple
tags: visualization,general
cran:
release: stable
examples: http://www.buildingwidgets.com/blog/2015/3/18/week-11-dimple-as-htmlwidget
ghauthor: timelyportfolio
short: >
An htmlwidget for dimple.js. The goal is beautiful, customizable d3.js charts with minimal code and no knowledge of JavaScript.
description:
-
name: sortableR
thumbnail: images/timelyportfolio-sortableR.png
url: https://github.com/timelyportfolio/sortableR
jslibs: >
[sortablejs](http://rubaxa.github.io/Sortable/),[d3](http://d3js.org)
ghuser: timelyportfolio
ghrepo: sortableR
tags: structure
cran:
release: stable
examples:
ghauthor: timelyportfolio
short: >
sortableR attempts to harness some of the power of Sortable.js.
description:
-
name: parcoords
thumbnail: images/timelyportfolio-parcoords.png
url: https://github.com/timelyportfolio/parcoords
jslibs: >
parcoords,[d3](http://d3js.org)
ghuser: timelyportfolio
ghrepo: parcoords
tags: visualization,parallelcoords
cran:
release: stable
examples:
ghauthor: timelyportfolio
short: >
R htmlwidget for parallel-coordinates d3 chart.
description:
-
name: listviewer
thumbnail: images/timelyportfolio-listviewer.png
url: https://github.com/timelyportfolio/listviewer
jslibs: >
[jsoneditor](https://github.com/josdejong/jsoneditor),[d3](http://d3js.org)
ghuser: timelyportfolio
ghrepo: listviewer
tags: structure
cran: true
release: stable
examples:
ghauthor: timelyportfolio
short: >
A package of R htmlwidgets to interactively view and maybe modify lists. Provides one interface to jsoneditor.
description:
-
name: svgPanZoom
thumbnail: images/svgPanZoom.png
url: https://github.com/timelyportfolio/svgPanZoom
jslibs: >
[svg-pan-zoom](https://github.com/ariutta/svg-pan-zoom)
ghuser: timelyportfolio
ghrepo: svgPanZoom
tags: visualization
cran: true
release: stable
examples:
ghauthor: timelyportfolio
short: >
Gives R users an easy way to add panning and zooming to any R graphics (base, ggplot2, lattice, and lots more).
description:
-
name: exportwidget
thumbnail:
url: https://github.com/timelyportfolio/exportwidget
jslibs: >
exportwidget
ghuser: timelyportfolio
ghrepo: exportwidget
tags: export
cran:
release: stable
examples:
ghauthor: timelyportfolio
short: >
R htmlwidget to export other htmlwidgets and SVG as png.
description:
-
name: imageR
thumbnail: images/timelyportfolio-imageR.png
url: https://github.com/timelyportfolio/imageR
jslibs: >
imageR
ghuser: timelyportfolio
ghrepo: imageR
tags: visualization,general
cran:
release: stable
examples:
ghauthor: timelyportfolio
short: >
Intense-images htmlwidget for R.
description:
-
name: chartist
thumbnail: images/yutannihilation-chartist.png
url: https://github.com/yutannihilation/chartist
jslibs: >
[chartist.js](http://gionkunz.github.io/chartist-js/index.html)
ghuser: yutannihilation
ghrepo: chartist
tags: visualization,general
cran:
release:
examples:
ghauthor: yutannihilation
short: >
R interface to chartist.js.
description:
-
name: phylowidget
thumbnail: images/sdwfrost-phylowidget.png
url: https://github.com/sdwfrost/phylowidget
jslibs: >
[phylotree.js](https://github.com/veg/phylotree.js)
ghuser: sdwfrost
ghrepo: phylowidget
tags: visualization,biology
cran:
release:
examples:
ghauthor: sdwfrost
short: >
An R interface to phylotree.js, a JavaScript interactive viewer of phylogenetic trees.
description:
-
name: qtlcharts
thumbnail: images/kbroman-qtlcharts.png
url: http://kbroman.org/qtlcharts/
jslibs: >
[d3](http://d3js.org), [d3-tip](https://github.com/Caged/d3-tip)
ghuser: kbroman
ghrepo: qtlcharts
tags: visualization,qtl,genetics,biology
cran: true
release: 0.5-15
examples:
ghauthor: kbroman
short: >
Interactive Graphics FOR QTL Experiments.
description:
-
name: highchartR
thumbnail:
url: https://github.com/jcizel/highchartR
jslibs: >
[highcharts](http://www.highcharts.com/products/highcharts)
ghuser: jcizel
ghrepo: highchartR
tags: visualization,general,stocks
cran:
release:
examples:
ghauthor: jcizel
short: >
An htmlwidget wrapper for Highcharts and Highstock APIs.
description:
-
name: greatCircles
thumbnail: images/homeaway-great-circles.png
url: https://github.com/homeaway/great-circles
jslibs: >
[d3](http://d3js.org)
ghuser: homeaway
ghrepo: great-circles
tags: visualization,maps
cran:
release:
examples:
ghauthor: homeaway
short: >
Create great circles arcs via d3, Shiny, htmlwidgets and R.
description:
-
name: sparklines
thumbnail: images/htmlwidgets-sparkline.png
url: https://github.com/htmlwidgets/sparkline
jslibs: >
[jquery.sparkline]((http://omnipotent.net/jquery.sparkline))
ghuser: htmlwidgets
ghrepo: sparkline
tags: visualization,sparkline
cran:
release:
examples:
ghauthor: htmlwidgets
short: >
Create jquery sparklines from R.
description:
-
name: rWordCloud
thumbnail: images/adymimos-rWordCloud.png
url: https://github.com/adymimos/rWordCloud
jslibs: >
[d3](http://d3js.org)
ghuser: adymimos
ghrepo: rWordCloud
tags: visualization,wordcloud
cran:
release:
examples:
ghauthor: adymimos
short: >
An htmlwidget interface for d3 word cloud.
description:
-
name: c3r
thumbnail: images/HarlanH-c3r.png
url: https://github.com/HarlanH/c3r
jslibs: >
[c3js](http://c3js.org)
ghuser: HarlanH
ghrepo: c3r
tags: visualization,general
cran:
release:
examples:
ghauthor: HarlanH
short: >
An htmlwidgets interface to the c3.js d3 charting library.
description:
-
name: dcStockR
thumbnail: images/yutannihilation-dcStockR.png
url: https://github.com/yutannihilation/dcStockR
jslibs: >
[dc.js](https://dc-js.github.io/dc.js/)
ghuser: yutannihilation
ghrepo: dcStockR
tags: visualization,stocks
cran:
release:
examples:
ghauthor: yutannihilation
short: >
R bindings for dc.js.
description:
-
name: scatterMatrixD3
thumbnail: images/jcizel-scatterMatrixD3.png
url: https://github.com/jcizel/scatterMatrixD3
jslibs: >
[d3](http://d3js.org)
ghuser: jcizel
ghrepo: scatterMatrixD3
tags: visualization,scatterplot
cran:
release:
examples:
ghauthor: jcizel
short: >
R interface to Benjie Chen's extension of Mike Bostock's scatterplot matrix.
description:
-
name: rbokeh
thumbnail: images/bokeh-rbokeh.png
url: https://hafen.github.io/rbokeh
jslibs: >
[bokehjs](http://bokeh.pydata.org/en/latest/)
ghuser: bokeh
ghrepo: rbokeh
tags: visualization,general
cran: true
release:
examples:
ghauthor: hafen
short: >
An interface to Bokeh that provides a flexible, powerful, declarative framework for creating interactive plots.
description:
-
name: d3heatmap
thumbnail: images/rstudio-d3heatmap.png
url: https://github.com/rstudio/d3heatmap
jslibs: >
[d3](http://d3js.org)
ghuser: rstudio
ghrepo: d3heatmap
tags: visualization,heatmap
cran: true
release:
examples:
ghauthor: rstudio
short: >
A D3.js-based heatmap htmlwidget for R.
description:
-
name: rpivotTable
thumbnail: images/smartinsightsfromdata-rpivotTable.png
url: https://github.com/smartinsightsfromdata/rpivotTable
jslibs: >
[pivottable](http://nicolas.kruchten.com/pivottable/examples/)
ghuser: smartinsightsfromdata
ghrepo: rpivotTable
tags: visualization,pivot,table
cran: true
release: 0.1.5.2
examples:
ghauthor: smartinsightsfromdata
short: >
R interface to the pivottable library.
description:
-
name: formattable
thumbnail: images/renkun-ken-formattable.png
url: http://renkun.me/formattable/
jslibs: >
ghuser: renkun-ken
ghrepo: formattable
tags: table
cran: true
release:
examples:
ghauthor: renkun-ken
short: >
Formattable data structures.
description:
-
name: bubbles
thumbnail: images/jcheng5-bubbles.png
url: http://github.com/jcheng5/bubbles
jslibs: >
[d3](http://d3js.org)
ghuser: jcheng5
ghrepo: bubbles
tags: visualization,bubbles,scatter,plot
cran:
release:
examples:
ghauthor: jcheng5
short: >
d3 Bubble Chart htmlwidget.
description:
-
name: pairsD3
thumbnail: images/garthtarr-pairsD3.png
url: https://github.com/garthtarr/pairsD3
jslibs: >
[d3](http://d3js.org)
ghuser: garthtarr
ghrepo: pairsD3
tags: visualization,scatterplot,pairs
cran: true
release:
examples:
ghauthor: garthtarr
short: >
D3 Scatterplot Matrices.
description:
-
name: edgebundleR
thumbnail: images/garthtarr-edgebundleR.png
url: https://github.com/garthtarr/edgebundleR
jslibs: >
[d3](http://d3js.org)
ghuser: garthtarr
ghrepo: edgebundleR
tags: visualization,hierarchical,layout,bundle,networks
cran: true
release:
examples:
ghauthor: garthtarr
short: >
Circle plot with bundled edges.
description:
-
name: katexR
thumbnail: images/timelyportfolio-katexR.png
url: http://www.buildingwidgets.com/blog/2015/2/5/week-05-katex-in-r
jslibs: >
[KaTeX](https://github.com/Khan/KaTeX)
ghuser: timelyportfolio
ghrepo: katexR
tags: math,LaTeX
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
KaTeX in R.
description:
-
name: navr
thumbnail: images/timelyportfolio-navr.png
url: http://www.buildingwidgets.com/blog/2015/3/11/week-10-responsive-toolbars
jslibs: >
[responsive-nav](http://responsive-nav.com/)
ghuser: timelyportfolio
ghrepo: navr
tags: toolbar,navigation,html
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
An htmlwidget for Responsive-Nav.
description:
-
name: gamer
thumbnail: images/timelyportfolio-gamer.png
url: http://www.buildingwidgets.com/blog/2015/4/21/week-16-gamer
jslibs: >
[EntangledClone](https://github.com/Cacodaimon/EntangledClone)
ghuser: timelyportfolio
ghrepo: gamer
tags: game
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
Games as htmlwidgets for R.
description:
-
name: materializeR
thumbnail: images/timelyportfolio-materializeR.png
url: http://www.buildingwidgets.com/blog/2015/5/1/week-17-materializer
jslibs: >
[materialize](http://materializecss.com/)
ghuser: timelyportfolio
ghrepo: materializeR
tags: CSS,template,html,framework
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
Materialize front-end web framework as an htmlwidget in R.
description:
-
name: comicR
thumbnail: images/timelyportfolio-comicR.png
url: http://www.buildingwidgets.com/blog/2015/5/8/week-18-comicr
jslibs: >
[comic.js](https://github.com/balint42/comic.js)
ghuser: timelyportfolio
ghrepo: comicR
tags: xkcd,cartoon,comic
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
Comic (xkcd-like) effects for R output.
description:
-
name: loryR
thumbnail: images/timelyportfolio-loryR.png
url: http://www.buildingwidgets.com/blog/2015/5/14/week-19-loryr-slider
jslibs: >
[lory.js](http://meandmax.github.io/lory/)
ghuser: timelyportfolio
ghrepo: loryR
tags: slider,html
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
Slider htmlwidget your images based on lory.js.
description:
-
name: d3vennR
thumbnail: images/timelyportfolio-d3vennR.png
url: http://www.buildingwidgets.com/blog/2015/6/5/week-22-d3vennr
jslibs: >
[d3](http://d3js.org), [venn.js](https://github.com/benfred/venn.js)
ghuser: timelyportfolio
ghrepo: d3vennR
tags: visualization,sets,venn
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
Interactive Venn/Euler diagrams in R.
description:
-
name: flowtypeR
thumbnail: images/timelyportfolio-flowtypeR.png
url: http://www.buildingwidgets.com/blog/2015/6/17/week-24-flowtyper
jslibs: >
[flowtype](http://simplefocus.com/flowtype)
ghuser: timelyportfolio
ghrepo: flowtypeR
tags: html,text
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
R htmlwidget for flowtype.js.
description:
-
name: sweetalertR
thumbnail: images/timelyportfolio-sweetalertR.png
url: http://www.buildingwidgets.com/blog/2015/6/29/week-25-sweetalertr
jslibs: >
[SweetAlert](http://t4t5.github.io/sweetalert)
ghuser: timelyportfolio
ghrepo: sweetalertR
tags: html,alert,popup
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
R htmlwidget for SweetAlert.
description:
-
name: sunburstR
thumbnail: images/timelyportfolio-sunburstR.png
url: http://www.buildingwidgets.com/blog/2015/7/2/week-26-sunburstr
jslibs: >
[d3](http://d3js.org)
ghuser: timelyportfolio
ghrepo: sunburstR
tags: visualization,sunburst
cran: true
release: stable
examples:
ghauthor: timelyportfolio
short: >
R htmlwidget for d3.js sequences sunburst.
description:
-
name: d3hiveR
thumbnail: images/timelyportfolio-d3hiveR.png
url: http://www.buildingwidgets.com/blog/2015/7/11/week-27-d3hiver
jslibs: >
[d3](http://d3js.org)
ghuser: timelyportfolio
ghrepo: d3hiveR
tags: visualization,hive
cran:
release:
examples:
ghauthor: timelyportfolio
short: >
R htmlwidget for d3.js hive plots.
description:
-
name: calheatmapR
thumbnail: images/durtal-calheatmapR.png
url: http://durtal.github.io/calheatmapR/
jslibs: >
[d3](http://d3js.org), [cal-heatmap](https://kamisama.github.io/cal-heatmap/)
ghuser: durtal
ghrepo: calheatmapR
tags: visualization,heatmap,calendar
cran:
release:
examples:
ghauthor: durtal
short: >
Interface to the cal-heatmap Javascript charting library.
description:
-
name: coffeewheel
thumbnail: images/armish-coffeewheel.png
url: https://github.com/armish/coffeewheel
jslibs: >
[d3](http://d3js.org)
ghuser: armish
ghrepo: coffeewheel
tags: visualization,treemap,hierarchical,wheel,zoomable
cran: false
release: 1.0
examples: https://github.com/armish/coffeewheel#sample-plotting
ghauthor: armish
short: >
R wrapper for the famaous coffee-wheel visualization.
description:
-
name: taucharts
thumbnail: images/hrbrmstr-taucharts.png
url: https://github.com/hrbrmstr/taucharts
jslibs: >
[taucharts](http://www.taucharts.com/),[d3](http://d3js.org)
ghuser: hrbrmstr
ghrepo: taucharts
tags: visualization,general
cran: false
release: 0.4.0
examples: >
http://rpubs.com/hrbrmstr/taucharts,http://www.buildingwidgets.com/blog/2015/8/5/week-31-taucharts
ghauthor: hrbrmstr
short: >
A wrapper for the full-featured taucharts d3.js charting library.
description:
-
name: vivagRaph
thumbnail: images/keeganhines-vivagRaph.png
url: https://github.com/keeganhines/vivagRaph
jslibs: >
[vivagraph js](https://github.com/anvaka/VivaGraphJS)
ghuser: keeganhines
ghrepo: vivagRaph
tags: visualization,networks
cran: false
release: alpha
examples:
ghauthor: keeganhines
short: >
Interactive network visualizations with the VivaGraph js library.
description: