-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
14026 lines (14026 loc) · 864 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": "4.1.0",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"DBI": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "DBI",
"Title": "R Database Interface",
"Version": "1.1.1",
"Date": "2021-01-04",
"Authors@R": "\n c(person(given = \"R Special Interest Group on Databases (R-SIG-DB)\",\n role = \"aut\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"R Consortium\",\n role = \"fnd\"))",
"Description": "A database interface definition for communication\n between R and relational database management systems. All classes in\n this package are virtual and need to be extended by the various R/DBMS\n implementations.",
"License": "LGPL (>= 2.1)",
"URL": "https://dbi.r-dbi.org, https://github.com/r-dbi/DBI",
"BugReports": "https://github.com/r-dbi/DBI/issues",
"Depends": "methods, R (>= 3.0.0)",
"Suggests": "blob, covr, dbplyr, dplyr, glue, hms, knitr, magrittr,\nrmarkdown, rprojroot, RMariaDB, RSQLite (>= 1.1-2), testthat,\nxml2",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1.9000",
"Collate": "'hidden.R' 'DBObject.R' 'DBDriver.R' 'table.R'\n'DBConnection.R' 'ANSI.R' 'DBConnector.R' 'DBI-package.R'\n'DBResult.R' 'data-types.R' 'data.R' 'deprecated.R' 'hms.R'\n'interpolate.R' 'list-pairs.R' 'quote.R' 'rd.R' 'rownames.R'\n'table-create.R' 'table-insert.R' 'transactions.R'",
"NeedsCompilation": "no",
"Packaged": "2021-01-05 05:09: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": "2021-01-15 10:10:07 UTC",
"Built": "R 4.1.0; ; 2021-05-19 04:43:04 UTC; windows"
}
},
"KernSmooth": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "KernSmooth",
"Priority": "recommended",
"Version": "2.23-20",
"Date": "2021-05-03",
"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/d*\"),\n person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"),\n email = \"[email protected]\",\n\t\t comment = \"R port and updates\"))",
"Note": "Maintainers are not available to give advice on using a package\nthey did not author.",
"Depends": "R (>= 2.5.0), stats",
"Suggests": "MASS, carData",
"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": "2021-05-03 08:46:19 UTC; ripley",
"Author": "Matt Wand [aut],\n Cleve Moler [ctb] (LINPACK routines in src/d*),\n Brian Ripley [trl, cre, ctb] (R port and updates)",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-03 14:06:40 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-18 08:50:59 UTC; windows"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-54",
"Date": "2021-04-17",
"Revision": "$Rev: 3542 $",
"Depends": "R (>= 3.3.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": "2021-05-03 08:31:21 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": "2021-05-03 09:03:25 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-18 08:47:13 UTC; windows"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "Matrix",
"Version": "1.3-3",
"Date": "2021-05-01",
"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.5.0)",
"Imports": "methods, graphics, grid, stats, utils, lattice",
"Suggests": "expm, MASS",
"Enhances": "MatrixModels, graph, SparseM, sfsmisc, igraph, maptools, sp,\nspdep",
"EnhancesNote": "line 2: for \"Rd xrefs\"",
"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": "2021-05-01 13:24:41 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": "2021-05-04 10:50:02 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-18 08:47:41 UTC; windows"
}
},
"ModelMetrics": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "ModelMetrics",
"Title": "Rapid Calculation of Model Metrics",
"Version": "1.2.2.2",
"Date": "2018-11-03",
"Authors@R": "person(\"Tyler\", \"Hunt\", email = \"[email protected]\", role = c(\"aut\", \"cre\"))",
"Description": "Collection of metrics for evaluating models written in C++ using 'Rcpp'. Popular metrics include area under the curve, log loss, root mean square error, etc.",
"Depends": "R (>= 3.2.2)",
"License": "GPL (>= 2)",
"Encoding": "UTF-8",
"LazyData": "true",
"LinkingTo": "Rcpp",
"Imports": "Rcpp, data.table",
"RoxygenNote": "6.0.1",
"Suggests": "testthat",
"NeedsCompilation": "yes",
"Packaged": "2020-03-17 06:58:01 UTC; ripley",
"Author": "Tyler Hunt [aut, cre]",
"Maintainer": "Tyler Hunt <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-03-17 07:45:31 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-10-27 18:07:27 UTC; windows"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.5.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": "2020-10-28 18:30:05 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-10-28 19:30:02 UTC",
"Built": "R 4.1.0; ; 2021-05-19 04:41:37 UTC; windows"
}
},
"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 4.0.3; ; 2020-10-15 18:09:18 UTC; windows"
}
},
"RStoolbox": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "RStoolbox",
"Type": "Package",
"Title": "Tools for Remote Sensing Data Analysis",
"Version": "0.2.6",
"Authors@R": "c(\n person(\"Benjamin\", \"Leutner\", role=c(\"cre\", \"aut\"), email=\"[email protected]\"),\n person(\"Ned\", \"Horning\", role =\"aut\", email=\"[email protected]\"),\n person(\"Jakob\", \"Schwalb-Willmann\", role =\"aut\", email=\"[email protected]\"),\n person(\"Robert J.\", \"Hijmans\", role = \"ctb\", email = \"[email protected]\")\n )",
"Description": "Toolbox for remote sensing image processing and analysis such as\n calculating spectral indices, principal component transformation, unsupervised\n and supervised classification or fractional cover analyses.",
"URL": "http://bleutner.github.io/RStoolbox,\nhttps://github.com/bleutner/RStoolbox",
"BugReports": "https://github.com/bleutner/RStoolbox/issues",
"Encoding": "UTF-8",
"Depends": "R (>= 3.5.0)",
"Imports": "raster (>= 2.3-40), caret (>= 6.0-79), sp, XML, geosphere,\nggplot2, reshape2, rgeos, rgdal, codetools, parallel,\ndoParallel, foreach, Rcpp, methods",
"Suggests": "randomForest, kernlab, e1071, gridExtra, pls, testthat",
"LinkingTo": "Rcpp, RcppArmadillo",
"License": "GPL (>= 3)",
"LazyData": "true",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2019-07-23 15:26:35 UTC; bel03nu",
"Author": "Benjamin Leutner [cre, aut],\n Ned Horning [aut],\n Jakob Schwalb-Willmann [aut],\n Robert J. Hijmans [ctb]",
"Maintainer": "Benjamin Leutner <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-07-23 23:12:10 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-10-28 02:43:38 UTC; windows"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.6",
"Date": "2021-01-14",
"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 <https://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.",
"Imports": "methods, utils",
"Suggests": "tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)",
"URL": "http://www.rcpp.org, https://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "[email protected]",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-01-14 13:44:02 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2021-01-15 13:10:13 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 04:41:44 UTC; windows"
}
},
"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.10.5.0.0",
"Date": "2021-05-21",
"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\n use. Integer, floating point and complex numbers are supported, as\n well as a subset of trigonometric and statistics functions. Various\n matrix decompositions are provided through optional integration with\n LAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the\n header files from the templated 'Armadillo' library. Thus users do\n not need to install 'Armadillo' itself in order to use\n 'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed\n under Apache License 2; previous releases were under licensed as MPL\n 2.0 from version 3.800.0 onwards and LGPL-3 prior to that;\n 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed\n under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.\n Armadillo requires a C++11 compiler.",
"License": "GPL (>= 2)",
"LazyLoad": "yes",
"Depends": "R (>= 3.3.0)",
"LinkingTo": "Rcpp",
"Imports": "Rcpp (>= 0.11.0), stats, utils, methods",
"Suggests": "tinytest, Matrix (>= 1.3.0), pkgKitten, reticulate, slam",
"URL": "https://github.com/RcppCore/RcppArmadillo,\nhttps://dirk.eddelbuettel.com/code/rcpp.armadillo.html",
"BugReports": "https://github.com/RcppCore/RcppArmadillo/issues",
"NeedsCompilation": "yes",
"Packaged": "2021-05-21 11:49:47 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2021-05-23 23:50:09 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-06-12 10:36:19 UTC; windows"
}
},
"SQUAREM": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "SQUAREM",
"Version": "2021.1",
"Date": "2021-01-12",
"Title": "Squared Extrapolation Methods for Accelerating EM-Like Monotone\nAlgorithms",
"Description": "Algorithms for accelerating the convergence of slow,\n monotone sequences from smooth, contraction mapping such as the\n EM algorithm. It can be used to accelerate any smooth, linearly\n convergent acceleration scheme. A tutorial style introduction\n to this package is available in a vignette on the CRAN download\n page or, when the package is loaded in an R session, with\n vignette(\"SQUAREM\"). Refer to the J Stat Software article: <doi:10.18637/jss.v092.i07>. ",
"Depends": "R (>= 3.0)",
"Suggests": "setRNG",
"LazyLoad": "yes",
"License": "GPL (>= 2)",
"Author": "Ravi Varadhan",
"Maintainer": "Ravi Varadhan <[email protected]>",
"URL": "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html",
"Repository": "CRAN",
"NeedsCompilation": "no",
"Packaged": "2021-01-12 23:59:02 UTC; rvaradhan",
"Date/Publication": "2021-01-13 06:40:10 UTC",
"Built": "R 4.1.1; ; 2021-09-10 15:57:10 UTC; windows"
}
},
"XML": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "XML",
"Version": "3.99-0.6",
"Authors@R": "c(person(\"CRAN Team\", role = c('ctb', 'cre'),\n email = \"[email protected]\",\n comment = \"de facto maintainer since 2013\"),\n person(\"Duncan\", \"Temple Lang\", role = c(\"aut\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0159-1546\")),\n\t person(\"Tomas\", \"Kalibera\", role = \"ctb\"))",
"Title": "Tools for Parsing and Generating XML Within R and S-Plus",
"Depends": "R (>= 4.0.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_3_clause + file LICENSE",
"Collate": "AAA.R DTD.R DTDClasses.R DTDRef.R SAXMethods.R XMLClasses.R\napplyDOM.R assignChild.R catalog.R createNode.R dynSupports.R\nerror.R flatTree.R nodeAccessors.R parseDTD.R schema.R\nsummary.R tangle.R toString.R 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": "2021-03-16 13:43:32 UTC; ripley",
"Author": "CRAN Team [ctb, cre] (de facto maintainer since 2013),\n Duncan Temple Lang [aut] (<https://orcid.org/0000-0003-0159-1546>),\n Tomas Kalibera [ctb]",
"Maintainer": "CRAN Team <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-03-16 13:52:45 UTC",
"Built": "R 4.0.5; x86_64-w64-mingw32; 2021-04-24 16:32:34 UTC; windows"
}
},
"abind": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "abind",
"Version": "1.4-5",
"Date": "2016-06-19",
"Title": "Combine Multidimensional Arrays",
"Author": "Tony Plate <[email protected]> and Richard Heiberger",
"Maintainer": "Tony Plate <[email protected]>",
"Description": "Combine multidimensional arrays into a single array.\n This is a generalization of 'cbind' and 'rbind'. Works with\n vectors, matrices, and higher-dimensional arrays. Also\n provides functions 'adrop', 'asub', and 'afill' for manipulating,\n extracting and replacing data in arrays.",
"Depends": "R (>= 1.5.0)",
"Imports": "methods, utils",
"License": "LGPL (>= 2)",
"NeedsCompilation": "no",
"Packaged": "2016-07-19 15:24:25 UTC; tap",
"Repository": "CRAN",
"Date/Publication": "2016-07-21 19:18:05",
"Built": "R 4.1.0; ; 2021-05-17 03:40:52 UTC; windows"
}
},
"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 4.1.1; x86_64-w64-mingw32; 2021-10-27 19:39:32 UTC; windows"
}
},
"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 4.0.0; x86_64-w64-mingw32; 2020-04-26 13:21:30 UTC; windows"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.3.1",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap colorpicker library\"),\n person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootswatch library\"),\n person(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap accessibility plugin\")\n )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and 'rmarkdown' via 'Bootstrap' 'Sass'. Supports both 'Bootstrap' 3 and 4 as well as their various 'Bootswatch' themes. An interactive widget is also provided for previewing themes in real time.",
"Depends": "R (>= 2.10)",
"Imports": "grDevices, htmltools (>= 0.5.2), jsonlite, sass (>= 0.4.0),\njquerylib (>= 0.1.3), rlang",
"Suggests": "shiny (>= 1.6.0), rmarkdown (>= 2.7), thematic, knitr,\ntestthat, withr, rappdirs, curl, magrittr",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Config/testthat/edition": "3",
"Collate": "'bootswatch.R' 'bs-current-theme.R' 'bs-dependencies.R'\n'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R'\n'deprecated.R' 'files.R' 'imports.R' 'nav-items.R'\n'nav-update.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R'\n'precompiled.R' 'print.R' 'shiny-devmode.R' 'utils-shiny.R'\n'utils-tags.R' 'version-default.R' 'versions.R'",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"Config/Needs/website": "rsconnect, renv, r-lib/pkgdown, apreshill/quillt",
"NeedsCompilation": "no",
"Packaged": "2021-10-06 14:12:58 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [aut],\n RStudio [cph],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-10-06 15:10:05 UTC",
"Built": "R 4.1.1; ; 2021-10-27 21:22:55 UTC; windows"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "cachem",
"Version": "1.0.5",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\n either their total size or the age of the oldest object (or both),\n automatically pruning objects to maintain the constraints.",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": "rlang, fastmap",
"Suggests": "testthat",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-05-14 22:15:11 UTC; winston",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-15 06:20:37 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 06:36:50 UTC; windows"
}
},
"caret": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "caret",
"Title": "Classification and Regression Training",
"Version": "6.0-90",
"Authors@R": "\n c(person(given = \"Max\",\n family = \"Kuhn\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Jed\",\n family = \"Wing\",\n role = \"ctb\"),\n person(given = \"Steve\",\n family = \"Weston\",\n role = \"ctb\"),\n person(given = \"Andre\",\n family = \"Williams\",\n role = \"ctb\"),\n person(given = \"Chris\",\n family = \"Keefer\",\n role = \"ctb\"),\n person(given = \"Allan\",\n family = \"Engelhardt\",\n role = \"ctb\"),\n person(given = \"Tony\",\n family = \"Cooper\",\n role = \"ctb\"),\n person(given = \"Zachary\",\n family = \"Mayer\",\n role = \"ctb\"),\n person(given = \"Brenton\",\n family = \"Kenkel\",\n role = \"ctb\"),\n person(given = \"R Core Team\",\n role = \"ctb\"),\n person(given = \"Michael\",\n family = \"Benesty\",\n role = \"ctb\"),\n person(given = \"Reynald\",\n family = \"Lescarbeau\",\n role = \"ctb\"),\n person(given = \"Andrew\",\n family = \"Ziem\",\n role = \"ctb\"),\n person(given = \"Luca\",\n family = \"Scrucca\",\n role = \"ctb\"),\n person(given = \"Yuan\",\n family = \"Tang\",\n role = \"ctb\"),\n person(given = \"Can\",\n family = \"Candan\",\n role = \"ctb\"),\n person(given = \"Tyler\",\n family = \"Hunt\",\n role = \"ctb\"))",
"Description": "Misc functions for training and plotting classification and\n regression models.",
"License": "GPL (>= 2)",
"URL": "https://github.com/topepo/caret/",
"BugReports": "https://github.com/topepo/caret/issues",
"Depends": "ggplot2, lattice (>= 0.20), R (>= 3.2.0)",
"Imports": "e1071, foreach, grDevices, methods, ModelMetrics (>= 1.2.2.2),\nnlme, plyr, pROC, recipes (>= 0.1.10), reshape2, stats, stats4,\nutils, withr (>= 2.0.0)",
"Suggests": "BradleyTerry2, covr, Cubist, dplyr, earth (>= 2.2-3),\nellipse, fastICA, gam (>= 1.15), ipred, kernlab, klaR, knitr,\nMASS, Matrix, mda, mgcv, mlbench, MLmetrics, nnet, pamr, party\n(>= 0.9-99992), pls, proxy, randomForest, RANN, rmarkdown,\nrpart, spls, subselect, superpc, testthat (>= 0.9.1), themis\n(>= 0.1.3)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Packaged": "2021-10-08 14:54:59 UTC; max",
"Author": "Max Kuhn [aut, cre],\n Jed Wing [ctb],\n Steve Weston [ctb],\n Andre Williams [ctb],\n Chris Keefer [ctb],\n Allan Engelhardt [ctb],\n Tony Cooper [ctb],\n Zachary Mayer [ctb],\n Brenton Kenkel [ctb],\n R Core Team [ctb],\n Michael Benesty [ctb],\n Reynald Lescarbeau [ctb],\n Andrew Ziem [ctb],\n Luca Scrucca [ctb],\n Yuan Tang [ctb],\n Can Candan [ctb],\n Tyler Hunt [ctb]",
"Maintainer": "Max Kuhn <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-10-09 15:30:06 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-10-28 02:28:48 UTC; windows"
}
},
"class": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "class",
"Priority": "recommended",
"Version": "7.3-19",
"Date": "2021-04-17",
"Depends": "R (>= 3.0.0), stats, utils",
"Imports": "MASS",
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"),\n person(\"William\", \"Venables\", role = \"cph\"))",
"Description": "Various functions for classification, including k-nearest\n neighbour, Learning Vector Quantization and Self-Organizing Maps.",
"Title": "Functions for Classification",
"ByteCompile": "yes",
"License": "GPL-2 | GPL-3",
"URL": "http://www.stats.ox.ac.uk/pub/MASS4/",
"NeedsCompilation": "yes",
"Packaged": "2021-05-03 08:31:22 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\n William Venables [cph]",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-03 09:03:30 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-18 08:51:10 UTC; windows"
}
},
"classInt": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "classInt",
"Version": "0.4-3",
"Date": "2020-04-05",
"Title": "Choose Univariate Class Intervals",
"Authors@R": "c(\n person(\"Roger\", \"Bivand\", role=c(\"aut\", \"cre\"), email=\"[email protected]\", comment=c(ORCID=\"0000-0003-2392-6140\")),\n person(\"Hisaji\", \"Ono\", role=\"ctb\"),\n person(\"Richard\", \"Dunlap\", role=\"ctb\"),\n person(\"Matthieu\", \"Stigler\", role=\"ctb\"),\n person(\"Bill\", \"Denney\", role=\"ctb\", email=\"[email protected]\", comment=c(ORCID=\"0000-0002-5759-428X\")),\n person(\"Diego\", \"Hernangómez\", role=\"ctb\", email=\"[email protected]\", comment=c(ORCID=\"0000-0001-8457-4658\")))",
"Depends": "R (>= 2.2)",
"Imports": "grDevices, stats, graphics, e1071, class, KernSmooth",
"Suggests": "spData (>= 0.2.6.2), units, knitr, rmarkdown",
"NeedsCompilation": "yes",
"Description": "Selected commonly used methods for choosing univariate class intervals for mapping or other graphics purposes.",
"License": "GPL (>= 2)",
"URL": "https://r-spatial.github.io/classInt/,\nhttps://github.com/r-spatial/classInt/",
"BugReports": "https://github.com/r-spatial/classInt/issues/",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"VignetteBuilder": "knitr",
"Packaged": "2020-04-05 16:34:38 UTC; rsb",
"Author": "Roger Bivand [aut, cre] (<https://orcid.org/0000-0003-2392-6140>),\n Hisaji Ono [ctb],\n Richard Dunlap [ctb],\n Matthieu Stigler [ctb],\n Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>),\n Diego Hernangómez [ctb] (<https://orcid.org/0000-0001-8457-4658>)",
"Maintainer": "Roger Bivand <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-04-07 11:10:02 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 08:58:09 UTC; windows"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "2.5.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 person(\"RStudio\", role = \"cph\")\n )",
"Description": "A suite of tools to build attractive command line interfaces\n ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\n etc. Supports custom themes via a 'CSS'-like language. It also contains a\n number of lower level 'CLI' elements: rules, boxes, trees, and\n 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and\n text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"RoxygenNote": "7.1.1.9001",
"Depends": "R (>= 2.10)",
"Imports": "glue, utils",
"Suggests": "callr, covr, grDevices, htmlwidgets, knitr, methods, mockery,\nps (>= 1.3.4.9000), rmarkdown, rstudioapi, prettycode (>=\n1.1.0), testthat, tibble, withr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-04-26 14:07:34 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n RStudio [cph]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-26 15:10:02 UTC",
"Built": "R 4.0.5; ; 2021-04-28 13:06:41 UTC; windows"
}
},
"codetools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "codetools",
"Version": "0.2-18",
"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]>",
"URL": "https://gitlab.com/luke-tierney/codetools",
"License": "GPL",
"NeedsCompilation": "no",
"Packaged": "2020-11-02 14:45:50 UTC; luke",
"Repository": "CRAN",
"Date/Publication": "2020-11-04 17:12:32 UTC",
"Built": "R 4.1.0; ; 2021-05-18 08:50:51 UTC; windows"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "colorspace",
"Version": "2.0-1",
"Date": "2021-05-03",
"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 graphical user interface) 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).\n\t Details can be found on the project web page at <https://colorspace.R-Forge.R-project.org/>\n\t and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\n\t Software, <doi:10.18637/jss.v096.i01>).",
"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": "https://colorspace.R-Forge.R-project.org/, https://hclwizard.org/",
"BugReports": "https://colorspace.R-Forge.R-project.org/contact.html",
"LazyData": "yes",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-05-03 19:35:01 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": "2021-05-04 05:30:12 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 04:42:00 UTC; windows"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "commonmark",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Version": "1.7",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"URL": "http://github.com/jeroen/commonmark (devel)\nhttps://github.github.com/gfm/ (spec)",
"BugReports": "http://github.com/jeroen/commonmark/issues",
"Description": "The CommonMark specification defines a rationalized version of markdown\n syntax. This package uses the 'cmark' reference implementation for converting\n markdown text into various formats including html, latex and groff man. In\n addition it exposes the markdown parse tree in xml format. Also includes opt-in\n support for GFM extensions including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"Suggests": "curl, testthat, xml2",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2018-12-01 11:57:14 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre],\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2018-12-01 12:30:03 UTC",
"Built": "R 4.0.3; x86_64-w64-mingw32; 2020-11-14 18:30:38 UTC; windows"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.2.7",
"Authors@R": "\n c(person(given = \"Jim\",\n family = \"Hester\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(given = \"Romain\",\n family = \"François\",\n role = \"ctb\"),\n person(given = \"Benjamin\",\n family = \"Kietzman\",\n role = \"ctb\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Provides a header only, C++11 interface to R's C\n interface. Compared to other approaches 'cpp11' strives to be safe\n against long jumps from the C API as well as C++ exceptions, conform\n to normal R function semantics and supports interaction with 'ALTREP'\n vectors.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, testthat,\ntibble, utils, vctrs, withr",
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"SystemRequirements": "C++11",
"NeedsCompilation": "no",
"Packaged": "2021-03-29 13:18:07 UTC; jhester",
"Author": "Jim Hester [aut, cre] (<https://orcid.org/0000-0002-2739-7082>),\n Romain François [ctb],\n Benjamin Kietzman [ctb],\n RStudio [cph, fnd]",
"Maintainer": "Jim Hester <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-03-29 14:20:04 UTC",
"Built": "R 4.0.5; ; 2021-04-24 16:28:23 UTC; windows"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.4.1",
"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": "'aaa-rstudio-detect.R' 'aab-num-ansi-colors.R' 'ansi-256.r'\n'combine.r' 'string.r' 'utils.r' 'crayon-package.r'\n'disposable.r' 'has_ansi.r' 'has_color.r' 'link.R' 'styles.r'\n'machinery.r' 'parts.r' 'print.r' 'rematch2.R' 'style-var.r'\n'show.r' 'string_operations.r'",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-02-08 18:57: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": "2021-02-08 19:50:02 UTC",
"Built": "R 4.0.5; ; 2021-04-24 16:26:42 UTC; windows"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "4.3.1",
"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://github.com/jeroen/curl (devel) https://curl.se/libcurl/\n(upstream)",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,\nmagrittr, httpuv (>= 1.4.4), webutils",
"VignetteBuilder": "knitr",
"Depends": "R (>= 3.0.0)",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2021-04-30 10:35:45 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": "2021-04-30 13:50:07 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 04:41:46 UTC; windows"
}
},
"data.table": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "data.table",
"Version": "1.14.0",
"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(\"Nello\",\"Blaser\", role=\"ctb\"),\n person(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\n person(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\n person(\"Cheng\",\"Lee\", 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\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\"),\n person(\"Toby\",\"Hocking\", role=\"ctb\"),\n person(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\n person(\"Tyson\",\"Barrett\", role=\"ctb\"),\n person(\"Jim\",\"Hester\", role=\"ctb\"),\n person(\"Anthony\",\"Damico\", role=\"ctb\"),\n person(\"Sebastian\",\"Freundt\", role=\"ctb\"),\n person(\"David\",\"Simons\", role=\"ctb\"),\n person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\n person(\"Cole\",\"Miller\", role=\"ctb\"),\n person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\n person(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\n person(\"Kevin\",\"Ushey\", role=\"ctb\"),\n person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\n person(\"Ben\",\"Schwen\", role=\"ctb\"))",
"Depends": "R (>= 3.1.0)",
"Imports": "methods",
"Suggests": "bit64 (>= 4.0.0), bit (>= 4.0.4), curl, R.utils, xts,\nnanotime, zoo (>= 1.8-1), yaml, knitr, rmarkdown",
"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": "https://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": "2021-02-20 22:16:11 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 Nello Blaser [ctb],\n Dmitry Selivanov [ctb],\n Andrey Riabushenko [ctb],\n Cheng Lee [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],\n Davis Vaughan [ctb],\n Toby Hocking [ctb],\n Leonardo Silvestri [ctb],\n Tyson Barrett [ctb],\n Jim Hester [ctb],\n Anthony Damico [ctb],\n Sebastian Freundt [ctb],\n David Simons [ctb],\n Elliott Sales de Andrade [ctb],\n Cole Miller [ctb],\n Jens Peder Meldgaard [ctb],\n Vaclav Tlapak [ctb],\n Kevin Ushey [ctb],\n Dirk Eddelbuettel [ctb],\n Ben Schwen [ctb]",
"Maintainer": "Matt Dowle <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-02-21 06:00:02 UTC",
"Built": "R 4.0.5; x86_64-w64-mingw32; 2021-04-24 16:27:17 UTC; windows"
}
},
"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, Bill Denney, Dirk Schumacher,\n and Winston Chang.",
"Version": "0.6.27",
"Date": "2020-10-20",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash\n digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n 'xxhash', 'murmurhash', 'spookyhash' and 'blake3' 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.3.0)",
"Imports": "utils",
"License": "GPL (>= 2)",
"Suggests": "tinytest, knitr, rmarkdown, minidown",
"VignetteBuilder": "knitr",
"NeedsCompilation": "yes",
"Packaged": "2020-10-20 13:03:32 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-10-24 22:10:06 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 04:41:53 UTC; windows"
}
},
"doParallel": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "doParallel",
"Type": "Package",
"Title": "Foreach Parallel Adaptor for the 'parallel' Package",
"Version": "1.0.16",
"Authors@R": "c(person(\"Michelle\", \"Wallig\", role=\"cre\", email=\"[email protected]\"),\n person(\"Microsoft\", \"Corporation\", role=c(\"aut\", \"cph\")),\n person(\"Steve\", \"Weston\", role=\"aut\"),\n person(\"Dan\", \"Tenenbaum\", role=\"ctb\"))",
"Description": "Provides a parallel backend for the %dopar% function using\n the parallel package.",
"Depends": "R (>= 2.14.0), foreach(>= 1.2.0), iterators(>= 1.0.0),\nparallel, utils",
"Suggests": "caret, mlbench, rpart, RUnit",
"Enhances": "compiler",
"License": "GPL-2",
"NeedsCompilation": "no",
"Packaged": "2020-10-14 19:48:08 UTC; hongo",
"Author": "Michelle Wallig [cre],\n Microsoft Corporation [aut, cph],\n Steve Weston [aut],\n Dan Tenenbaum [ctb]",
"Maintainer": "Michelle Wallig <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-10-16 06:20:10 UTC",
"Built": "R 4.1.0; ; 2021-05-19 06:38:32 UTC; windows"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "1.0.7",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(given = \"Romain\",\n family = \"François\",\n role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(given = \"Lionel\",\n family = \"Henry\",\n role = \"aut\"),\n person(given = \"Kirill\",\n family = \"Müller\",\n role = \"aut\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "A fast, consistent tool for working with data frame\n like objects, both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": "R (>= 3.3.0)",
"Imports": "ellipsis, generics, glue (>= 1.3.2), lifecycle (>= 1.0.0),\nmagrittr (>= 1.5), methods, R6, rlang (>= 0.4.10), tibble (>=\n2.1.3), tidyselect (>= 1.1.0), utils, vctrs (>= 0.3.5), pillar\n(>= 1.5.1)",
"Suggests": "bench, broom, callr, covr, DBI, dbplyr (>= 1.4.3), knitr,\nLahman, lobstr, microbenchmark, nycflights13, purrr, rmarkdown,\nRMySQL, RPostgreSQL, RSQLite, testthat (>= 3.0.2), tidyr, withr",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Packaged": "2021-06-16 07:10:11 UTC; lionel",
"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": "2021-06-18 23:20:01 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-06-20 11:56:31 UTC; windows"
}
},
"e1071": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "e1071",
"Version": "1.7-7",
"Title": "Misc Functions of the Department of Statistics, Probability\nTheory Group (Formerly: E1071), TU Wien",
"Imports": "graphics, grDevices, class, stats, methods, utils, proxy",
"Suggests": "cluster, mlbench, nnet, randomForest, rpart, SparseM, xtable,\nMatrix, MASS, slam",
"Authors@R": "c(person(given = \"David\", family = \"Meyer\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(given = \"Evgenia\", family = \"Dimitriadou\", role = c(\"aut\",\"cph\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\"),\n person(given = \"Andreas\", family = \"Weingessel\", role = \"aut\"),\n person(given = \"Friedrich\", family = \"Leisch\", role = \"aut\"),\n person(given = \"Chih-Chung\", family = \"Chang\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"),\n person(given = \"Chih-Chen\", family = \"Lin\", role = c(\"ctb\",\"cph\"), comment = \"libsvm C++-code\"))",
"Description": "Functions for latent class analysis, short time Fourier\n\t transform, fuzzy clustering, support vector machines,\n\t shortest path computation, bagged clustering, naive Bayes\n\t classifier, generalized k-nearest neighbour ...",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"NeedsCompilation": "yes",
"Packaged": "2021-05-22 07:42:14 UTC; meyer",
"Author": "David Meyer [aut, cre],\n Evgenia Dimitriadou [aut, cph],\n Kurt Hornik [aut],\n Andreas Weingessel [aut],\n Friedrich Leisch [aut],\n Chih-Chung Chang [ctb, cph] (libsvm C++-code),\n Chih-Chen Lin [ctb, cph] (libsvm C++-code)",
"Maintainer": "David Meyer <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-23 09:30:02 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-06-12 08:33:27 UTC; windows"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "ellipsis",
"Version": "0.3.2",
"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": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.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": "2021-04-29 12:06:44 UTC; lionel",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-29 12:40:02 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 06:36:18 UTC; windows"
}
},
"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.5.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)",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"Imports": "grDevices, utils",
"RoxygenNote": "7.1.1",
"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": "2021-05-25 00:22:35 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": "2021-05-25 04:40:10 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-06-12 08:30:15 UTC; windows"
}
},
"farver": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "farver",
"Type": "Package",
"Title": "High Performance Colour Space Manipulation",
"Version": "2.1.0",
"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": "7.1.1",
"URL": "https://farver.data-imaginist.com,\nhttps://github.com/thomasp85/farver",
"BugReports": "https://github.com/thomasp85/farver/issues",
"Suggests": "testthat (>= 2.1.0), covr",
"NeedsCompilation": "yes",
"Packaged": "2021-02-28 19:00:15 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": "2021-02-28 19:30:02 UTC",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-19 04:41:58 UTC; windows"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "fastmap",
"Title": "Fast Data Structures",
"Version": "1.1.0",
"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 data structures, including a key-value\n store, stack, and queue. Environments are commonly used as key-value stores\n in R, but every time a new key is used, it is added to R's global symbol\n table, causing a small amount of memory leakage. This can be problematic in\n cases where many different keys are used. Fastmap avoids this memory leak\n issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.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": "2021-01-25 20:28:54 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": "2021-01-25 21:00:02 UTC",
"Built": "R 4.0.5; x86_64-w64-mingw32; 2021-04-24 16:26:52 UTC; windows"
}
},
"fontawesome": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "fontawesome",
"Version": "0.2.2",
"Title": "Easily Work with 'Font Awesome' Icons",
"Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown'\n documents and 'Shiny' apps. These icons can be inserted into HTML content\n through inline 'SVG' tags or 'i' tags. There is also a utility function for\n exporting 'Font Awesome' icons as 'PNG' images for those situations where\n raster graphics are needed.",
"Authors@R": "c(\n person(\"Richard\", \"Iannone\", , \"[email protected]\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Christophe\", \"Dervieux\", , \"[email protected]\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Winston\", \"Chang\", , \"[email protected]\", role = \"ctb\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/fontawesome",
"BugReports": "https://github.com/rstudio/fontawesome/issues",
"Encoding": "UTF-8",
"ByteCompile": "true",
"RoxygenNote": "7.1.1",
"Depends": "R (>= 3.3.0)",
"Imports": "rlang (>= 0.4.10), htmltools (>= 0.5.1.1)",
"Suggests": "covr, knitr, testthat, rsvg",
"NeedsCompilation": "no",
"Packaged": "2021-07-02 18:33:03 UTC; rich",
"Author": "Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>),\n Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>),\n Winston Chang [ctb],\n Dave Gandy [ctb, cph] (Font-Awesome font),\n RStudio [cph, fnd]",
"Maintainer": "Richard Iannone <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-07-02 18:50:02 UTC",
"Built": "R 4.1.1; ; 2021-10-27 18:02:32 UTC; windows"
}
},
"foreach": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "foreach",
"Type": "Package",
"Title": "Provides Foreach Looping Construct",
"Version": "1.5.1",
"Authors@R": "c(person(\"Michelle\", \"Wallig\", role=\"cre\", email=\"[email protected]\"),\n person(\"Microsoft\", role=c(\"aut\", \"cph\")),\n person(\"Steve\", \"Weston\", role=\"aut\"))",
"Description": "Support for the foreach looping construct. Foreach is an\n idiom that allows for iterating over elements in a collection,\n without the use of an explicit loop counter. This package in\n particular is intended to be used for its return value, rather\n than for its side effects. In that sense, it is similar to the\n standard lapply function, but doesn't require the evaluation\n of a function. Using foreach without side effects also\n facilitates executing the loop in parallel.",
"License": "Apache License (== 2.0)",
"URL": "https://github.com/RevolutionAnalytics/foreach",
"BugReports": "https://github.com/RevolutionAnalytics/foreach/issues",
"Depends": "R (>= 2.5.0)",
"Imports": "codetools, utils, iterators",
"Suggests": "randomForest, doMC, doParallel, testthat, knitr, rmarkdown",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.0.2.9000",
"Collate": "'callCombine.R' 'foreach.R' 'do.R' 'foreach-ext.R'\n'foreach-pkg.R' 'getDoPar.R' 'getDoSeq.R' 'getsyms.R' 'iter.R'\n'nextElem.R' 'onLoad.R' 'setDoPar.R' 'setDoSeq.R' 'times.R'\n'utils.R'",
"NeedsCompilation": "no",
"Packaged": "2020-10-12 16:22:02 UTC; hongo",
"Author": "Michelle Wallig [cre],\n Microsoft [aut, cph],\n Steve Weston [aut]",
"Maintainer": "Michelle Wallig <[email protected]>",
"Repository": "CRAN",