-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
3802 lines (3802 loc) · 265 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_US",
"platform": "3.6.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "DBI",
"Version": "1.0.0",
"Date": "2018-05-02",
"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)",
"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",
"RoxygenNote": "6.0.1.9000",
"NeedsCompilation": "no",
"Packaged": "2018-05-02 00:38:32 UTC; kirill",
"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]>",
"Repository": "CRAN",
"Date/Publication": "2018-05-02 11:24:41 UTC",
"Built": "R 3.6.0; ; 2019-04-26 19:52:38 UTC; unix"
}
},
"Formula": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "Formula",
"Version": "1.2-3",
"Date": "2018-05-02",
"Title": "Extended Model Formulas",
"Description": "Infrastructure for extended formulas with multiple parts on the\n right-hand side and/or multiple responses on the left-hand side\n\t (see <DOI:10.18637/jss.v034.i01>).",
"Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0918-3766\")),\n person(given = \"Yves\", family = \"Croissant\", role = \"aut\", email = \"[email protected]\"))",
"Depends": "R (>= 2.0.0), stats",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "no",
"Packaged": "2018-05-02 23:06:48 UTC; zeileis",
"Author": "Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>),\n Yves Croissant [aut]",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2018-05-03 07:53:28 UTC",
"Built": "R 3.6.0; ; 2019-04-26 19:51:06 UTC; unix"
}
},
"Hmisc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "Hmisc",
"Version": "4.3-0",
"Date": "2019-11-07",
"Title": "Harrell Miscellaneous",
"Author": "Frank E Harrell Jr <[email protected]>, with\n contributions from Charles Dupont and many others.",
"Maintainer": "Frank E Harrell Jr <[email protected]>",
"Depends": "lattice, survival (>= 2.40-1), Formula, ggplot2 (>= 2.2)",
"Imports": "methods, latticeExtra, cluster, rpart, nnet, acepack, foreign,\ngtable, grid, gridExtra, data.table, htmlTable (>= 1.11.0),\nviridis, htmltools, base64enc",
"Suggests": "chron, rms, mice, tables, knitr, ff, ffbase, plotly (>=\n4.5.6), rlang",
"Description": "Contains many functions useful for data\n\tanalysis, high-level graphics, utility operations, functions for\n\tcomputing sample size and power, importing and annotating datasets,\n\timputing missing values, advanced table making, variable clustering,\n\tcharacter string manipulation, conversion of R objects to LaTeX and html code,\n\tand recoding variables.",
"License": "GPL (>= 2)",
"LazyLoad": "Yes",
"URL": "http://biostat.mc.vanderbilt.edu/Hmisc,\nhttps://github.com/harrelfe/Hmisc",
"Encoding": "UTF-8",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2019-11-07 17:16:35 UTC; harrelfe",
"Repository": "CRAN",
"Date/Publication": "2019-11-07 19:20:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-11-08 19:40:32 UTC; unix"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.1; x86_64-apple-darwin15.6.0; 2019-07-06 02:02:14 UTC; unix"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "Matrix",
"Version": "1.2-18",
"Date": "2019-11-25",
"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-11-26 17:17:19 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-11-27 15:20:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-11-28 14:16:28 UTC; unix"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.4.1",
"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-11-12 20:00:15 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-11-12 22:50:03 UTC",
"Built": "R 3.6.0; ; 2019-11-13 16:10:18 UTC; unix"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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"
}
},
"RcppArmadillo": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "RcppArmadillo",
"Type": "Package",
"Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra\nLibrary",
"Version": "0.9.800.1.0",
"Date": "2019-10-09",
"Author": "Dirk Eddelbuettel, Romain Francois, Doug Bates and Binxiang Ni",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "'Armadillo' is a templated C++ linear algebra library (by Conrad\n Sanderson) that aims towards a good balance between speed and ease of use. Integer,\n floating point and complex numbers are supported, as well as a subset of\n trigonometric and statistics functions. Various matrix decompositions are\n provided through optional integration with LAPACK and ATLAS libraries.\n The 'RcppArmadillo' package includes the header files from the templated\n 'Armadillo' library. Thus users do not need to install 'Armadillo' itself in\n order to use 'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is\n licensed under Apache License 2; previous releases were under licensed as\n MPL 2.0 from version 3.800.0 onwards and LGPL-3 prior to that;\n 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed under\n the GNU GPL version 2 or later, as is the rest of 'Rcpp'. Note that\n Armadillo requires a fairly recent compiler; for the g++ family at least\n version 4.6.* is required. ",
"License": "GPL (>= 2)",
"LazyLoad": "yes",
"Depends": "R (>= 3.3.0)",
"LinkingTo": "Rcpp",
"Imports": "Rcpp (>= 0.11.0), stats, utils, methods",
"Suggests": "tinytest, Matrix, pkgKitten, reticulate, rmarkdown, knitr,\npinp, slam",
"VignetteBuilder": "knitr",
"URL": "http://dirk.eddelbuettel.com/code/rcpp.armadillo.html",
"BugReports": "https://github.com/RcppCore/RcppArmadillo/issues",
"NeedsCompilation": "yes",
"Packaged": "2019-10-09 12:01:02.551102 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2019-10-09 13:50:05 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-10-10 12:38:30 UTC; unix"
}
},
"acepack": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "acepack",
"Maintainer": "Shawn Garbett <[email protected]>",
"Version": "1.4.1",
"Author": "Phil Spector, Jerome Friedman, Robert Tibshirani, Thomas Lumley, Shawn Garbett, Jonathan Baron",
"Description": "Two nonparametric methods for multiple regression transform selection are provided.\n The first, Alternative Conditional Expectations (ACE), \n is an algorithm to find the fixed point of maximal\n correlation, i.e. it finds a set of transformed response variables that maximizes R^2\n using smoothing functions [see Breiman, L., and J.H. Friedman. 1985. \"Estimating Optimal Transformations\n for Multiple Regression and Correlation\". Journal of the American Statistical Association.\n 80:580-598. <doi:10.1080/01621459.1985.10478157>].\n Also included is the Additivity Variance Stabilization (AVAS) method which works better than ACE when\n correlation is low [see Tibshirani, R.. 1986. \"Estimating Transformations for Regression via Additivity\n and Variance Stabilization\". Journal of the American Statistical Association. 83:394-405. \n <doi:10.1080/01621459.1988.10478610>]. A good introduction to these two methods is in chapter 16 of\n Frank Harrel's \"Regression Modeling Strategies\" in the Springer Series in Statistics.",
"Title": "ACE and AVAS for Selecting Multiple Regression Transformations",
"License": "MIT + file LICENSE",
"Suggests": "testthat",
"Packaged": "2016-10-28 15:38:59 UTC; garbetsp",
"Repository": "CRAN",
"Date/Publication": "2016-10-29 00:11:52",
"NeedsCompilation": "yes",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 19:51:13 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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/",
"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/",
"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/",
"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"
}
},
"broom": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "broom",
"Title": "Convert Statistical Analysis Objects into Tidy Tibbles",
"Version": "0.5.2",
"Authors@R": "\n c(person(given = \"David\",\n family = \"Robinson\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Alex\",\n family = \"Hayes\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4985-5160\")),\n person(given = \"Matthieu\",\n family = \"Gomez\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Boris\",\n family = \"Demeshev\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Dieter\",\n family = \"Menne\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Benjamin\",\n family = \"Nutter\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luke\",\n family = \"Johnston\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Bolker\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Francois\",\n family = \"Briatte\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jeffrey\",\n family = \"Arnold\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jonah\",\n family = \"Gabry\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luciano\",\n family = \"Selzer\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Gavin\",\n family = \"Simpson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jens\",\n family = \"Preussner\",\n role = \"ctb\",\n email = \" [email protected]\"),\n person(given = \"Jay\",\n family = \"Hesselberth\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthew\",\n family = \"Lincoln\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Alessandro\",\n family = \"Gasparini\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Lukasz\",\n family = \"Komsta\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Frederick\",\n family = \"Novometsky\",\n role = \"ctb\"),\n person(given = \"Wilson\",\n family = \"Freitas\",\n role = \"ctb\"),\n person(given = \"Michelle\",\n family = \"Evans\",\n role = \"ctb\"),\n person(given = \"Jason Cory\",\n family = \"Brunson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Simon\",\n family = \"Jackson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Whalley\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Michael\",\n family = \"Kuehn\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jorge\",\n family = \"Cimentada\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Erle\",\n family = \"Holgersen\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Karl\",\n family = \"Dunkle Werner\",\n role = \"ctb\"))",
"Description": "Summarizes key information about statistical\n objects in tidy tibbles. This makes it easy to report results, create\n plots and consistently work with large numbers of models at once.\n Broom provides three verbs that each provide different types of\n information about a model. tidy() summarizes information about model\n components such as coefficients of a regression. glance() reports\n information about an entire model, such as goodness of fit measures\n like AIC and BIC. augment() adds information about individual\n observations to a dataset, such as fitted values or influence\n measures.",
"License": "MIT + file LICENSE",
"URL": "http://github.com/tidyverse/broom",
"BugReports": "http://github.com/tidyverse/broom/issues",
"Depends": "R (>= 3.1)",
"Imports": "backports, dplyr, generics (>= 0.0.2), methods, nlme, purrr,\nreshape2, stringr, tibble, tidyr",
"Suggests": "AER, akima, AUC, bbmle, betareg, biglm, binGroup, boot, brms,\nbtergm, car, caret, coda, covr, e1071, emmeans, ergm, gam (>=\n1.15), gamlss, gamlss.data, gamlss.dist, geepack, ggplot2,\nglmnet, gmm, Hmisc, irlba, joineRML, Kendall, knitr, ks,\nLahman, lavaan, lfe, lme4, lmodel2, lmtest, lsmeans, maps,\nmaptools, MASS, Matrix, mclust, mgcv, muhaz, multcomp, network,\nnnet, orcutt (>= 2.2), ordinal, plm, plyr, poLCA, psych,\nquantreg, rgeos, rmarkdown, robust, rsample, rstan, rstanarm,\nsp, speedglm, statnet.common, survey, survival, testthat,\ntseries, xergm, zoo",
"VignetteBuilder": "knitr",
"LazyData": "true",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "no",
"Packaged": "2019-04-07 19:01:07 UTC; alex",
"Author": "David Robinson [aut],\n Alex Hayes [aut, cre] (<https://orcid.org/0000-0002-4985-5160>),\n Matthieu Gomez [ctb],\n Boris Demeshev [ctb],\n Dieter Menne [ctb],\n Benjamin Nutter [ctb],\n Luke Johnston [ctb],\n Ben Bolker [ctb],\n Francois Briatte [ctb],\n Jeffrey Arnold [ctb],\n Jonah Gabry [ctb],\n Luciano Selzer [ctb],\n Gavin Simpson [ctb],\n Jens Preussner [ctb],\n Jay Hesselberth [ctb],\n Hadley Wickham [ctb],\n Matthew Lincoln [ctb],\n Alessandro Gasparini [ctb],\n Lukasz Komsta [ctb],\n Frederick Novometsky [ctb],\n Wilson Freitas [ctb],\n Michelle Evans [ctb],\n Jason Cory Brunson [ctb],\n Simon Jackson [ctb],\n Ben Whalley [ctb],\n Michael Kuehn [ctb],\n Jorge Cimentada [ctb],\n Erle Holgersen [ctb],\n Karl Dunkle Werner [ctb]",
"Maintainer": "Alex Hayes <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-04-07 19:52:53 UTC",
"Built": "R 3.6.0; ; 2019-04-27 05:14:02 UTC; unix"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Jennifer\", \"Bryan\", , \"[email protected]\", c(\"cre\", \"aut\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", \"ctb\")\n )",
"Description": "Helper functions to work with spreadsheets and the \"A1:D10\" style\n of cell range specification.",
"Depends": "R (>= 3.0.0)",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/rsheets/cellranger",
"BugReports": "https://github.com/rsheets/cellranger/issues",
"Suggests": "covr, testthat (>= 1.0.0), knitr, rmarkdown",
"RoxygenNote": "5.0.1.9000",
"VignetteBuilder": "knitr",
"Imports": "rematch, tibble",
"NeedsCompilation": "no",
"Packaged": "2016-07-26 06:50:00 UTC; jenny",
"Author": "Jennifer Bryan [cre, aut],\n Hadley Wickham [ctb]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2016-07-27 03:17:48",
"Built": "R 3.6.0; ; 2019-04-27 02:04:30 UTC; unix"
}
},
"checkmate": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "checkmate",
"Type": "Package",
"Title": "Fast and Versatile Argument Checks",
"Description": "Tests and assertions to perform frequent argument checks. A\n substantial part of the package was written in C to minimize any worries\n about execution time overhead.",
"Version": "1.9.4",
"Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"[email protected]\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"Bernd\", \"Bischl\", NULL, \"[email protected]\", role = \"ctb\")\n )",
"URL": "https://github.com/mllg/checkmate",
"URLNote": "https://github.com/mllg/checkmate",
"BugReports": "https://github.com/mllg/checkmate/issues",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"Depends": "R (>= 3.0.0)",
"Imports": "backports (>= 1.1.0), utils",
"Suggests": "R6, bit, fastmatch, data.table (>= 1.9.8), devtools, ggplot2,\nknitr, magrittr, microbenchmark, rmarkdown, testthat (>=\n0.11.0), tibble",
"License": "BSD_3_clause + file LICENSE",
"VignetteBuilder": "knitr",
"RoxygenNote": "6.1.1",
"Collate": "'AssertCollection.R' 'allMissing.R' 'anyInfinite.R'\n'anyMissing.R' 'anyNaN.R' 'asInteger.R' 'assert.R' 'helper.R'\n'makeExpectation.R' 'makeTest.R' 'makeAssertion.R'\n'checkAccess.R' 'checkArray.R' 'checkAtomic.R'\n'checkAtomicVector.R' 'checkBit.R' 'checkCharacter.R'\n'checkChoice.R' 'checkClass.R' 'checkComplex.R' 'checkCount.R'\n'checkDataFrame.R' 'checkDataTable.R' 'checkDate.R'\n'checkDirectoryExists.R' 'checkDisjunct.R' 'checkDouble.R'\n'checkEnvironment.R' 'checkFALSE.R' 'checkFactor.R'\n'checkFileExists.R' 'checkFlag.R' 'checkFormula.R'\n'checkFunction.R' 'checkInt.R' 'checkInteger.R'\n'checkIntegerish.R' 'checkList.R' 'checkLogical.R'\n'checkMatrix.R' 'checkMultiClass.R' 'checkNamed.R'\n'checkNames.R' 'checkNull.R' 'checkNumber.R' 'checkNumeric.R'\n'checkOS.R' 'checkPOSIXct.R' 'checkPathForOutput.R' 'checkR6.R'\n'checkRaw.R' 'checkScalar.R' 'checkScalarNA.R'\n'checkSetEqual.R' 'checkString.R' 'checkSubset.R' 'checkTRUE.R'\n'checkTibble.R' 'checkVector.R' 'coalesce.R' 'isIntegerish.R'\n'matchArg.R' 'qassert.R' 'qassertr.R' 'vname.R' 'wfwl.R'\n'zzz.R'",
"Packaged": "2019-07-04 07:57:30 UTC; lang",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\n Bernd Bischl [ctb]",
"Maintainer": "Michel Lang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-07-04 16:20:16 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-07-05 14:22:22 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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/",
"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/",
"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.1; x86_64-apple-darwin15.6.0; 2019-07-06 02:02:27 UTC; unix"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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/",
"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",
"Date/Publication": "2017-09-16 19:49:46 UTC",
"Built": "R 3.6.0; ; 2019-04-26 19:49:57 UTC; unix"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "4.2",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "The curl() and curl_download() functions provide highly\n configurable drop-in replacements for base url() and download.file() with\n better performance, support for encryption (https, ftps), gzip compression,\n authentication, and other 'libcurl' goodies. The core of the package implements a\n framework for performing fully customized requests where data can be processed\n either in memory, on disk, or streaming via the callback or connection\n interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\n web client see the 'httr' package which builds on this package with http\n specific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).",
"URL": "https://jeroen.cran.dev/curl (docs)\nhttps://github.com/jeroen/curl#readme (devel)\nhttps://curl.haxx.se/libcurl/ (upstream)",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": "askpass, spelling, testthat (>= 1.0.0), knitr, jsonlite,\nrmarkdown, magrittr, httpuv (>= 1.4.4), webutils",
"VignetteBuilder": "knitr",
"Depends": "R (>= 3.0.0)",
"LazyData": "true",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2019-09-24 10:59:35 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Hadley Wickham [ctb],\n RStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-09-24 12:20:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-09-26 13:35:57 UTC; unix"
}
},
"data.table": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "data.table",
"Version": "1.12.6",
"Title": "Extension of `data.frame`",
"Authors@R": "c(\n person(\"Matt\",\"Dowle\", role=c(\"aut\",\"cre\"), email=\"[email protected]\"),\n person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"[email protected]\"),\n person(\"Jan\",\"Gorecki\", role=\"ctb\"),\n person(\"Michael\",\"Chirico\", role=\"ctb\"),\n person(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\n person(\"Tom\",\"Short\", role=\"ctb\"),\n person(\"Steve\",\"Lianoglou\", role=\"ctb\"),\n person(\"Eduard\",\"Antonyan\", role=\"ctb\"),\n person(\"Markus\",\"Bonsch\", role=\"ctb\"),\n person(\"Hugh\",\"Parsonage\", role=\"ctb\"),\n person(\"Scott\",\"Ritchie\", role=\"ctb\"),\n person(\"Kun\",\"Ren\", role=\"ctb\"),\n person(\"Xianying\",\"Tan\", role=\"ctb\"),\n person(\"Rick\",\"Saporta\", role=\"ctb\"),\n person(\"Otto\",\"Seiskari\", role=\"ctb\"),\n person(\"Xianghui\",\"Dong\", role=\"ctb\"),\n person(\"Michel\",\"Lang\", role=\"ctb\"),\n person(\"Watal\",\"Iwasaki\", role=\"ctb\"),\n person(\"Seth\",\"Wenchel\", role=\"ctb\"),\n person(\"Karl\",\"Broman\", role=\"ctb\"),\n person(\"Tobias\",\"Schmidt\", role=\"ctb\"),\n person(\"David\",\"Arenburg\", role=\"ctb\"),\n person(\"Ethan\",\"Smith\", role=\"ctb\"),\n person(\"Francois\",\"Cocquemas\", role=\"ctb\"),\n person(\"Matthieu\",\"Gomez\", role=\"ctb\"),\n person(\"Philippe\",\"Chataignon\", role=\"ctb\"),\n person(\"Declan\",\"Groves\", role=\"ctb\"),\n person(\"Daniel\",\"Possenriede\", role=\"ctb\"),\n person(\"Felipe\",\"Parages\", role=\"ctb\"),\n person(\"Denes\",\"Toth\", role=\"ctb\"),\n person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\n person(\"Ayappan\",\"Perumal\", role=\"ctb\"),\n person(\"James\",\"Sams\", role=\"ctb\"),\n person(\"Martin\",\"Morgan\", role=\"ctb\"),\n person(\"Michael\",\"Quinn\", role=\"ctb\"),\n person(\"@javrucebo\",\"\", role=\"ctb\"),\n person(\"@marc-outins\",\"\", role=\"ctb\"),\n person(\"Roy\",\"Storey\", role=\"ctb\"),\n person(\"Manish\",\"Saraswat\", role=\"ctb\"),\n person(\"Morgan\",\"Jacob\", role=\"ctb\"),\n person(\"Michael\",\"Schubmehl\", role=\"ctb\"))",
"Depends": "R (>= 3.1.0)",
"Imports": "methods",
"Suggests": "bit64, curl, R.utils, knitr, xts, nanotime, zoo, yaml",
"SystemRequirements": "zlib",
"Description": "Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns, friendly and fast character-separated-value read/write. Offers a natural and flexible syntax, for faster development.",
"License": "MPL-2.0 | file LICENSE",
"URL": "http://r-datatable.com, https://Rdatatable.gitlab.io/data.table,\nhttps://github.com/Rdatatable/data.table",
"BugReports": "https://github.com/Rdatatable/data.table/issues",
"VignetteBuilder": "knitr",
"ByteCompile": "TRUE",
"NeedsCompilation": "yes",
"Packaged": "2019-10-17 19:57:26.158 UTC; mdowle",
"Author": "Matt Dowle [aut, cre],\n Arun Srinivasan [aut],\n Jan Gorecki [ctb],\n Michael Chirico [ctb],\n Pasha Stetsenko [ctb],\n Tom Short [ctb],\n Steve Lianoglou [ctb],\n Eduard Antonyan [ctb],\n Markus Bonsch [ctb],\n Hugh Parsonage [ctb],\n Scott Ritchie [ctb],\n Kun Ren [ctb],\n Xianying Tan [ctb],\n Rick Saporta [ctb],\n Otto Seiskari [ctb],\n Xianghui Dong [ctb],\n Michel Lang [ctb],\n Watal Iwasaki [ctb],\n Seth Wenchel [ctb],\n Karl Broman [ctb],\n Tobias Schmidt [ctb],\n David Arenburg [ctb],\n Ethan Smith [ctb],\n Francois Cocquemas [ctb],\n Matthieu Gomez [ctb],\n Philippe Chataignon [ctb],\n Declan Groves [ctb],\n Daniel Possenriede [ctb],\n Felipe Parages [ctb],\n Denes Toth [ctb],\n Mus Yaramaz-David [ctb],\n Ayappan Perumal [ctb],\n James Sams [ctb],\n Martin Morgan [ctb],\n Michael Quinn [ctb],\n @javrucebo [ctb],\n @marc-outins [ctb],\n Roy Storey [ctb],\n Manish Saraswat [ctb],\n Morgan Jacob [ctb],\n Michael Schubmehl [ctb]",
"Maintainer": "Matt Dowle <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-10-18 22:20:10 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-10-19 12:26:30 UTC; unix"
}
},
"dbplyr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "dbplyr",
"Title": "A 'dplyr' Back End for Databases",
"Version": "1.4.2",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Edgar\",\n family = \"Ruiz\",\n role = \"aut\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "A 'dplyr' back end for databases that allows you to\n work with remote database tables as if they are in-memory data frames.\n Basic features works with any database that has a 'DBI' back end; more\n advanced features require 'SQL' translation to be provided by the\n package author.",
"License": "MIT + file LICENSE",
"URL": "https://dbplyr.tidyverse.org/, https://github.com/tidyverse/dbplyr",
"BugReports": "https://github.com/tidyverse/dbplyr/issues",
"Depends": "R (>= 3.1)",
"Imports": "assertthat (>= 0.2.0), DBI (>= 1.0.0), dplyr (>= 0.8.0), glue\n(>= 1.2.0), methods, purrr (>= 0.2.5), R6 (>= 2.2.2), rlang (>=\n0.2.0), tibble (>= 1.4.2), tidyselect (>= 0.2.4), utils",
"Suggests": "bit64, covr, knitr, Lahman, nycflights13, RMariaDB (>=\n1.0.2), rmarkdown, RMySQL (>= 0.10.11), RPostgreSQL (>= 0.4.1),\nRSQLite (>= 2.1.0), testthat (>= 2.0.0), withr (>= 2.1.2)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-gb",
"LazyData": "yes",
"RoxygenNote": "6.1.1",
"Collate": "'utils.R' 'sql.R' 'escape.R' 'translate-sql-quantile.R'\n'translate-sql-string.R' 'translate-sql-paste.R'\n'translate-sql-helpers.R' 'translate-sql-window.R'\n'translate-sql-conditional.R' 'backend-.R' 'backend-access.R'\n'backend-hive.R' 'backend-impala.R' 'backend-mssql.R'\n'backend-mysql.R' 'backend-odbc.R' 'backend-oracle.R'\n'backend-postgres.R' 'backend-sqlite.R' 'backend-teradata.R'\n'build-sql.R' 'data-cache.R' 'data-lahman.R'\n'data-nycflights13.R' 'dbplyr.R' 'explain.R' 'ident.R'\n'lazy-ops.R' 'memdb.R' 'partial-eval.R' 'query-join.R'\n'query-select.R' 'query-semi-join.R' 'query-set-op.R' 'query.R'\n'remote.R' 'schema.R' 'simulate.R' 'sql-build.R' 'sql-expr.R'\n'src-sql.R' 'src_dbi.R' 'tbl-lazy.R' 'tbl-sql.R' 'test-frame.R'\n'testthat.R' 'translate-sql-clause.R' 'translate-sql.R'\n'utils-format.R' 'verb-arrange.R' 'verb-compute.R'\n'verb-copy-to.R' 'verb-distinct.R' 'verb-do-query.R'\n'verb-do.R' 'verb-filter.R' 'verb-group_by.R' 'verb-head.R'\n'verb-joins.R' 'verb-mutate.R' 'verb-pull.R' 'verb-select.R'\n'verb-set-ops.R' 'verb-summarise.R' 'verb-window.R' 'zzz.R'",
"NeedsCompilation": "no",
"Packaged": "2019-06-17 19:32:57 UTC; hadley",
"Author": "Hadley Wickham [aut, cre],\n Edgar Ruiz [aut],\n RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-06-17 20:00:04 UTC",
"Built": "R 3.6.0; ; 2019-06-18 12:28:08 UTC; unix"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <[email protected]> with contributions \n by Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\n Mario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\n Duncan Murdoch, Jim Hester, Wush Wu, Qiang Kou, Thierry Onkelinx, \n Michel Lang, Viliam Simko, Kurt Hornik, Radford Neal, Kendon Bell,\n Matthew de Queljoe, Ion Suruceanu, and Bill Denney.",
"Version": "0.6.23",
"Date": "2019-11-22",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation \n of hash digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', \n 'crc32', 'xxhash', 'murmurhash' and 'spookyhash' algorithms) permitting easy\n comparison of R language objects, as well as functions such as'hmac()' to\n create hash-based message authentication code. Please note that this package\n is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be\n used.",
"URL": "http://dirk.eddelbuettel.com/code/digest.html",
"BugReports": "https://github.com/eddelbuettel/digest/issues",
"Depends": "R (>= 3.1.0)",
"Imports": "utils",
"License": "GPL (>= 2)",
"Suggests": "tinytest, knitr, rmarkdown",
"VignetteBuilder": "knitr",
"NeedsCompilation": "yes",
"Packaged": "2019-11-22 16:44:22.218585 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2019-11-23 09:40:07 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-11-24 14:32:07 UTC; unix"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "0.8.3",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Romain\", \"Fran\\u00e7ois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Kirill\", \"M\\u00fcller\", role = \"aut\", comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A fast, consistent tool for working with data frame like objects,\n both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "http://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": "R (>= 3.2.0)",
"Imports": "assertthat (>= 0.2.0), glue (>= 1.3.0), magrittr (>= 1.5),\nmethods, pkgconfig, R6, Rcpp (>= 1.0.1), rlang (>= 0.4.0),\ntibble (>= 2.0.0), tidyselect (>= 0.2.5), utils",
"Suggests": "bit64, callr, covr, crayon (>= 1.3.4), DBI, dbplyr, dtplyr,\nggplot2, hms, knitr, Lahman, lubridate, MASS, mgcv,\nmicrobenchmark, nycflights13, rmarkdown, RMySQL, RPostgreSQL,\nRSQLite, testthat, withr, broom, purrr, readr",
"LinkingTo": "BH, plogr (>= 0.2.0), Rcpp (>= 1.0.1)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"LazyData": "yes",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2019-07-04 05:04:15 UTC; romainfrancois",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Lionel Henry [aut],\n Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>),\n RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-07-04 15:50:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-07-05 14:52:22 UTC; unix"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "ellipsis",
"Version": "0.3.0",
"Title": "Tools for Working with ...",
"Description": "The ellipsis is a powerful tool for extending functions. Unfortunately \n this power comes at a cost: misspelled arguments will be silently ignored. \n The ellipsis package provides a collection of functions to catch problems\n and alert the user.",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "GPL-3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "6.1.1",
"URL": "https://ellipsis.r-lib.org, https://github.com/r-lib/ellipsis",
"BugReports": "https://github.com/r-lib/ellipsis/issues",
"Depends": "R (>= 3.2)",
"Imports": "rlang (>= 0.3.0)",
"Suggests": "covr, testthat",
"NeedsCompilation": "yes",
"Packaged": "2019-09-20 20:15:40 UTC; jhester",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-09-20 20:40:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-09-21 17:00:58 UTC; unix"
}
},
"evaluate": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "evaluate",
"Type": "Package",
"Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault",
"Version": "0.14",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Michael\", \"Lawrence\", role = \"ctb\"),\n person(\"Thomas\", \"Kluyver\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Michel\", \"Lang\", role = \"ctb\"),\n person(\"Karolis\", \"Koncevičius\", role = \"ctb\")\n )",
"Description": "Parsing and evaluation tools that make it easy to recreate the\n command line behaviour of R.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/evaluate",
"BugReports": "https://github.com/r-lib/evaluate/issues",
"Depends": "R (>= 3.0.2)",
"Imports": "methods",
"Suggests": "testthat, lattice, ggplot2",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2019-05-28 15:30:02 UTC; yihui",
"Author": "Hadley Wickham [aut],\n Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb]",
"Maintainer": "Yihui Xie <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-05-28 15:50:02 UTC",
"Built": "R 3.6.0; ; 2019-05-29 12:00:04 UTC; unix"
}
},
"fansi": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "fansi",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.",
"Version": "0.4.0",
"Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"[email protected]\", role=\"cph\",\n comment=\"UTF8 byte length calcs from src/util.c\"\n ))",
"Depends": "R (>= 3.1.0)",
"License": "GPL (>= 2)",
"LazyData": "true",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"RoxygenNote": "6.1.0.9000",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'has.R' 'internal.R' 'load.R'\n'misc.R' 'nchar.R' 'strip.R' 'strwrap.R' 'strtrim.R'\n'strsplit.R' 'substr2.R' 'tohtml.R' 'unhandled.R'",
"NeedsCompilation": "yes",
"Packaged": "2018-10-04 19:06:14 UTC; bg",
"Author": "Brodie Gaslam [aut, cre],\n Elliott Sales De Andrade [ctb],\n R Core Team [cph] (UTF8 byte length calcs from src/util.c)",
"Maintainer": "Brodie Gaslam <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2018-10-05 05:10:12 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-04-26 19:49:57 UTC; unix"
}
},
"farver": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "farver",
"Type": "Package",
"Title": "High Performance Colour Space Manipulation",
"Version": "2.0.1",
"Authors@R": "\n c(person(given = \"Thomas Lin\",\n family = \"Pedersen\",\n role = c(\"cre\", \"aut\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(given = \"Berendea\",\n family = \"Nicolae\",\n role = \"aut\",\n comment = \"Author of the ColorSpace C++ library\"),\n person(given = \"Romain\", \n family = \"François\", \n role = \"aut\", \n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2444-4226\")) \n )",
"Maintainer": "Thomas Lin Pedersen <[email protected]>",
"Description": "The encoding of colour can be handled in many different ways, using\n different colour spaces. As different colour spaces have different uses,\n efficient conversion between these representations are important. The \n 'farver' package provides a set of functions that gives access to very fast\n colour space conversion and comparisons implemented in C++, and offers \n speed improvements over the 'convertColor' function in the 'grDevices' \n package.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"SystemRequirements": "C++11",
"RoxygenNote": "6.1.1",
"URL": "https://github.com/thomasp85/farver",
"BugReports": "https://github.com/thomasp85/farver/issues",
"Suggests": "testthat (>= 2.1.0), covr",
"NeedsCompilation": "yes",
"Packaged": "2019-11-13 19:27:13 UTC; thomas",
"Author": "Thomas Lin Pedersen [cre, aut]\n (<https://orcid.org/0000-0002-5147-4711>),\n Berendea Nicolae [aut] (Author of the ColorSpace C++ library),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>)",
"Repository": "CRAN",
"Date/Publication": "2019-11-13 22:20:13 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-11-14 17:12:39 UTC; unix"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "fastmap",
"Title": "Fast Implementation of a Key-Value Store",
"Version": "1.0.1",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(given = \"RStudio\", role = c(\"cph\", \"fnd\")),\n person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\")\n )",
"Description": "Fast implementation of a key-value store. Environments are commonly\n used as key-value stores, but every time a new key is used, it is added to\n R's global symbol table, causing a small amount of memory leakage. This can\n be problematic in cases where many different keys are used. Fastmap avoids\n this memory leak issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "6.1.1",
"Suggests": "testthat (>= 2.1.1)",
"URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap",
"BugReports": "https://github.com/r-lib/fastmap/issues",
"NeedsCompilation": "yes",
"Packaged": "2019-10-07 23:14:48 UTC; winston",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd],\n Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-10-08 05:20:02 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-10-09 15:56:47 UTC; unix"
}
},
"forcats": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "forcats",
"Title": "Tools for Working with Categorical Variables (Factors)",
"Version": "0.4.0",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Helpers for reordering factor levels (including\n moving specified levels to front, ordering by first appearance,\n reversing, and randomly shuffling), and tools for modifying factor\n levels (including collapsing rare levels into other, 'anonymising',\n and manually 'recoding').",
"License": "GPL-3",
"URL": "http://forcats.tidyverse.org, https://github.com/tidyverse/forcats",
"BugReports": "https://github.com/tidyverse/forcats/issues",
"Depends": "R (>= 3.1)",
"Imports": "ellipsis, magrittr, rlang, tibble",
"Suggests": "covr, ggplot2, testthat, readr, knitr, rmarkdown, dplyr",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "6.1.1",
"VignetteBuilder": "knitr",
"NeedsCompilation": "no",
"Packaged": "2019-02-17 14:15:34 UTC; hadley",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-02-17 14:40:02 UTC",
"Built": "R 3.6.0; ; 2019-04-27 02:02:04 UTC; unix"
}
},
"foreign": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "foreign",
"Priority": "recommended",
"Version": "0.8-72",
"Date": "2019-08-02",
"Title": "Read Data Stored by 'Minitab', 'S', 'SAS', 'SPSS', 'Stata',\n'Systat', 'Weka', 'dBase', ...",
"Depends": "R (>= 3.0.0)",
"Imports": "methods, utils, stats",
"Authors@R": "c(\n person(\"R Core Team\",\n email = \"[email protected]\", role = c(\"aut\", \"cph\", \"cre\")),\n person(\"Roger\", \"Bivand\", role = c(\"ctb\", \"cph\")),\n person(c(\"Vincent\", \"J.\"), \"Carey\", role = c(\"ctb\", \"cph\")),\n person(\"Saikat\", \"DebRoy\", role = c(\"ctb\", \"cph\")),\n person(\"Stephen\", \"Eglen\", role = c(\"ctb\", \"cph\")),\n person(\"Rajarshi\", \"Guha\", role = c(\"ctb\", \"cph\")),\n person(\"Swetlana\", \"Herbrandt\", role = \"ctb\"),\n person(\"Nicholas\", \"Lewin-Koh\", role = c(\"ctb\", \"cph\")),\n person(\"Mark\", \"Myatt\", role = c(\"ctb\", \"cph\")),\n person(\"Michael\", \"Nelson\", role = \"ctb\"),\n person(\"Ben\", \"Pfaff\", role = \"ctb\"),\n person(\"Brian\", \"Quistorff\", role = \"ctb\"),\n person(\"Frank\", \"Warmerdam\", role = c(\"ctb\", \"cph\")),\n person(\"Stephen\", \"Weigand\", role = c(\"ctb\", \"cph\")),\n person(\"Free Software Foundation, Inc.\", role = \"cph\"))",
"Copyright": "see file COPYRIGHTS",
"Description": "Reading and writing data stored by some versions of\n\t'Epi Info', 'Minitab', 'S', 'SAS', 'SPSS', 'Stata', 'Systat', 'Weka',\n\tand for reading and writing some 'dBase' files.",
"ByteCompile": "yes",
"Biarch": "yes",
"License": "GPL (>= 2)",
"BugReports": "https://bugs.r-project.org",
"NeedsCompilation": "yes",
"Packaged": "2019-08-02 07:24:39 UTC; hornik",
"Author": "R Core Team [aut, cph, cre],\n Roger Bivand [ctb, cph],\n Vincent J. Carey [ctb, cph],\n Saikat DebRoy [ctb, cph],\n Stephen Eglen [ctb, cph],\n Rajarshi Guha [ctb, cph],\n Swetlana Herbrandt [ctb],\n Nicholas Lewin-Koh [ctb, cph],\n Mark Myatt [ctb, cph],\n Michael Nelson [ctb],\n Ben Pfaff [ctb],\n Brian Quistorff [ctb],\n Frank Warmerdam [ctb, cph],\n Stephen Weigand [ctb, cph],\n Free Software Foundation, Inc. [cph]",
"Maintainer": "R Core Team <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-08-02 07:27:08 UTC",
"Built": "R 3.6.0; x86_64-apple-darwin15.6.0; 2019-08-03 12:45:27 UTC; unix"
}
},
"fs": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "fs",
"Title": "Cross-Platform File System Operations Based on 'libuv'",
"Version": "1.3.1",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", \"aut\"),\n person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A cross-platform interface to file system operations, built on\n top of the 'libuv' C library.",
"Depends": "R (>= 3.1)",
"License": "GPL-3",
"Encoding": "UTF-8",
"LazyData": "true",
"ByteCompile": "true",
"LinkingTo": "Rcpp",
"Imports": "methods, Rcpp",
"SystemRequirements": "GNU make",
"RoxygenNote": "6.1.1",
"URL": "http://fs.r-lib.org, https://github.com/r-lib/fs",
"BugReports": "https://github.com/r-lib/fs/issues",
"Copyright": "file COPYRIGHTS",
"Suggests": "testthat, covr, pillar (>= 1.0.0), crayon, rmarkdown, knitr,\nwithr, spelling",
"VignetteBuilder": "knitr",
"Language": "en-US",