-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
4369 lines (4369 loc) · 285 KB
/
manifest.json
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
{
"version": 1,
"locale": "en_CA",
"platform": "3.6.0",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "BH",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Version": "1.69.0-1",
"Date": "2019-01-07",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "Boost provides free peer-reviewed portable C++ source \n libraries. A large part of Boost is provided as C++ template code\n which is resolved entirely at compile-time without linking. This \n package aims to provide the most useful subset of Boost libraries \n for template use among CRAN package. By placing these libraries in \n this package, we offer a more efficient distribution system for CRAN \n as replication of this code in the sources of other packages is \n avoided. As of release 1.69.0-1, the following Boost libraries are\n included: 'algorithm' 'align' 'any' 'atomic' 'bimap' 'bind'\n 'circular_buffer' 'compute' 'concept' 'config' 'container' 'date_time'\n 'detail' 'dynamic_bitset' 'exception' 'filesystem' 'flyweight' 'foreach'\n 'functional' 'fusion' 'geometry' 'graph' 'heap' 'icl' 'integer'\n 'interprocess' 'intrusive' 'io' 'iostreams' 'iterator' 'math' 'move' 'mpl'\n 'multiprcecision' 'numeric' 'pending' 'phoenix' 'preprocessor'\n 'propery_tree' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort' 'spirit'\n 'tuple' 'type_traits' 'typeof' 'unordered' 'utility' 'uuid'.",
"License": "BSL-1.0",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Packaged": "2019-01-07 12:00:43.681885 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2019-01-07 19:50:25 UTC",
"Built": "R 3.6.0; ; 2019-04-26 19:51:17 UTC; unix"
}
},
"DBI": {
"Source": "github",
"Repository": null,
"GithubRepo": "DBI",
"GithubUsername": "r-dbi",
"GithubRef": "master",
"GithubSha1": "0756bd689bb3e7339c827cbe88e6bdf6e9e81d23",
"description": {
"Package": "DBI",
"Version": "1.0.0.9002",
"Date": "2019-09-05",
"Title": "R Database Interface",
"Description": "A database interface definition for communication\n between R and relational database management systems. All\n classes in this package are virtual and need to be extended by\n the various R/DBMS implementations.",
"Authors@R": "c(\n person(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Kirill\", \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"R Consortium\", role = \"fnd\")\n )",
"Depends": "R (>= 3.0.0), methods",
"Suggests": "blob, covr, hms, knitr, magrittr, rprojroot, rmarkdown,\nRSQLite (>= 1.1-2), testthat, xml2",
"Encoding": "UTF-8",
"License": "LGPL (>= 2.1)",
"URL": "http://r-dbi.github.io/DBI",
"URLNote": "https://github.com/r-dbi/DBI",
"BugReports": "https://github.com/r-dbi/DBI/issues",
"Collate": "'hidden.R' 'DBObject.R' 'DBDriver.R' 'table.R'\n'DBConnection.R' 'ANSI.R' 'DBI-package.R' 'DBResult.R'\n'data-types.R' 'data.R' 'deprecated.R' 'interpolate.R'\n'list-pairs.R' 'quote.R' 'rd.R' 'rownames.R' 'table-create.R'\n'table-insert.R' 'transactions.R'",
"VignetteBuilder": "knitr",
"Roxygen": "list(markdown = TRUE, roclets = c(\"collate\", \"namespace\",\n\"rd\", \"pkgapi::api_roclet\"))",
"RoxygenNote": "6.1.1",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "DBI",
"RemoteUsername": "r-dbi",
"RemoteRef": "master",
"RemoteSha": "0756bd689bb3e7339c827cbe88e6bdf6e9e81d23",
"GithubRepo": "DBI",
"GithubUsername": "r-dbi",
"GithubRef": "master",
"GithubSHA1": "0756bd689bb3e7339c827cbe88e6bdf6e9e81d23",
"NeedsCompilation": "no",
"Packaged": "2019-09-13 16:43:29 UTC; nancy",
"Author": "R Special Interest Group on Databases (R-SIG-DB) [aut],\n Hadley Wickham [aut],\n Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\n R Consortium [fnd]",
"Maintainer": "Kirill Müller <[email protected]>",
"Built": "R 3.6.0; ; 2019-09-13 16:43:30 UTC; unix"
}
},
"DT": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.10",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Joe\", \"Cheng\", role = \"aut\"),\n person(\"Xianying\", \"Tan\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Maximilian\", \"Girlich\", role = \"ctb\"),\n person(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\n person(\"Johannes\", \"Rauh\", role = \"ctb\"),\n person(\"jQuery contributors\", role = c(\"ctb\", \"cph\"), comment = \"jQuery in htmlwidgets/lib\"),\n person(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\n person(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\n person(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\n person(\"RStudio Inc\", role = \"cph\")\n )",
"Maintainer": "Yihui Xie <[email protected]>",
"Description": "Data objects in R can be rendered as HTML tables using the\n JavaScript library 'DataTables' (typically via R Markdown or Shiny). The\n 'DataTables' library has been included in this R package. The package name\n 'DT' is an abbreviation of 'DataTables'.",
"URL": "https://github.com/rstudio/DT",
"BugReports": "https://github.com/rstudio/DT/issues",
"License": "GPL-3 | file LICENSE",
"Imports": "htmltools (>= 0.3.6), htmlwidgets (>= 1.3), jsonlite (>=\n0.9.16), magrittr, crosstalk, promises",
"Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.1.0)",
"VignetteBuilder": "knitr",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2019-11-12 16:36:57 UTC; yihui",
"Author": "Yihui Xie [aut, cre],\n Joe Cheng [aut],\n Xianying Tan [aut],\n JJ Allaire [ctb],\n Maximilian Girlich [ctb],\n Greg Freedman Ellis [ctb],\n Johannes Rauh [ctb],\n jQuery contributors [ctb, cph] (jQuery in htmlwidgets/lib),\n SpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\n Brian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\n Leon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\n Bartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\n RStudio Inc [cph]",
"Repository": "CRAN",
"Date/Publication": "2019-11-12 18:10:11 UTC",
"Built": "R 3.6.0; ; 2019-11-12 21:48:48 UTC; unix"
}
},
"KernSmooth": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "KernSmooth",
"Priority": "recommended",
"Version": "2.23-16",
"Date": "2019-10-15",
"Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)",
"Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\",\n\t email = \"[email protected]\"),\n\t person(\"Cleve\", \"Moler\", role = \"ctb\",\n\t comment = \"LINPACK routines in src\"),\n person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"),\n email = \"[email protected]\",\n\t\t comment = \"R port and updates\"))",
"Depends": "R (>= 2.5.0), stats",
"Suggests": "MASS",
"Description": "Functions for kernel smoothing (and density estimation)\n corresponding to the book: \n Wand, M.P. and Jones, M.C. (1995) \"Kernel Smoothing\".",
"License": "Unlimited",
"ByteCompile": "yes",
"NeedsCompilation": "yes",
"Packaged": "2019-10-15 12:12:47 UTC; ripley",
"Author": "Matt Wand [aut],\n Cleve Moler [ctb] (LINPACK routines in src),\n Brian Ripley [trl, cre, ctb] (R port and updates)",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-10-15 12:16:11 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-10-16 12:49:24 UTC; unix"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-51.4",
"Date": "2019-03-31",
"Revision": "$Rev: 3496 $",
"Depends": "R (>= 3.1.0), grDevices, graphics, stats, utils",
"Imports": "methods",
"Suggests": "lattice, nlme, nnet, survival",
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"),\n\t person(\"Bill\", \"Venables\", role = \"ctb\"),\n\t person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\n\t person(\"Kurt\", \"Hornik\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"Albrecht\", \"Gebhardt\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"David\", \"Firth\", role = \"ctb\"))",
"Description": "Functions and datasets to support Venables and Ripley,\n \"Modern Applied Statistics with S\" (4th edition, 2002).",
"Title": "Support Functions and Datasets for Venables and Ripley's MASS",
"LazyData": "yes",
"ByteCompile": "yes",
"License": "GPL-2 | GPL-3",
"URL": "http://www.stats.ox.ac.uk/pub/MASS4/",
"Contact": "<[email protected]>",
"NeedsCompilation": "yes",
"Packaged": "2019-03-31 07:00:08 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\n Bill Venables [ctb],\n Douglas M. Bates [ctb],\n Kurt Hornik [trl] (partial port ca 1998),\n Albrecht Gebhardt [trl] (partial port ca 1998),\n David Firth [ctb]",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-31 07:55:05 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 16:32:30 UTC; unix"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "Matrix",
"Version": "1.2-17",
"Date": "2019-03-11",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Contact": "Doug and Martin <[email protected]>",
"Maintainer": "Martin Maechler <[email protected]>",
"Authors@R": "c(person(\"Douglas\",\"Bates\", role=\"aut\")\n , person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"), email=\"[email protected]\",\n comment = c(ORCID = \"0000-0002-8685-9910\"))\n , person(\"Timothy A.\", \"Davis\", role=\"ctb\",\n comment = c(\"SuiteSparse and 'cs' C libraries, notably CHOLMOD, AMD;\n\t\t collaborators listed in\n\t\t\tdir(pattern = '^[A-Z]+[.]txt$', full.names=TRUE,\n\t\t\t system.file('doc', 'SuiteSparse', package='Matrix'))\"))\n , person(\"Jens\", \"Oehlschlägel\", role=\"ctb\", comment=\"initial nearPD()\")\n , person(\"Jason\", \"Riedy\", role=\"ctb\",\n comment = c(\"condest() and onenormest() for octave\",\n \t \t \"Copyright: Regents of the University of California\"))\n , person(\"R Core Team\", role = \"ctb\", comment=\"base R matrix implementation\")\n )",
"Description": "A rich hierarchy of matrix classes, including triangular,\n symmetric, and diagonal matrices, both dense and sparse and with\n pattern, logical and numeric entries. Numerous methods for and\n operations on these matrices, using 'LAPACK' and 'SuiteSparse' libraries.",
"Depends": "R (>= 3.2.0)",
"Imports": "methods, graphics, grid, stats, utils, lattice",
"Suggests": "expm, MASS",
"Enhances": "MatrixModels, graph, SparseM, sfsmisc",
"Encoding": "UTF-8",
"LazyData": "no",
"LazyDataNote": "not possible, since we use data/*.R *and* our classes",
"BuildResaveData": "no",
"License": "GPL (>= 2) | file LICENCE",
"URL": "http://Matrix.R-forge.R-project.org/",
"BugReports": "https://r-forge.r-project.org/tracker/?group_id=61",
"NeedsCompilation": "yes",
"Packaged": "2019-03-20 21:37:04 UTC; maechler",
"Author": "Douglas Bates [aut],\n Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\n Timothy A. Davis [ctb] (SuiteSparse and 'cs' C libraries, notably\n CHOLMOD, AMD; collaborators listed in dir(pattern =\n '^[A-Z]+[.]txt$', full.names=TRUE, system.file('doc',\n 'SuiteSparse', package='Matrix'))),\n Jens Oehlschlägel [ctb] (initial nearPD()),\n Jason Riedy [ctb] (condest() and onenormest() for octave, Copyright:\n Regents of the University of California),\n R Core Team [ctb] (base R matrix implementation)",
"Repository": "CRAN",
"Date/Publication": "2019-03-22 22:56:52 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 16:32:46 UTC; unix"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.4.0",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different packages.",
"Depends": "R (>= 3.0)",
"Suggests": "knitr, microbenchmark, pryr, testthat, ggplot2, scales",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"LazyData": "true",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "no",
"Packaged": "2019-02-14 18:34:54 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-02-14 19:42:14 UTC",
"Built": "R 3.6.0; ; 2019-04-26 19:49:57 UTC; unix"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "RColorBrewer",
"Version": "1.1-2",
"Date": "2014-12-07",
"Title": "ColorBrewer Palettes",
"Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n \"cre\"), email = \"[email protected]\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <[email protected]>",
"Depends": "R (>= 2.0.0)",
"Description": "Provides color schemes for maps (and other graphics)\n designed by Cynthia Brewer as described at http://colorbrewer2.org",
"License": "Apache License 2.0",
"Packaged": "2014-12-06 23:59:42 UTC; neuwirth",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2014-12-07 08:28:55",
"Built": "R 3.6.0; ; 2019-04-26 19:50:52 UTC; unix"
}
},
"RCurl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "RCurl",
"Version": "1.95-4.12",
"Title": "General Network (HTTP/FTP/...) Client Interface for R",
"Author": "Duncan Temple Lang and the CRAN team",
"SystemRequirements": "GNU make, libcurl",
"Maintainer": "Duncan Temple Lang <[email protected]>",
"Description": "A wrapper for 'libcurl' <http://curl.haxx.se/libcurl/>\n\tProvides functions to allow one to compose general HTTP requests\n and provides convenient functions to fetch URIs, get & post\n forms, etc. and process the results returned by the Web server.\n This provides a great deal of control over the HTTP/FTP/...\n connection and the form of the request while providing a\n higher-level interface than is available just using R socket\n connections. Additionally, the underlying implementation is\n robust and extensive, supporting FTP/FTPS/TFTP (uploads and\n downloads), SSL/HTTPS, telnet, dict, ldap, and also supports\n cookies, redirects, authentication, etc.",
"License": "BSD",
"Depends": "R (>= 3.0.0), methods, bitops",
"Suggests": "Rcompression, XML",
"URL": "http://www.omegahat.net/RCurl",
"Additional_repositories": "http://www.omegahat.net/R/",
"Limitations": "One doesn't yet have full control over the contents of a\nPOST form such as specifying files, content type. Error\nhandling uses a single global variable at present.",
"Note": "This will be used generally to communicate with HTTP servers and\nspecifically in the SOAP package, HTML forms and for accessing\ndata on Web sites that require more state information than\nsimply URL access (e.g. cookies).",
"Check": "To run R CMD check, one really needs network access. It is an\nHTTP client! This can be problematic as a Web site may be down\nwhen you run but the real tests are important.",
"Collate": "aclassesEnums.R bitClasses.R xbits.R base64.R binary.S\nclasses.S curl.S curlAuthConstants.R curlEnums.R curlError.R\ncurlInfo.S dynamic.R form.S getFormParams.R getURLContent.R\nheader.R http.R httpError.R httpErrors.R iconv.R info.S mime.R\nmulti.S options.S scp.R support.S upload.R urlExists.R zclone.R\nzzz.R",
"NeedsCompilation": "yes",
"Packaged": "2019-03-03 18:59:27 UTC; ripley",
"Repository": "CRAN",
"Date/Publication": "2019-03-04 09:45:33 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 22:29:31 UTC; unix"
}
},
"RPostgres": {
"Source": "github",
"Repository": null,
"GithubRepo": "RPostgres",
"GithubUsername": "r-dbi",
"GithubRef": "master",
"GithubSha1": "61bbb610486fb19918e98fd825ba9295a8fabb0c",
"description": {
"Package": "RPostgres",
"Title": "'Rcpp' Interface to 'PostgreSQL'",
"Version": "1.1.1.9002",
"Date": "2018-10-04",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Jeroen\", \"Ooms\", role = \"aut\"),\n person(\"Kirill\", \"M\\u00fcller\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"RStudio\", role = \"cph\"),\n person(\"R Consortium\", role = \"fnd\"),\n person(\"Tomoaki\", \"Nishiyama\", role = \"ctb\",\n comment = \"Code for encoding vectors into strings derived from RPostgreSQL\")\n )",
"Description": "\n Fully 'DBI'-compliant 'Rcpp'-backed interface to 'PostgreSQL' <https://www.postgresql.org/>,\n an open-source relational database.",
"License": "GPL-2",
"URL": "https://github.com/r-dbi/RPostgres",
"BugReports": "https://github.com/r-dbi/RPostgres/issues",
"Depends": "R (>= 3.1.0)",
"Imports": "bit64, blob (>= 1.1.1.9002), DBI (>= 1.0.0), hms (>=\n0.4.2.9005), methods, Rcpp (>= 0.11.4.2), withr",
"Suggests": "DBItest, testthat",
"LinkingTo": "BH, plogr (>= 0.2.0), Rcpp",
"Remotes": "tidyverse/blob, r-dbi/DBI, r-dbi/DBItest, tidyverse/hms",
"Encoding": "UTF-8",
"LazyLoad": "true",
"Roxygen": "list(markdown = TRUE)",
"RoxygenNote": "6.1.1",
"SystemRequirements": "libpq >= 9.0: libpq-dev (deb) or postgresql-devel\n(rpm)",
"Collate": "'PqDriver.R' 'PqConnection.R' 'PqResult.R' 'RPostgres-pkg.R'\n'RcppExports.R' 'default.R' 'export.R' 'names.R' 'quote.R'\n'tables.R' 'transactions.R' 'utils.R'",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "RPostgres",
"RemoteUsername": "r-dbi",
"RemoteRef": "master",
"RemoteSha": "61bbb610486fb19918e98fd825ba9295a8fabb0c",
"GithubRepo": "RPostgres",
"GithubUsername": "r-dbi",
"GithubRef": "master",
"GithubSHA1": "61bbb610486fb19918e98fd825ba9295a8fabb0c",
"NeedsCompilation": "yes",
"Packaged": "2019-08-30 01:15:10 UTC; nancy",
"Author": "Hadley Wickham [aut],\n Jeroen Ooms [aut],\n Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\n RStudio [cph],\n R Consortium [fnd],\n Tomoaki Nishiyama [ctb] (Code for encoding vectors into strings derived\n from RPostgreSQL)",
"Maintainer": "Kirill Müller <[email protected]>",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-08-30 01:15:11 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.3",
"Date": "2019-11-08",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about 'Rcpp' is provided by several vignettes included in this package, via the\n 'Rcpp Gallery' site at <http://gallery.rcpp.org>, the paper by Eddelbuettel and\n Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,\n <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018,\n <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Depends": "R (>= 3.0.0)",
"Imports": "methods, utils",
"Suggests": "RUnit, inline, rbenchmark, knitr, rmarkdown, pinp, pkgKitten\n(>= 0.1.2)",
"VignetteBuilder": "knitr",
"URL": "http://www.rcpp.org, http://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "Please send questions and comments regarding Rcpp to\[email protected]",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2019-11-08 18:25:32.94843 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2019-11-08 23:44:12",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-11-10 16:42:16 UTC; unix"
}
},
"SnowballC": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "SnowballC",
"Type": "Package",
"Version": "0.6.0",
"Date": "2019-01-07",
"Title": "Snowball Stemmers Based on the C 'libstemmer' UTF-8 Library",
"Authors@R": "person(\"Milan\", \"Bouchet-Valat\", email=\"[email protected]\",\n role=c(\"aut\", \"cre\"))",
"Description": "An R interface to the C 'libstemmer' library that implements\n Porter's word stemming algorithm for collapsing words to a common\n root to aid comparison of vocabulary. Currently supported languages are\n Danish, Dutch, English, Finnish, French, German, Hungarian, Italian,\n Norwegian, Portuguese, Romanian, Russian, Spanish, Swedish\n and Turkish.",
"License": "BSD_3_clause + file LICENSE",
"Copyright": "Dr Martin Porter (2001) and Richard Boulton (2004, 2005) for\nthe 'libstemmer' C library, and Milan Bouchet-Valat (2013) for\nthe R package contents.",
"URL": "https://r-forge.r-project.org/projects/r-temis/",
"BugReports": "https://r-forge.r-project.org/tracker/?group_id=1437",
"NeedsCompilation": "yes",
"Packaged": "2019-01-08 13:36:02 UTC; milan",
"Author": "Milan Bouchet-Valat [aut, cre]",
"Maintainer": "Milan Bouchet-Valat <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-01-15 16:10:03 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 20:09:57 UTC; unix"
}
},
"TSP": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "TSP",
"Type": "Package",
"Title": "Traveling Salesperson Problem (TSP)",
"Version": "1.1-7",
"Date": "2019-05-22",
"Authors@R": "c(\n\tperson(\"Michael\", \"Hahsler\", role = c(\"aut\", \"cre\", \"cph\"),\n\t email = \"[email protected]\"),\n\tperson(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cph\")))",
"Description": "Basic infrastructure and some algorithms for the traveling\n salesperson problem (also traveling salesman problem; TSP).\n The package provides some simple algorithms and\n an interface to the Concorde TSP solver and its implementation of the\n Chained-Lin-Kernighan heuristic. The code for Concorde\n itself is not included in the package and has to be obtained separately.",
"Classification/ACM": "G.1.6, G.2.1, G.4",
"URL": "https://github.com/mhahsler/TSP",
"BugReports": "https://github.com/mhahsler/TSP/issues",
"Depends": "R (>= 2.14.0)",
"Imports": "graphics, foreach, utils, methods, stats, grDevices",
"Suggests": "maps, sp, maptools, testthat",
"License": "GPL-3",
"Copyright": "All code is Copyright (C) Michael Hahsler and Kurt Hornik.",
"NeedsCompilation": "yes",
"Packaged": "2019-05-22 20:17:55 UTC; hahsler",
"Author": "Michael Hahsler [aut, cre, cph],\n Kurt Hornik [aut, cph]",
"Maintainer": "Michael Hahsler <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-05-22 23:10:03 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-05-23 11:37:28 UTC; unix"
}
},
"XML": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "XML",
"Version": "3.98-1.20",
"Author": "Duncan Temple Lang and the CRAN Team (including Tomas Kalibera)",
"Maintainer": "ORPHANED",
"Title": "Tools for Parsing and Generating XML Within R and S-Plus",
"Depends": "R (>= 2.13.0), methods, utils",
"Suggests": "bitops, RCurl",
"SystemRequirements": "libxml2 (>= 2.6.3)",
"Description": "Many approaches for both reading and\n creating XML (and HTML) documents (including DTDs), both local\n and accessible via HTTP or FTP. Also offers access to an\n 'XPath' \"interpreter\".",
"URL": "http://www.omegahat.net/RSXML",
"License": "BSD_2_clause + file LICENSE",
"Collate": "AAA.R DTD.R DTDClasses.R DTDRef.R SAXMethods.S XMLClasses.R\napplyDOM.R assignChild.R catalog.R createNode.R dynSupports.R\nerror.R flatTree.R nodeAccessors.R parseDTD.R schema.S\nsummary.R tangle.R toString.S tree.R version.R xmlErrorEnums.R\nxmlEventHandler.R xmlEventParse.R xmlHandler.R\nxmlInternalSource.R xmlOutputDOM.R xmlNodes.R xmlOutputBuffer.R\nxmlTree.R xmlTreeParse.R htmlParse.R hashTree.R zzz.R\nsupports.R parser.R libxmlFeatures.R xmlString.R saveXML.R\nnamespaces.R readHTMLTable.R reflection.R xmlToDataFrame.R\nbitList.R compare.R encoding.R fixNS.R xmlRoot.R serialize.R\nxmlMemoryMgmt.R keyValueDB.R solrDocs.R XMLRErrorInfo.R\nxincludes.R namespaceHandlers.R tangle1.R htmlLinks.R\nhtmlLists.R getDependencies.R getRelativeURL.R xmlIncludes.R\nsimplifyPath.R",
"NeedsCompilation": "yes",
"Packaged": "2019-06-06 06:10:55 UTC; ripley",
"X-CRAN-Comment": "Orphaned on 2017-06-19: all updates have been by the\nCRAN team for some years.",
"Repository": "CRAN",
"Date/Publication": "2019-06-06 06:23:32 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-06-07 11:55:46 UTC; unix"
}
},
"anytime": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "anytime",
"Type": "Package",
"Title": "Anything to 'POSIXct' or 'Date' Converter",
"Version": "0.3.6",
"Date": "2019-08-29",
"Author": "Dirk Eddelbuettel",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "Convert input in any one of character, integer, numeric, factor,\n or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\n predefined formats, and relying on Boost facilities for date and time parsing.",
"URL": "http://dirk.eddelbuettel.com/code/anytime.html",
"BugReports": "https://github.com/eddelbuettel/anytime/issues",
"License": "GPL (>= 2)",
"Encoding": "UTF-8",
"Depends": "R (>= 3.2.0)",
"Imports": "Rcpp (>= 0.12.9)",
"LinkingTo": "Rcpp (>= 0.12.9), BH",
"Suggests": "tinytest (>= 1.0.0), gettz",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2019-08-29 11:14:20.265196 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2019-08-29 12:00:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-08-30 01:23:15 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "askpass",
"Type": "Package",
"Title": "Safe Password Entry for R, Git, and SSH",
"Version": "1.1",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a \n passphrase, for example to authenticate with a server or read a protected key.\n Includes native programs for MacOS and Windows, hence no 'tcltk' is required. \n Password entry can be invoked in two different ways: directly from R via the \n askpass() function, or indirectly as password-entry back-end for 'ssh-agent' \n or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\n Thereby the user can be prompted for credentials or a passphrase if needed \n when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/jeroen/askpass#readme",
"BugReports": "https://github.com/jeroen/askpass/issues",
"Encoding": "UTF-8",
"LazyData": "true",
"Imports": "sys (>= 2.1)",
"RoxygenNote": "6.1.1",
"Suggests": "testthat",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2019-01-13 12:08:17 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-01-13 12:50:03 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 22:26:39 UTC; unix"
}
},
"assertthat": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "assertthat",
"Title": "Easy Pre and Post Assertions",
"Version": "0.2.1",
"Authors@R": "\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\"))",
"Description": "An extension to stopifnot() that makes it easy to declare \n the pre and post conditions that you code should satisfy, while also \n producing friendly error messages so that your users know what's gone\n wrong.",
"License": "GPL-3",
"Imports": "tools",
"Suggests": "testthat, covr",
"RoxygenNote": "6.0.1",
"Collate": "'assert-that.r' 'on-failure.r' 'assertions-file.r'\n'assertions-scalar.R' 'assertions.r' 'base.r'\n'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r'\n'utils.r' 'validate-that.R'",
"NeedsCompilation": "no",
"Packaged": "2019-03-21 13:11:01 UTC; hadley",
"Author": "Hadley Wickham [aut, cre]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-21 14:53:46 UTC",
"Built": "R 3.6.0; ; 2019-04-26 19:49:57 UTC; unix"
}
},
"backports": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "backports",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Version": "1.1.5",
"Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"[email protected]\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"R Core Team\", role = \"aut\"))",
"Maintainer": "Michel Lang <[email protected]>",
"Description": "\n Functions introduced or changed since R v3.0.0 are re-implemented in this\n package. The backports are conditionally exported in order to let R resolve\n the function name to either the implemented backport, or the respective base\n version, if available. Package developers can make use of new functions or\n arguments by selectively importing specific backports to\n support older installations.",
"URL": "https://github.com/r-lib/backports",
"BugReports": "https://github.com/r-lib/backports/issues",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Depends": "R (>= 3.0.0)",
"Imports": "utils",
"Encoding": "UTF-8",
"RoxygenNote": "6.1.1",
"Packaged": "2019-10-02 18:35:28 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\n R Core Team [aut]",
"Repository": "CRAN",
"Date/Publication": "2019-10-02 20:20:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-10-03 14:31:42 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"Depends": "R (>= 2.9.0)",
"Enhances": "png",
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Packaged": "2015-02-04 20:31:00 UTC; svnuser",
"Repository": "CRAN",
"Date/Publication": "2015-07-28 08:03:37",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 19:50:57 UTC; unix"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "bit",
"Type": "Package",
"Title": "A Class for Vectors of 1-Bit Booleans",
"Version": "1.1-14",
"Date": "2018-04-11",
"Author": "Jens Oehlschlägel <[email protected]>",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 2.9.2)",
"Description": "True boolean datatype (no NAs), \n coercion from and to logicals, integers and integer subscripts; \n fast boolean operators and fast summary statistics. \n With 'bit' vectors you can store true binary booleans {FALSE,TRUE} at the \n expense of 1 bit only, on a 32 bit architecture this means factor 32 less \n RAM and ~ factor 32 more speed on boolean operations. Due to overhead of \n R calls, actual speed gain depends on the size of the vector: expect gains \n for vectors of size > 10000 elements. Even for one-time boolean operations \n it can pay-off to convert to bit, the pay-off is obvious, when such \n components are used more than once. \n Reading from and writing to bit is approximately as fast as accessing \n standard logicals - mostly due to R's time for memory allocation. The package \n allows to work with pre-allocated memory for return values by calling .Call() \n directly: when evaluating the speed of C-access with pre-allocated vector \n memory, coping from bit to logical requires only 70% of the time for copying \n from logical to logical; and copying from logical to bit comes at a \n performance penalty of 150%. the package now contains further classes for \n representing logical selections: 'bitwhich' for very skewed selections and \n 'ri' for selecting ranges of values for chunked processing. All three index \n classes can be used for subsetting 'ff' objects (ff-2.1-0 and higher).",
"License": "GPL-2",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "http://ff.r-forge.r-project.org/",
"NeedsCompilation": "yes",
"Packaged": "2018-05-27 20:28:22 UTC; jens",
"Repository": "CRAN",
"Date/Publication": "2018-05-29 16:56:33 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 19:52:39 UTC; unix"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "bit64",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "0.9-7",
"Date": "2017-05-07",
"Author": "Jens Oehlschlägel <[email protected]>",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 3.0.1), bit (>= 1.1-12), utils, methods, stats",
"Description": "\n Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. \n These are useful for handling database keys and exact counting in +-2^63.\n WARNING: do not use them as replacement for 32bit integers, integer64 are not\n supported for subscripting by R-core and they have different semantics when \n combined with double, e.g. integer64 + double => integer64. \n Class integer64 can be used in vectors, matrices, arrays and data.frames. \n Methods are available for coercion from and to logicals, integers, doubles, \n characters and factors as well as many elementwise and summary functions. \n Many fast algorithmic operations such as 'match' and 'order' support inter-\n active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "http://ff.r-forge.r-project.org/",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2017-05-07 19:07:42 UTC; jo",
"Repository": "CRAN",
"Date/Publication": "2017-05-08 13:21:40 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 22:28:24 UTC; unix"
}
},
"bitops": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "bitops",
"Version": "1.0-6",
"Date": "2013-08-17",
"Author": "S original by Steve Dutky <[email protected]> initial R\n port and extensions by Martin Maechler; revised and modified\n by Steve Dutky",
"Maintainer": "Martin Maechler <[email protected]>",
"Title": "Bitwise Operations",
"Description": "Functions for bitwise operations on integer vectors.",
"License": "GPL (>= 2)",
"Packaged": "2013-08-17 15:58:57 UTC; maechler",
"NeedsCompilation": "yes",
"Repository": "CRAN",
"Date/Publication": "2013-08-17 21:10:34",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 19:55:48 UTC; unix"
}
},
"blob": {
"Source": "github",
"Repository": null,
"GithubRepo": "blob",
"GithubUsername": "tidyverse",
"GithubRef": "master",
"GithubSha1": "4c553731f480cb467c655272c1effdc05d53c259",
"description": {
"Package": "blob",
"Title": "A Simple S3 Class for Representing Vectors of Binary Data\n('BLOBS')",
"Version": "1.2.0.9000",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"Kirill\",\n family = \"Müller\",\n role = \"cre\",\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "R's raw vector is useful for storing a single\n binary object. What if you want to put a vector of them in a data\n frame? The 'blob' package provides the blob object, a list of raw\n vectors, suitable for use as a column in data frame.",
"License": "GPL-3",
"URL": "https://github.com/tidyverse/blob",
"BugReports": "https://github.com/tidyverse/blob/issues",
"Imports": "methods, prettyunits, rlang, vctrs (>= 0.2.0)",
"Suggests": "covr, crayon, pillar (>= 1.2.1), testthat",
"Encoding": "UTF-8",
"LazyData": "true",
"Roxygen": "list(markdown = TRUE, roclets = c(\"collate\", \"namespace\",\n\"rd\", \"pkgapi::api_roclet\"))",
"RoxygenNote": "6.1.1",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "blob",
"RemoteUsername": "tidyverse",
"RemoteRef": "master",
"RemoteSha": "4c553731f480cb467c655272c1effdc05d53c259",
"GithubRepo": "blob",
"GithubUsername": "tidyverse",
"GithubRef": "master",
"GithubSHA1": "4c553731f480cb467c655272c1effdc05d53c259",
"NeedsCompilation": "no",
"Packaged": "2019-08-28 01:38:11 UTC; nancy",
"Author": "Hadley Wickham [aut],\n Kirill Müller [cre],\n RStudio [cph]",
"Maintainer": "Kirill Müller <[email protected]>",
"Built": "R 3.6.0; ; 2019-08-28 01:38:11 UTC; unix"
}
},
"bubbles": {
"Source": "github",
"Repository": null,
"GithubRepo": "bubbles",
"GithubUsername": "jcheng5",
"GithubRef": "master",
"GithubSha1": "3311e6aa86bd3dad7c812cf502dd1f875dea4e78",
"description": {
"Package": "bubbles",
"Title": "d3 Bubble Chart htmlwidget",
"Version": "0.2",
"Authors@R": "c(person(\"Joe\", \"Cheng\", role = c(\"cre\", \"aut\"), email = \"[email protected]\"),\n person(\"Mike\", \"Bostock\", role = \"aut\"),\n person(\"Jeff\", \"Heer\", role = \"aut\"))",
"Description": "htmlwidget package for d3 Bubble Chart as seen at\n http://bl.ocks.org/mbostock/4063269.",
"Depends": "R (>= 3.0)",
"Imports": "htmlwidgets",
"License": "MIT",
"LazyData": "true",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "bubbles",
"RemoteUsername": "jcheng5",
"RemoteRef": "master",
"RemoteSha": "3311e6aa86bd3dad7c812cf502dd1f875dea4e78",
"GithubRepo": "bubbles",
"GithubUsername": "jcheng5",
"GithubRef": "master",
"GithubSHA1": "3311e6aa86bd3dad7c812cf502dd1f875dea4e78",
"NeedsCompilation": "no",
"Packaged": "2019-09-11 13:17:20 UTC; nancy",
"Author": "Joe Cheng [cre, aut],\n Mike Bostock [aut],\n Jeff Heer [aut]",
"Maintainer": "Joe Cheng <[email protected]>",
"Built": "R 3.6.0; ; 2019-09-11 13:17:21 UTC; unix"
}
},
"caTools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "caTools",
"Type": "Package",
"Title": "Tools: moving window statistics, GIF, Base64, ROC AUC, etc.",
"Version": "1.17.1.2",
"Date": "2014-04-21",
"Author": "Jarek Tuszynski <[email protected]>",
"Maintainer": "ORPHANED",
"Depends": "R (>= 2.2.0)",
"Imports": "bitops",
"Suggests": "MASS, rpart",
"Description": "Contains several basic utility functions including: moving\n (rolling, running) window statistic functions, read/write for\n GIF and ENVI binary files, fast calculation of AUC, LogitBoost\n classifier, base64 encoder/decoder, round-off-error-free sum\n and cumsum, etc.",
"License": "GPL-3",
"Packaged": "2019-03-06 20:36:42 UTC; hornik",
"NeedsCompilation": "yes",
"Repository": "CRAN",
"Date/Publication": "2019-03-06 20:53:35 UTC",
"X-CRAN-Original-Maintainer": "Harutyun Khachatryan <[email protected]>",
"X-CRAN-Comment": "Orphaned and corrected on 2018-07-20 as check problems\nwere not corrected despite reminders.",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 20:00:56 UTC; unix"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.3.2",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\",\n\t comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\")),\n person(\"Mango Solutions\", role = c(\"cph\", \"fnd\")))",
"Description": "It is sometimes useful to perform a computation in a\n separate R process, without affecting the current R process at all.\n This packages does exactly that.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/r-lib/callr#readme",
"BugReports": "https://github.com/r-lib/callr/issues",
"RoxygenNote": "6.1.1",
"Imports": "processx (>= 3.4.0), R6, utils",
"Suggests": "cliapp, covr, crayon, fansi, knitr, pingr, ps, rmarkdown,\nrprojroot, spelling, testthat, tibble, withr",
"Encoding": "UTF-8",
"VignetteBuilder": "knitr",
"Language": "en-US",
"NeedsCompilation": "no",
"Packaged": "2019-09-22 09:12:55 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>),\n Winston Chang [aut],\n RStudio [cph, fnd],\n Mango Solutions [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-09-22 09:50:02 UTC",
"Built": "R 3.6.0; ; 2019-09-23 13:56:59 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = c(\"ctb\")),\n person(\"Kirill\", \"Müller\", role = c(\"ctb\"))\n )",
"Description": "A suite of tools designed to build attractive command line\n interfaces ('CLIs'). Includes tools for drawing rules, boxes, trees, and\n 'Unicode' symbols with 'ASCII' alternatives.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"RoxygenNote": "6.1.1",
"Depends": "R (>= 2.10)",
"Imports": "assertthat, crayon (>= 1.3.4), methods, utils",
"Suggests": "covr, fansi, mockery, testthat, webshot, withr",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2019-03-19 09:55:47 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-19 10:43:26 UTC",
"Built": "R 3.6.0; ; 2019-04-26 22:26:42 UTC; unix"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.7.0",
"Authors@R": "\n c(person(given = \"Matthew\",\n family = \"Lincoln\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4387-3384\")),\n person(given = \"Louis\",\n family = \"Maddox\",\n role = \"ctb\"),\n person(given = \"Steve\",\n family = \"Simpson\",\n role = \"ctb\"),\n person(given = \"Jennifer\",\n family = \"Bryan\",\n role = \"ctb\"))",
"Description": "Simple utility functions to read from and write to\n the Windows, OS X, and X11 clipboards.",
"License": "GPL-3",
"URL": "https://github.com/mdlincoln/clipr",
"BugReports": "https://github.com/mdlincoln/clipr/issues",
"Imports": "utils",
"Suggests": "covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=\n2.0.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"LazyData": "TRUE",
"RoxygenNote": "6.1.1",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel\n(http://www.vergenet.net/~conrad/software/xsel/) for accessing\nthe X11 clipboard",
"NeedsCompilation": "no",
"Packaged": "2019-07-23 02:33:48 UTC; admin",
"Author": "Matthew Lincoln [aut, cre] (<https://orcid.org/0000-0002-4387-3384>),\n Louis Maddox [ctb],\n Steve Simpson [ctb],\n Jennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-07-23 05:00:03 UTC",
"Built": "R 3.6.0; ; 2019-07-24 12:46:00 UTC; unix"
}
},
"cluster": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "cluster",
"Version": "2.1.0",
"Date": "2019-06-07",
"Priority": "recommended",
"Title": "\"Finding Groups in Data\": Cluster Analysis Extended Rousseeuw et\nal.",
"Description": "Methods for Cluster analysis. Much extended the original from\n\tPeter Rousseeuw, Anja Struyf and Mia Hubert,\n\tbased on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".",
"Maintainer": "Martin Maechler <[email protected]>",
"Authors@R": "c(person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"),\n\t email=\"[email protected]\", comment = c(ORCID = \"0000-0002-8685-9910\"))\n ,person(\"Peter\", \"Rousseeuw\", role=\"aut\", email=\"[email protected]\",\n comment = c(\"Fortran original\", ORCID = \"0000-0002-3807-5353\"))\n ,person(\"Anja\", \"Struyf\", role=\"aut\", comment= \"S original\")\n ,person(\"Mia\", \"Hubert\", role=\"aut\", email= \"[email protected]\",\n comment = c(\"S original\", ORCID = \"0000-0001-6398-4850\"))\n ,person(\"Kurt\", \"Hornik\", role=c(\"trl\", \"ctb\"),\n email=\"[email protected]\",\n comment=c(\"port to R; maintenance(1999-2000)\", ORCID=\"0000-0003-4198-9911\"))\n ,person(\"Matthias\", \"Studer\", role=\"ctb\")\n ,person(\"Pierre\", \"Roudier\", role=\"ctb\")\n ,person(\"Juan\", \"Gonzalez\", role=\"ctb\")\n ,person(\"Kamil\", \"Kozlowski\", role=\"ctb\")\n ,person(\"Erich\", \"Schubert\", role=\"ctb\", comment = c(\"fastpam options for pam()\",\n ORCID = \"0000-0001-9143-4880\"))\n ,person(\"Keefe\", \"Murphy\", role=\"ctb\", comment = \"volume.ellipsoid({d >= 3})\")\n )",
"Depends": "R (>= 3.3.0)",
"Imports": "graphics, grDevices, stats, utils",
"Suggests": "MASS, Matrix",
"SuggestsNote": "MASS: two examples using cov.rob() and mvrnorm(); Matrix\ntools for testing",
"LazyLoad": "yes",
"LazyData": "yes",
"ByteCompile": "yes",
"BuildResaveData": "no",
"License": "GPL (>= 2)",
"URL": "https://svn.r-project.org/R-packages/trunk/cluster",
"NeedsCompilation": "yes",
"Packaged": "2019-06-19 08:21:30 UTC; maechler",
"Author": "Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\n Peter Rousseeuw [aut] (Fortran original,\n <https://orcid.org/0000-0002-3807-5353>),\n Anja Struyf [aut] (S original),\n Mia Hubert [aut] (S original, <https://orcid.org/0000-0001-6398-4850>),\n Kurt Hornik [trl, ctb] (port to R; maintenance(1999-2000),\n <https://orcid.org/0000-0003-4198-9911>),\n Matthias Studer [ctb],\n Pierre Roudier [ctb],\n Juan Gonzalez [ctb],\n Kamil Kozlowski [ctb],\n Erich Schubert [ctb] (fastpam options for pam(),\n <https://orcid.org/0000-0001-9143-4880>),\n Keefe Murphy [ctb] (volume.ellipsoid({d >= 3}))",
"Repository": "CRAN",
"Date/Publication": "2019-06-19 11:10:03 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-06-20 12:12:49 UTC; unix"
}
},
"codetools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "codetools",
"Version": "0.2-16",
"Priority": "recommended",
"Author": "Luke Tierney <[email protected]>",
"Description": "Code analysis tools for R.",
"Title": "Code Analysis Tools for R",
"Depends": "R (>= 2.1)",
"Maintainer": "Luke Tierney <[email protected]>",
"License": "GPL",
"NeedsCompilation": "no",
"Packaged": "2018-12-22 14:48:17 UTC; luke",
"Repository": "CRAN",
"Date/Publication": "2018-12-24 12:40:05 UTC",
"Built": "R 3.6.0; ; 2019-04-26 16:32:29 UTC; unix"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "colorspace",
"Version": "1.4-1",
"Date": "2019-03-18",
"Title": "A Toolbox for Manipulating and Assessing Colors and Palettes",
"Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"[email protected]\"),\n person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3224-8858\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"[email protected]\",\n\t\t comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9032-8912\")),\n person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3798-5507\")),\n person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7346-3047\")),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0918-3766\")))",
"Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\n CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB and polar CIELAB.\n\t Qualitative, sequential, and diverging color palettes based on HCL colors\n\t are provided along with corresponding ggplot2 color scales.\n\t Color palette choice is aided by an interactive app (with either a Tcl/Tk\n\t or a shiny GUI) and shiny apps with an HCL color picker and a\n\t color vision deficiency emulator. Plotting functions for displaying\n\t and assessing palettes include color swatches, visualizations of the\n\t HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\n\t functions include: desaturation, lightening/darkening, mixing, and\n\t simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).",
"Depends": "R (>= 3.0.0), methods",
"Imports": "graphics, grDevices, stats",
"Suggests": "datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,\ntcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,\nknitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,\nwesanderson",
"VignetteBuilder": "knitr",
"License": "BSD_3_clause + file LICENSE",
"URL": "http://colorspace.R-Forge.R-project.org, http://hclwizard.org/",
"BugReports": "http://colorspace.R-Forge.R-project.org/contact.html",
"LazyData": "yes",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2019-03-18 09:11:41 UTC; zeileis",
"Author": "Ross Ihaka [aut],\n Paul Murrell [aut] (<https://orcid.org/0000-0002-3224-8858>),\n Kurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\n Jason C. Fisher [aut] (<https://orcid.org/0000-0001-9032-8912>),\n Reto Stauffer [aut] (<https://orcid.org/0000-0002-3798-5507>),\n Claus O. Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\n Claire D. McWhite [aut] (<https://orcid.org/0000-0001-7346-3047>),\n Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-18 14:43:29 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 19:50:52 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.3.4",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\",\n role = c(\"aut\", \"cre\")),\n person(\n \"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"ctb\"))\n )",
"Description": "Colored terminal output on terminals that support 'ANSI'\n color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI'\n color support is automatically detected. Colors and highlighting can\n be combined and nested. New styles can also be created easily.\n This package was inspired by the 'chalk' 'JavaScript' project.",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/r-lib/crayon#readme",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Collate": "'ansi-256.r' 'combine.r' 'string.r' 'utils.r'\n'crayon-package.r' 'disposable.r' 'has_ansi.r' 'has_color.r'\n'styles.r' 'machinery.r' 'parts.r' 'print.r' 'style-var.r'\n'show.r' 'string_operations.r'",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"RoxygenNote": "6.0.1.9000",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2017-09-15 18:14:04 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",