-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
4115 lines (4115 loc) · 341 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.2.3",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "BH",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Version": "1.78.0-0",
"Date": "2021-12-14",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"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 packages. 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.78.0-0, the following Boost libraries are\n included: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast'\n 'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config'\n 'container' 'date_time' 'detail' 'dynamic_bitset' 'exception'\n 'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap'\n 'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams'\n 'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision'\n 'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process'\n 'propery_tree' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort'\n 'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'utility' 'uuid'.",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/bh,\nhttps://dirk.eddelbuettel.com/code/bh.html",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Packaged": "2021-12-14 21:51:21 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2021-12-15 07:50:08 UTC",
"Built": "R 4.1.0; ; 2022-11-05 08:08:34 UTC; unix"
}
},
"DBI": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "DBI",
"Title": "R Database Interface",
"Version": "1.2.3",
"Date": "2024-06-02",
"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üller\", , \"kirill@cynkra.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"R Consortium\", role = \"fnd\")\n )",
"Description": "A database interface definition for communication between R\n and relational database management systems. All classes in this\n 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": "arrow, blob, covr, DBItest, dbplyr, downlit, dplyr, glue,\nhms, knitr, magrittr, nanoarrow (>= 0.3.0.1), RMariaDB,\nrmarkdown, rprojroot, RSQLite (>= 1.1-2), testthat (>= 3.0.0),\nvctrs, xml2",
"VignetteBuilder": "knitr",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"Config/Needs/check": "r-dbi/DBItest",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Config/Needs/website": "r-dbi/DBItest, r-dbi/dbitemplate, adbi,\nAzureKusto, bigrquery, DatabaseConnector, dittodb, duckdb,\nimplyr, lazysf, odbc, pool, RAthena, IMSMWU/RClickhouse, RH2,\nRJDBC, RMariaDB, RMySQL, RPostgres, RPostgreSQL, RPresto,\nRSQLite, sergeant, sparklyr, withr",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2024-06-02 20:26:05 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 <kirill@cynkra.com>",
"Repository": "CRAN",
"Date/Publication": "2024-06-02 21:50:02 UTC",
"Built": "R 4.2.3; ; 2024-06-14 16:49:00 UTC; unix"
}
},
"DT": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.21",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", email = \"xie@yihui.name\", role = c(\"aut\", \"cre\")),\n person(\"Joe\", \"Cheng\", role = \"aut\"),\n person(\"Xianying\", \"Tan\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Maximilian\", \"Girlich\", role = \"ctb\"),\n person(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\n person(\"Johannes\", \"Rauh\", role = \"ctb\"),\n person(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\n person(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\n person(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\n person(\"Alex\", \"Pickering\", role = c(\"ctb\")),\n person(\"William\", \"Holmes\", role = c(\"ctb\")),\n person(\"RStudio, PBC\", role = \"cph\")\n )",
"Maintainer": "Yihui Xie <xie@yihui.name>",
"Description": "Data objects in R can be rendered as HTML tables using the\n JavaScript library 'DataTables' (typically via R Markdown or Shiny). The\n 'DataTables' library has been included in this R package. The package name\n 'DT' is an abbreviation of 'DataTables'.",
"URL": "https://github.com/rstudio/DT",
"BugReports": "https://github.com/rstudio/DT/issues",
"License": "GPL-3 | file LICENSE",
"Imports": "htmltools (>= 0.3.6), htmlwidgets (>= 1.3), jsonlite (>=\n0.9.16), magrittr, crosstalk, jquerylib, promises",
"Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.6), bslib, testit",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.1.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2022-02-26 03:47:41 UTC; yihui",
"Author": "Yihui Xie [aut, cre],\n Joe Cheng [aut],\n Xianying Tan [aut],\n JJ Allaire [ctb],\n Maximilian Girlich [ctb],\n Greg Freedman Ellis [ctb],\n Johannes Rauh [ctb],\n SpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\n Brian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\n Leon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\n Bartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\n Alex Pickering [ctb],\n William Holmes [ctb],\n RStudio, PBC [cph]",
"Repository": "CRAN",
"Date/Publication": "2022-02-26 11:10:02 UTC",
"Built": "R 4.1.0; ; 2022-09-02 16:33:15 UTC; unix"
}
},
"DescTools": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "DescTools",
"Type": "Package",
"Title": "Tools for Descriptive Statistics",
"Version": "0.99.44",
"Date": "2021-11-22",
"Authors@R": "c(\n person(\"Andri\", \"Signorell\", email = \"andri@signorell.net\", role = c(\"aut\", \"cre\")),\n person(\"Ken\" , \"Aho\", role = c(\"ctb\")),\n person(\"Andreas\" , \"Alfons\", role = c(\"ctb\")),\n person(\"Nanina\" , \"Anderegg\", role = c(\"ctb\")),\n person(\"Tomas\" , \"Aragon\", role = c(\"ctb\")),\n person(\"Chandima\" , \"Arachchige\", role = c(\"ctb\")),\n person(\"Antti\" , \"Arppe\", role = c(\"ctb\")),\n person(\"Adrian\" , \"Baddeley\", role = c(\"ctb\")),\n person(\"Kamil\" , \"Barton\", role = c(\"ctb\")),\n person(\"Ben\" , \"Bolker\", role = c(\"ctb\")),\n person(\"Hans W.\" , \"Borchers\", role = c(\"ctb\")),\n person(\"Frederico\" , \"Caeiro\", role = c(\"ctb\")),\n person(\"Stephane\" , \"Champely\", role = c(\"ctb\")),\n person(\"Daniel\" , \"Chessel\", role = c(\"ctb\")),\n person(\"Leanne\" , \"Chhay\", role = c(\"ctb\")),\n person(\"Nicholas\" , \"Cooper\", role = c(\"ctb\")),\n person(\"Clint\" , \"Cummins\", role = c(\"ctb\")),\n person(\"Michael\" , \"Dewey\", role = c(\"ctb\")),\n person(\"Harold C.\" , \"Doran\", role = c(\"ctb\")),\n person(\"Stephane\" , \"Dray\", role = c(\"ctb\")),\n person(\"Charles\" , \"Dupont\", role = c(\"ctb\")),\n person(\"Dirk\" , \"Eddelbuettel\", role = c(\"ctb\")),\n person(\"Claus\" , \"Ekstrom\", role = c(\"ctb\")),\n person(\"Martin\" , \"Elff\", role = c(\"ctb\")),\n person(\"Jeff\" , \"Enos\", role = c(\"ctb\")),\n person(\"Richard W.\" , \"Farebrother\", role = c(\"ctb\")),\n person(\"John\" , \"Fox\", role = c(\"ctb\")),\n person(\"Romain\" , \"Francois\", role = c(\"ctb\")),\n person(\"Michael\" , \"Friendly\", role = c(\"ctb\")),\n person(\"Tal\" , \"Galili\", role = c(\"ctb\")),\n person(\"Matthias\" , \"Gamer\", role = c(\"ctb\")),\n person(\"Joseph L.\" , \"Gastwirth\", role = c(\"ctb\")),\n person(\"Vilmantas\" , \"Gegzna\", role = c(\"ctb\")),\n person(\"Yulia R.\" , \"Gel\", role = c(\"ctb\")),\n person(\"Sereina\" , \"Graber\", role = c(\"ctb\")),\n person(\"Juergen\" , \"Gross\", role = c(\"ctb\")),\n person(\"Gabor\" , \"Grothendieck\", role = c(\"ctb\")),\n person(\"Frank E.\" , \"Harrell Jr\", role = c(\"ctb\")),\n person(\"Richard\" , \"Heiberger\", role = c(\"ctb\")),\n person(\"Michael\" , \"Hoehle\", role = c(\"ctb\")),\n person(\"Christian W.\" , \"Hoffmann\", role = c(\"ctb\")),\n person(\"Soeren\" , \"Hojsgaard\", role = c(\"ctb\")),\n person(\"Torsten\" , \"Hothorn\", role = c(\"ctb\")),\n person(\"Markus\" , \"Huerzeler\", role = c(\"ctb\")),\n person(\"Wallace W.\" , \"Hui\", role = c(\"ctb\")),\n person(\"Pete\" , \"Hurd\", role = c(\"ctb\")),\n person(\"Rob J.\" , \"Hyndman\", role = c(\"ctb\")),\n person(\"Christopher\" , \"Jackson\", role = c(\"ctb\")),\n person(\"Matthias\" , \"Kohl\", role = c(\"ctb\")),\n person(\"Mikko\" , \"Korpela\", role = c(\"ctb\")),\n person(\"Max\" , \"Kuhn\", role = c(\"ctb\")),\n person(\"Detlew\" , \"Labes\", role = c(\"ctb\")),\n person(\"Friederich\" , \"Leisch\", role = c(\"ctb\")),\n person(\"Jim\" , \"Lemon\", role = c(\"ctb\")),\n person(\"Dong\" , \"Li\", role = c(\"ctb\")),\n person(\"Martin\" , \"Maechler\", role = c(\"ctb\")),\n person(\"Arni\" , \"Magnusson\", role = c(\"ctb\")),\n person(\"Ben\" , \"Mainwaring\", role = c(\"ctb\")),\n person(\"Daniel\" , \"Malter\", role = c(\"ctb\")),\n person(\"George\" , \"Marsaglia\", role = c(\"ctb\")),\n person(\"John\" , \"Marsaglia\", role = c(\"ctb\")),\n person(\"Alina\" , \"Matei\", role = c(\"ctb\")),\n person(\"David\" , \"Meyer\", role = c(\"ctb\")),\n person(\"Weiwen\" , \"Miao\", role = c(\"ctb\")),\n person(\"Giovanni\" , \"Millo\", role = c(\"ctb\")),\n person(\"Yongyi\" , \"Min\", role = c(\"ctb\")),\n person(\"David\" , \"Mitchell\", role = c(\"ctb\")),\n person(\"Franziska\" , \"Mueller\", role = c(\"ctb\")),\n person(\"Markus\" , \"Naepflin\", role = c(\"ctb\")),\n person(\"Daniel\" , \"Navarro\", role = c(\"ctb\")),\n person(\"Henric\" , \"Nilsson\", role = c(\"ctb\")),\n person(\"Klaus\" , \"Nordhausen\", role = c(\"ctb\")),\n person(\"Derek\" , \"Ogle\", role = c(\"ctb\")),\n person(\"Hong\" , \"Ooi\", role = c(\"ctb\")),\n person(\"Nick\" , \"Parsons\", role = c(\"ctb\")),\n person(\"Sandrine\" , \"Pavoine\", role = c(\"ctb\")),\n person(\"Tony\" , \"Plate\", role = c(\"ctb\")),\n person(\"Luke\" , \"Prendergast\", role = c(\"ctb\")),\n person(\"Roland\" , \"Rapold\", role = c(\"ctb\")),\n person(\"William\" , \"Revelle\", role = c(\"ctb\")),\n person(\"Tyler\" , \"Rinker\", role = c(\"ctb\")),\n person(\"Brian D.\" , \"Ripley\", role = c(\"ctb\")),\n person(\"Caroline\" , \"Rodriguez\", role = c(\"ctb\")),\n person(\"Nathan\" , \"Russell\", role = c(\"ctb\")),\n person(\"Nick\" , \"Sabbe\", role = c(\"ctb\")),\n person(\"Ralph\" , \"Scherer\", role = c(\"ctb\")),\n person(\"Venkatraman E.\", \"Seshan\", role = c(\"ctb\")),\n person(\"Michael\" , \"Smithson\", role = c(\"ctb\")),\n person(\"Greg\" , \"Snow\", role = c(\"ctb\")),\n person(\"Karline\" , \"Soetaert\", role = c(\"ctb\")),\n person(\"Werner A.\" , \"Stahel\", role = c(\"ctb\")),\n person(\"Alec\" , \"Stephenson\", role = c(\"ctb\")),\n person(\"Mark\" , \"Stevenson\", role = c(\"ctb\")),\n person(\"Ralf\" , \"Stubner\", role = c(\"ctb\")),\n person(\"Matthias\" , \"Templ\", role = c(\"ctb\")),\n person(\"Duncan\" , \"Temple Lang\", role = c(\"ctb\")),\n person(\"Terry\" , \"Therneau\", role = c(\"ctb\")),\n person(\"Yves\" , \"Tille\", role = c(\"ctb\")),\n person(\"Luis\" , \"Torgo\", role = c(\"ctb\")),\n person(\"Adrian\" , \"Trapletti\", role = c(\"ctb\")),\n person(\"Joshua\" , \"Ulrich\", role = c(\"ctb\")),\n person(\"Kevin\" , \"Ushey\", role = c(\"ctb\")),\n person(\"Jeremy\" , \"VanDerWal\", role = c(\"ctb\")),\n person(\"Bill\" , \"Venables\", role = c(\"ctb\")),\n person(\"John\" , \"Verzani\", role = c(\"ctb\")),\n person(\"Pablo J.\" , \"Villacorta Iglesias\", role = c(\"ctb\")),\n person(\"Gregory R.\" , \"Warnes\", role = c(\"ctb\")),\n person(\"Stefan\" , \"Wellek\", role = c(\"ctb\")),\n person(\"Hadley\" , \"Wickham\", role = c(\"ctb\")),\n person(\"Rand R.\" , \"Wilcox\", role = c(\"ctb\")),\n person(\"Peter\" , \"Wolf\", role = c(\"ctb\")),\n person(\"Daniel\" , \"Wollschlaeger\", role = c(\"ctb\")),\n person(\"Joseph\" , \"Wood\", role = c(\"ctb\")),\n person(\"Ying\" , \"Wu\", role = c(\"ctb\")),\n person(\"Thomas\" , \"Yee\", role = c(\"ctb\")),\n person(\"Achim\" , \"Zeileis\", role = c(\"ctb\"))\n )",
"Description": "A collection of miscellaneous basic statistic functions and convenience wrappers for efficiently describing data. The author's intention was to create a toolbox, which facilitates the (notoriously time consuming) first descriptive tasks in data analysis, consisting of calculating descriptive statistics, drawing graphical summaries and reporting the results. The package contains furthermore functions to produce documents using MS Word (or PowerPoint) and functions to import data from Excel. Many of the included functions can be found scattered in other packages and other sources written partly by Titans of R. The reason for collecting them here, was primarily to have them consolidated in ONE instead of dozens of packages (which themselves might depend on other packages which are not needed at all), and to provide a common and consistent interface as far as function and arguments naming, NA handling, recycling rules etc. are concerned. Google style guides were used as naming rules (in absence of convincing alternatives). The 'BigCamelCase' style was consequently applied to functions borrowed from contributed R packages as well.",
"Suggests": "RDCOMClient, tcltk, VGAM, R.rsp",
"Depends": "base, stats, R (>= 3.6.0)",
"Imports": "graphics, grDevices, methods, MASS, utils, boot, mvtnorm,\nexpm, Rcpp (>= 0.12.10), rstudioapi, Exact, gld, data.table",
"LinkingTo": "Rcpp, BH",
"License": "GPL (>= 2)",
"LazyLoad": "yes",
"LazyData": "yes",
"Additional_repositories": "http://www.omegahat.net/R",
"URL": "https://andrisignorell.github.io/DescTools/,\nhttps://github.com/AndriSignorell/DescTools/",
"BugReports": "https://github.com/AndriSignorell/DescTools/issues",
"SystemRequirements": "C++11",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"VignetteBuilder": "R.rsp",
"Packaged": "2021-11-22 11:54:55 UTC; andri",
"Author": "Andri Signorell [aut, cre],\n Ken Aho [ctb],\n Andreas Alfons [ctb],\n Nanina Anderegg [ctb],\n Tomas Aragon [ctb],\n Chandima Arachchige [ctb],\n Antti Arppe [ctb],\n Adrian Baddeley [ctb],\n Kamil Barton [ctb],\n Ben Bolker [ctb],\n Hans W. Borchers [ctb],\n Frederico Caeiro [ctb],\n Stephane Champely [ctb],\n Daniel Chessel [ctb],\n Leanne Chhay [ctb],\n Nicholas Cooper [ctb],\n Clint Cummins [ctb],\n Michael Dewey [ctb],\n Harold C. Doran [ctb],\n Stephane Dray [ctb],\n Charles Dupont [ctb],\n Dirk Eddelbuettel [ctb],\n Claus Ekstrom [ctb],\n Martin Elff [ctb],\n Jeff Enos [ctb],\n Richard W. Farebrother [ctb],\n John Fox [ctb],\n Romain Francois [ctb],\n Michael Friendly [ctb],\n Tal Galili [ctb],\n Matthias Gamer [ctb],\n Joseph L. Gastwirth [ctb],\n Vilmantas Gegzna [ctb],\n Yulia R. Gel [ctb],\n Sereina Graber [ctb],\n Juergen Gross [ctb],\n Gabor Grothendieck [ctb],\n Frank E. Harrell Jr [ctb],\n Richard Heiberger [ctb],\n Michael Hoehle [ctb],\n Christian W. Hoffmann [ctb],\n Soeren Hojsgaard [ctb],\n Torsten Hothorn [ctb],\n Markus Huerzeler [ctb],\n Wallace W. Hui [ctb],\n Pete Hurd [ctb],\n Rob J. Hyndman [ctb],\n Christopher Jackson [ctb],\n Matthias Kohl [ctb],\n Mikko Korpela [ctb],\n Max Kuhn [ctb],\n Detlew Labes [ctb],\n Friederich Leisch [ctb],\n Jim Lemon [ctb],\n Dong Li [ctb],\n Martin Maechler [ctb],\n Arni Magnusson [ctb],\n Ben Mainwaring [ctb],\n Daniel Malter [ctb],\n George Marsaglia [ctb],\n John Marsaglia [ctb],\n Alina Matei [ctb],\n David Meyer [ctb],\n Weiwen Miao [ctb],\n Giovanni Millo [ctb],\n Yongyi Min [ctb],\n David Mitchell [ctb],\n Franziska Mueller [ctb],\n Markus Naepflin [ctb],\n Daniel Navarro [ctb],\n Henric Nilsson [ctb],\n Klaus Nordhausen [ctb],\n Derek Ogle [ctb],\n Hong Ooi [ctb],\n Nick Parsons [ctb],\n Sandrine Pavoine [ctb],\n Tony Plate [ctb],\n Luke Prendergast [ctb],\n Roland Rapold [ctb],\n William Revelle [ctb],\n Tyler Rinker [ctb],\n Brian D. Ripley [ctb],\n Caroline Rodriguez [ctb],\n Nathan Russell [ctb],\n Nick Sabbe [ctb],\n Ralph Scherer [ctb],\n Venkatraman E. Seshan [ctb],\n Michael Smithson [ctb],\n Greg Snow [ctb],\n Karline Soetaert [ctb],\n Werner A. Stahel [ctb],\n Alec Stephenson [ctb],\n Mark Stevenson [ctb],\n Ralf Stubner [ctb],\n Matthias Templ [ctb],\n Duncan Temple Lang [ctb],\n Terry Therneau [ctb],\n Yves Tille [ctb],\n Luis Torgo [ctb],\n Adrian Trapletti [ctb],\n Joshua Ulrich [ctb],\n Kevin Ushey [ctb],\n Jeremy VanDerWal [ctb],\n Bill Venables [ctb],\n John Verzani [ctb],\n Pablo J. Villacorta Iglesias [ctb],\n Gregory R. Warnes [ctb],\n Stefan Wellek [ctb],\n Hadley Wickham [ctb],\n Rand R. Wilcox [ctb],\n Peter Wolf [ctb],\n Daniel Wollschlaeger [ctb],\n Joseph Wood [ctb],\n Ying Wu [ctb],\n Thomas Yee [ctb],\n Achim Zeileis [ctb]",
"Maintainer": "Andri Signorell <andri@signorell.net>",
"Repository": "RSPM",
"Date/Publication": "2021-11-23 06:20:02 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-11-05 08:18:14 UTC; unix"
}
},
"Exact": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "Exact",
"Type": "Package",
"Title": "Unconditional Exact Test",
"Version": "3.1",
"Authors@R": "person(\"Peter\", \"Calhoun\", email=\"calhoun.peter@gmail.com\", role=c(\"aut\", \"cre\"))",
"Author": "Peter Calhoun [aut, cre]",
"Maintainer": "Peter Calhoun <calhoun.peter@gmail.com>",
"Description": "Performs unconditional exact tests and power calculations for 2x2 contingency tables.\n For comparing two independent proportions, performs Barnard's test (1945)\n <doi:10.1038/156177a0> using the original CSM test (Barnard, 1947 <doi:10.1093/biomet/34.1-2.123>),\n using Fisher's p-value referred to as Boschloo's test (1970) <doi:10.1111/j.1467-9574.1970.tb00104.x>,\n or using a Z-statistic (Suissa and Shuster, 1985, <doi:10.2307/2981892>).\n For comparing two binary proportions, performs unconditional exact test using McNemar's\n Z-statistic (Berger and Sidik, 2003, <doi:10.1191/0962280203sm312ra>),\n using McNemar's conditional p-value, using McNemar's Z-statistic with continuity correction,\n or using CSM test. Calculates confidence intervals for the difference in proportion.\n This package interacts with pre-computed data available through the ExactData R package,\n which is available in a 'drat' repository.\n Install the ExactData R package from GitHub at <https://pcalhoun1.github.io/drat/>.\n The ExactData R package is approximately 25 MB.",
"License": "GPL-2",
"Depends": "R (>= 3.5.0)",
"Imports": "graphics, stats, utils, rootSolve",
"Suggests": "ExactData",
"Additional_repositories": "https://pcalhoun1.github.io/drat",
"NeedsCompilation": "no",
"Packaged": "2021-11-26 20:11:13 UTC; pcalh",
"Repository": "RSPM",
"Date/Publication": "2021-11-26 21:40:02 UTC",
"Encoding": "UTF-8",
"Built": "R 4.1.0; ; 2022-11-05 08:14:12 UTC; unix"
}
},
"Formula": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "Formula",
"Version": "1.2-4",
"Date": "2020-10-16",
"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 = \"Achim.Zeileis@R-project.org\",\n comment = c(ORCID = \"0000-0003-0918-3766\")),\n person(given = \"Yves\", family = \"Croissant\", role = \"aut\", email = \"Yves.Croissant@univ-reunion.fr\"))",
"Depends": "R (>= 2.0.0), stats",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "no",
"Packaged": "2020-10-16 12:39:27 UTC; zeileis",
"Author": "Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>),\n Yves Croissant [aut]",
"Maintainer": "Achim Zeileis <Achim.Zeileis@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2020-10-16 13:50:06 UTC",
"Built": "R 4.1.0; ; 2022-11-05 08:12:29 UTC; unix"
}
},
"Hmisc": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "Hmisc",
"Version": "4.6-0",
"Date": "2021-10-05",
"Title": "Harrell Miscellaneous",
"Authors@R": "\n c(person(given = \"Frank E\",\n family = \"Harrell Jr\",\n role = c(\"aut\", \"cre\"),\n email = \"fh@fharrell.com\",\n comment = c(ORCID = \"0000-0002-8271-5493\")),\n\t\t\tperson(given = \"Charles\",\n\t\t\t family = \"Dupont\",\n\t\t\t\t\t\t role = \"ctb\",\n\t\t\t\t\t\t email = \"charles.dupont@vumc.org\",\n\t\t\t\t\t\t comment = \"contributed several functions and maintains latex functions\"))",
"Maintainer": "Frank E Harrell Jr <fh@fharrell.com>",
"Depends": "lattice, survival (>= 3.1-6), Formula, ggplot2 (>= 2.2)",
"Imports": "methods, latticeExtra, cluster, rpart, nnet, foreign, gtable,\ngrid, gridExtra, data.table, htmlTable (>= 1.11.0), viridis,\nhtmltools, base64enc",
"Suggests": "acepack, chron, rms, mice, tables, knitr, plotly (>= 4.5.6),\nrlang, plyr, VGAM",
"Description": "Contains many functions useful for data\n\tanalysis, high-level graphics, utility operations, functions for\n\tcomputing sample size and power, simulation, 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": "https://hbiostat.org/R/Hmisc/",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-10-06 18:12:56 UTC; harrelfe",
"Author": "Frank E Harrell Jr [aut, cre] (<https://orcid.org/0000-0002-8271-5493>),\n Charles Dupont [ctb] (contributed several functions and maintains latex\n functions)",
"Repository": "CRAN",
"Date/Publication": "2021-10-07 09:00:02 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-11-05 08:16:45 UTC; unix"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-57",
"Date": "2022-04-05",
"Revision": "$Rev: 3564 $",
"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 = \"ripley@stats.ox.ac.uk\"),\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": "<MASS@stats.ox.ac.uk>",
"NeedsCompilation": "yes",
"Packaged": "2022-04-19 04:13:16 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 <ripley@stats.ox.ac.uk>",
"Repository": "RSPM",
"Date/Publication": "2022-04-22 11:45:27 UTC",
"Encoding": "UTF-8",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-11-07 14:29:03 UTC; unix"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "Matrix",
"Version": "1.4-1",
"Date": "2022-03-21",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Contact": "Matrix-authors@R-project.org",
"Maintainer": "Martin Maechler <mmaechler+Matrix@gmail.com>",
"Authors@R": "c(person(\"Douglas\",\"Bates\", role=\"aut\")\n , person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"), email=\"mmaechler+Matrix@gmail.com\",\n comment = c(ORCID = \"0000-0002-8685-9910\"))\n , person(\"Mikael\", \"Jagan\", role=\"aut\",\n comment = \"new 'packedMatrix' class plus subset/diag/.. methods in C\")\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": "https://Matrix.R-forge.R-project.org/,\nhttps://Matrix.R-forge.R-project.org/doxygen/",
"BugReports": "https://R-forge.R-project.org/tracker/?atid=294?group_id=61",
"Author": "Douglas Bates [aut],\n Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\n Mikael Jagan [aut] (new 'packedMatrix' class plus subset/diag/..\n methods in C),\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": "RSPM",
"Repository/R-Forge/Project": "matrix",
"Repository/R-Forge/Revision": "3446",
"Repository/R-Forge/DateTimeStamp": "2022-03-21 17:52:00",
"Date/Publication": "2022-03-23 16:30:08 UTC",
"NeedsCompilation": "yes",
"Packaged": "2022-03-21 18:13:03 UTC; rforge",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-11-07 14:37:00 UTC; unix"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.5.1",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"winston@stdout.org\")",
"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": "testthat, pryr",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-08-06 20:18:46 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <winston@stdout.org>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.1.0; ; 2022-09-02 16:39:30 UTC; unix"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"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 = \"erich.neuwirth@univie.ac.at\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <erich.neuwirth@univie.ac.at>",
"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.1.0; ; 2022-09-07 20:17:12 UTC; unix"
}
},
"RPostgres": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "RPostgres",
"Title": "Rcpp Interface to PostgreSQL",
"Version": "1.4.3",
"Date": "2021-12-20",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"Jeroen\",\n family = \"Ooms\",\n role = \"aut\"),\n person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"krlmlr+r@mailbox.org\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"RStudio\",\n role = \"cph\"),\n person(given = \"R Consortium\",\n role = \"fnd\"),\n person(given = \"Tomoaki\",\n family = \"Nishiyama\",\n role = \"ctb\",\n comment = \"Code for encoding vectors into strings derived from RPostgreSQL\"))",
"Description": "Fully DBI-compliant Rcpp-backed interface to\n PostgreSQL <https://www.postgresql.org/>, an open-source relational\n database.",
"License": "GPL-3",
"URL": "https://rpostgres.r-dbi.org, https://github.com/r-dbi/RPostgres",
"BugReports": "https://github.com/r-dbi/RPostgres/issues",
"Depends": "R (>= 3.1.0)",
"Imports": "bit64, blob (>= 1.2.0), DBI (>= 1.1.0), hms (>= 1.0.0),\nlubridate, methods, Rcpp (>= 1.0.7), withr",
"Suggests": "callr, covr, DBItest (>= 1.7.1), knitr, rmarkdown, testthat",
"LinkingTo": "plogr (>= 0.2.0), Rcpp",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"LazyLoad": "true",
"RoxygenNote": "7.1.2",
"SystemRequirements": "libpq >= 9.0: libpq-dev (deb) or postgresql-devel\n(rpm)",
"Collate": "'PqDriver.R' 'PqConnection.R' 'PqResult.R' 'RPostgres-pkg.R'\n'RcppExports.R' 'Redshift.R' 'dbAppendTable_PqConnection.R'\n'dbBegin_PqConnection.R' 'dbBind_PqResult.R'\n'dbClearResult_PqResult.R' 'dbColumnInfo_PqResult.R'\n'dbCommit_PqConnection.R' 'dbConnect_PqDriver.R'\n'dbConnect_RedshiftDriver.R' 'dbDataType_PqConnection.R'\n'dbDataType_PqDriver.R' 'dbDisconnect_PqConnection.R'\n'dbExistsTable_PqConnection_Id.R'\n'dbExistsTable_PqConnection_character.R' 'dbFetch_PqResult.R'\n'dbGetInfo_PqConnection.R' 'dbGetInfo_PqDriver.R'\n'dbGetRowCount_PqResult.R' 'dbGetRowsAffected_PqResult.R'\n'dbGetStatement_PqResult.R' 'dbHasCompleted_PqResult.R'\n'dbIsValid_PqConnection.R' 'dbIsValid_PqDriver.R'\n'dbIsValid_PqResult.R' 'dbListFields_PqConnection_Id.R'\n'dbListFields_PqConnection_character.R'\n'dbListObjects_PqConnection_ANY.R'\n'dbListTables_PqConnection.R'\n'dbQuoteIdentifier_PqConnection_Id.R'\n'dbQuoteIdentifier_PqConnection_SQL.R'\n'dbQuoteIdentifier_PqConnection_character.R'\n'dbQuoteLiteral_PqConnection.R'\n'dbQuoteString_PqConnection_SQL.R'\n'dbQuoteString_PqConnection_character.R'\n'dbReadTable_PqConnection_character.R'\n'dbRemoveTable_PqConnection_character.R'\n'dbRollback_PqConnection.R' 'dbSendQuery_PqConnection.R'\n'dbUnloadDriver_PqDriver.R'\n'dbUnquoteIdentifier_PqConnection_SQL.R'\n'dbWriteTable_PqConnection_character_data.frame.R' 'default.R'\n'export.R' 'names.R' 'quote.R' 'show_PqConnection.R'\n'sqlData_PqConnection.R' 'tables.R' 'transactions.R' 'utils.R'",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"NeedsCompilation": "yes",
"Packaged": "2021-12-20 04:54:09 UTC; kirill",
"Author": "Hadley Wickham [aut],\n Jeroen Ooms [aut],\n Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\n RStudio [cph],\n R Consortium [fnd],\n Tomoaki Nishiyama [ctb] (Code for encoding vectors into strings derived\n from RPostgreSQL)",
"Maintainer": "Kirill Müller <krlmlr+r@mailbox.org>",
"Repository": "CRAN",
"Date/Publication": "2021-12-20 05:30:02 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2023-05-01 15:38:27 UTC; unix"
}
},
"RSQLite": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "RSQLite",
"Title": "SQLite Interface for R",
"Version": "2.2.10",
"Date": "2022-02-16",
"Authors@R": "\n c(person(given = \"Kirill\",\n family = \"M\\u00fcller\",\n role = c(\"aut\", \"cre\"),\n email = \"krlmlr+r@mailbox.org\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = c(\"David\", \"A.\"),\n family = \"James\",\n role = \"aut\"),\n person(given = \"Seth\",\n family = \"Falcon\",\n role = \"aut\"),\n person(given = \"D. Richard\",\n family = \"Hipp\",\n role = \"ctb\",\n comment = \"for the included SQLite sources\"),\n person(given = \"Dan\",\n family = \"Kennedy\",\n role = \"ctb\",\n comment = \"for the included SQLite sources\"),\n person(given = \"Joe\",\n family = \"Mistachkin\",\n role = \"ctb\",\n comment = \"for the included SQLite sources\"),\n person(family = \"SQLite Authors\",\n role = \"ctb\",\n comment = \"for the included SQLite sources\"),\n person(given = \"Liam\",\n family = \"Healy\",\n role = \"ctb\",\n comment = \"for the included SQLite sources\"),\n person(given = \"R Consortium\",\n role = \"fnd\"),\n person(family = \"RStudio\",\n role = \"cph\"))",
"Description": "Embeds the SQLite database engine in R and\n provides an interface compliant with the DBI package. The source for\n the SQLite engine and for various extensions in a recent version is\n included. System libraries will never be consulted because\n this package relies on static linking for the plugins it includes;\n this also ensures a consistent experience across all installations.",
"License": "LGPL (>= 2.1)",
"URL": "https://rsqlite.r-dbi.org, https://github.com/r-dbi/RSQLite",
"BugReports": "https://github.com/r-dbi/RSQLite/issues",
"Depends": "R (>= 3.1.0)",
"Imports": "bit64, blob (>= 1.2.0), DBI (>= 1.1.0), memoise, methods,\npkgconfig, Rcpp (>= 1.0.7)",
"Suggests": "callr, DBItest (>= 1.7.0), gert, gh, knitr, rmarkdown, hms,\nrvest, testthat, xml2",
"LinkingTo": "plogr (>= 0.2.0), Rcpp",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Collate": "'RcppExports.R' 'SQLiteConnection.R'\n'SQLKeywords_SQLiteConnection.R' 'SQLiteDriver.R' 'SQLite.R'\n'SQLiteResult.R' 'coerce.R' 'compatRowNames.R' 'copy.R'\n'datasetsDb.R' 'dbAppendTable_SQLiteConnection.R'\n'dbBeginTransaction.R' 'dbBegin_SQLiteConnection.R'\n'dbBind_SQLiteResult.R' 'dbClearResult_SQLiteResult.R'\n'dbColumnInfo_SQLiteResult.R' 'dbCommit_SQLiteConnection.R'\n'dbConnect_SQLiteConnection.R' 'dbConnect_SQLiteDriver.R'\n'dbDataType_SQLiteConnection.R' 'dbDataType_SQLiteDriver.R'\n'dbDisconnect_SQLiteConnection.R'\n'dbExistsTable_SQLiteConnection_character.R'\n'dbFetch_SQLiteResult.R' 'dbGetException_SQLiteConnection.R'\n'dbGetInfo_SQLiteConnection.R' 'dbGetInfo_SQLiteDriver.R'\n'dbGetPreparedQuery.R'\n'dbGetPreparedQuery_SQLiteConnection_character_data.frame.R'\n'dbGetRowCount_SQLiteResult.R'\n'dbGetRowsAffected_SQLiteResult.R'\n'dbGetStatement_SQLiteResult.R' 'dbHasCompleted_SQLiteResult.R'\n'dbIsValid_SQLiteConnection.R' 'dbIsValid_SQLiteDriver.R'\n'dbIsValid_SQLiteResult.R' 'dbListResults_SQLiteConnection.R'\n'dbListTables_SQLiteConnection.R'\n'dbQuoteIdentifier_SQLiteConnection_SQL.R'\n'dbQuoteIdentifier_SQLiteConnection_character.R'\n'dbReadTable_SQLiteConnection_character.R'\n'dbRemoveTable_SQLiteConnection_character.R'\n'dbRollback_SQLiteConnection.R' 'dbSendPreparedQuery.R'\n'dbSendPreparedQuery_SQLiteConnection_character_data.frame.R'\n'dbSendQuery_SQLiteConnection_character.R'\n'dbUnloadDriver_SQLiteDriver.R'\n'dbUnquoteIdentifier_SQLiteConnection_SQL.R'\n'dbWriteTable_SQLiteConnection_character_character.R'\n'dbWriteTable_SQLiteConnection_character_data.frame.R'\n'db_bind.R' 'deprecated.R' 'export.R' 'fetch_SQLiteResult.R'\n'initExtension.R' 'initRegExp.R'\n'isSQLKeyword_SQLiteConnection_character.R'\n'make.db.names_SQLiteConnection_character.R' 'names.R'\n'pkgconfig.R' 'show_SQLiteConnection.R'\n'sqlData_SQLiteConnection.R' 'table.R' 'transactions.R'\n'utils.R' 'zzz.R'",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"NeedsCompilation": "yes",
"Packaged": "2022-02-16 18:06:54 UTC; kirill",
"Author": "Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\n Hadley Wickham [aut],\n David A. James [aut],\n Seth Falcon [aut],\n D. Richard Hipp [ctb] (for the included SQLite sources),\n Dan Kennedy [ctb] (for the included SQLite sources),\n Joe Mistachkin [ctb] (for the included SQLite sources),\n SQLite Authors [ctb] (for the included SQLite sources),\n Liam Healy [ctb] (for the included SQLite sources),\n R Consortium [fnd],\n RStudio [cph]",
"Maintainer": "Kirill Müller <krlmlr+r@mailbox.org>",
"Repository": "CRAN",
"Date/Publication": "2022-02-17 00:50:17 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-09-02 16:35:28 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.8",
"Date": "2022-01-11",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"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": "rcpp-devel@lists.r-forge.r-project.org",
"RoxygenNote": "6.1.1",
"NeedsCompilation": "yes",
"Packaged": "2022-01-11 15:50:42 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2022-01-13 21:22:42 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-09-02 16:34:36 UTC; unix"
}
},
"RcppTOML": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "RcppTOML",
"Type": "Package",
"Title": "'Rcpp' Bindings to Parser for Tom's Obvious Markup Language",
"Version": "0.1.7",
"Date": "2020-12-01",
"Author": "Dirk Eddelbuettel",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "The configuration format defined by 'TOML' (which expands to\n \"Tom's Obvious Markup Language\") specifies an excellent format\n (described at <https://toml.io/en/>) suitable for both human editing\n as well as the common uses of a machine-readable format. This package\n uses 'Rcpp' to connect the 'cpptoml' parser written by Chase Geigle\n (in C++11) to R.",
"SystemRequirements": "A C++11 compiler; g++ (>= 4.9.*) or newer works.",
"BugReports": "https://github.com/eddelbuettel/rcpptoml/issues",
"URL": "http://dirk.eddelbuettel.com/code/rcpp.toml.html",
"Imports": "Rcpp (>= 0.11.5)",
"Depends": "R (>= 3.3.0)",
"LinkingTo": "Rcpp",
"Suggests": "tinytest",
"License": "GPL (>= 2)",
"NeedsCompilation": "yes",
"Packaged": "2020-12-01 14:05:37 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-12-02 23:00:08 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-11-05 08:12:54 UTC; unix"
}
},
"anytime": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "anytime",
"Type": "Package",
"Title": "Anything to 'POSIXct' or 'Date' Converter",
"Version": "0.3.9",
"Date": "2020-08-26",
"Author": "Dirk Eddelbuettel",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Description": "Convert input in any one of character, integer, numeric, factor,\n or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\n predefined formats, and relying on Boost facilities for date and time parsing.",
"URL": "http://dirk.eddelbuettel.com/code/anytime.html",
"BugReports": "https://github.com/eddelbuettel/anytime/issues",
"License": "GPL (>= 2)",
"Encoding": "UTF-8",
"Depends": "R (>= 3.2.0)",
"Imports": "Rcpp (>= 0.12.9)",
"LinkingTo": "Rcpp (>= 0.12.9), BH",
"Suggests": "tinytest (>= 1.0.0), gettz",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2020-08-26 17:46:45.898451 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-08-27 11:40:21 UTC",
"Built": "R 4.2.3; x86_64-pc-linux-gnu; 2024-08-20 14:08:16 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"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 = \"jeroen@berkeley.edu\", 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 <jeroen@berkeley.edu>",
"Repository": "CRAN",
"Date/Publication": "2019-01-13 12:50:03 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-09-02 16:47:57 UTC; unix"
}
},
"assertthat": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "assertthat",
"Title": "Easy Pre and Post Assertions",
"Version": "0.2.1",
"Authors@R": "\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", 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 <hadley@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2019-03-21 14:53:46 UTC",
"Built": "R 4.1.0; ; 2022-11-05 08:12:51 UTC; unix"
}
},
"backports": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "backports",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Version": "1.4.1",
"Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"R Core Team\", role = \"aut\"))",
"Maintainer": "Michel Lang <michellang@gmail.com>",
"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)",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Packaged": "2021-12-13 10:49:30 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\n R Core Team [aut]",
"Repository": "CRAN",
"Date/Publication": "2021-12-13 11:30:02 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-10-27 19:03:34 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"Maintainer": "Simon Urbanek <Simon.Urbanek@r-project.org>",
"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.1.0; x86_64-pc-linux-gnu; 2022-09-02 16:30:30 UTC; unix"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "bit",
"Type": "Package",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Version": "4.0.4",
"Date": "2020-08-03",
"Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]",
"Maintainer": "Jens Oehlschlägel <Jens.Oehlschlaegel@truecluster.com>",
"Depends": "R (>= 2.9.2)",
"Suggests": "testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)",
"Description": "Provided are classes for boolean and skewed boolean vectors,\n fast boolean methods, fast unique and non-unique integer sorting,\n fast set operations on sorted and unsorted sets of integers, and\n foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/truecluster/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.1.0.9000",
"NeedsCompilation": "yes",
"Packaged": "2020-08-03 12:14:34 UTC; jo",
"Repository": "CRAN",
"Date/Publication": "2020-08-04 04:20:08 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-09-02 16:33:29 UTC; unix"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "bit64",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "4.0.5",
"Date": "2020-08-29",
"Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]",
"Maintainer": "Jens Oehlschlägel <Jens.Oehlschlaegel@truecluster.com>",
"Depends": "R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats",
"Description": "\n Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. \n These are useful for handling database keys and exact counting in +-2^63.\n WARNING: do not use them as replacement for 32bit integers, integer64 are not\n supported for subscripting by R-core and they have different semantics when \n combined with double, e.g. integer64 + double => integer64. \n Class integer64 can be used in vectors, matrices, arrays and data.frames. \n Methods are available for coercion from and to logicals, integers, doubles, \n characters and factors as well as many elementwise and summary functions. \n Many fast algorithmic operations such as 'match' and 'order' support inter-\n active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/truecluster/bit64",
"Encoding": "UTF-8",
"Repository": "CRAN",
"Repository/R-Forge/Project": "ff",
"Repository/R-Forge/Revision": "177",
"Repository/R-Forge/DateTimeStamp": "2018-08-17 17:45:18",
"Date/Publication": "2020-08-30 07:20:02 UTC",
"NeedsCompilation": "yes",
"Packaged": "2020-08-29 10:56:45 UTC; jo",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-09-02 16:33:39 UTC; unix"
}
},
"blob": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "blob",
"Title": "A Simple S3 Class for Representing Vectors of Binary Data\n('BLOBS')",
"Version": "1.2.2",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"Kirill\",\n family = \"Müller\",\n role = \"cre\",\n email = \"krlmlr+r@mailbox.org\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "R's raw vector is useful for storing a single\n binary object. What if you want to put a vector of them in a data\n frame? The 'blob' package provides the blob object, a list of raw\n vectors, suitable for use as a column in data frame.",
"License": "MIT + file LICENSE",
"URL": "https://blob.tidyverse.org, https://github.com/tidyverse/blob",
"BugReports": "https://github.com/tidyverse/blob/issues",
"Imports": "methods, rlang, vctrs (>= 0.2.1)",
"Suggests": "covr, crayon, pillar (>= 1.2.1), testthat",
"Encoding": "UTF-8",
"RoxygenNote": "7.0.2",
"NeedsCompilation": "no",
"Packaged": "2021-07-23 02:39:55 UTC; kirill",
"Author": "Hadley Wickham [aut],\n Kirill Müller [cre],\n RStudio [cph]",
"Maintainer": "Kirill Müller <krlmlr+r@mailbox.org>",
"Repository": "CRAN",
"Date/Publication": "2021-07-23 05:20:08 UTC",
"Built": "R 4.1.0; ; 2022-09-02 16:34:23 UTC; unix"
}
},
"boot": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "boot",
"Priority": "recommended",
"Version": "1.3-28.1",
"Date": "2022-11-21",
"Authors@R": "c(person(\"Angelo\", \"Canty\", role = \"aut\",\n\t email = \"cantya@mcmaster.ca\"),\n person(\"Brian\", \"Ripley\", role = c(\"aut\", \"trl\", \"cre\"),\n email = \"ripley@stats.ox.ac.uk\",\n\t\t comment = \"author of parallel support\"))",
"Maintainer": "Brian Ripley <ripley@stats.ox.ac.uk>",
"Note": "Maintainers are not available to give advice on using a package\nthey did not author.",
"Description": "Functions and datasets for bootstrapping from the\n book \"Bootstrap Methods and Their Application\" by A. C. Davison and \n D. V. Hinkley (1997, CUP), originally written by Angelo Canty for S.",
"Title": "Bootstrap Functions (Originally by Angelo Canty for S)",
"Depends": "R (>= 3.0.0), graphics, stats",
"Suggests": "MASS, survival",
"LazyData": "yes",
"ByteCompile": "yes",
"License": "Unlimited",
"NeedsCompilation": "no",
"Packaged": "2022-11-21 22:19:52 UTC; ripley",
"Author": "Angelo Canty [aut],\n Brian Ripley [aut, trl, cre] (author of parallel support)",
"Repository": "CRAN",
"Date/Publication": "2022-11-22 07:05:25 UTC",
"Built": "R 4.2.3; ; 2023-10-03 23:18:53 UTC; unix"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"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 = \"carson@rstudio.com\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@rstudio.com\"),\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 <carson@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2021-10-06 15:10:05 UTC",
"Built": "R 4.1.0; ; 2022-09-02 16:43:23 UTC; unix"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "cachem",
"Version": "1.0.6",
"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\", , \"winston@rstudio.com\", 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-08-19 21:07:46 UTC; barret",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Winston Chang <winston@rstudio.com>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 21:30:02 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-09-02 16:43:44 UTC; unix"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Jennifer\", \"Bryan\", , \"jenny@stat.ubc.ca\", c(\"cre\", \"aut\")),\n person(\"Hadley\", \"Wickham\", , \"hadley@rstudio.com\", \"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 <jenny@stat.ubc.ca>",
"Repository": "CRAN",
"Date/Publication": "2016-07-27 03:17:48",
"Built": "R 4.1.0; ; 2022-11-05 08:14:05 UTC; unix"
}
},
"checkmate": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"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": "2.0.0",
"Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"michellang@gmail.com\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"Bernd\", \"Bischl\", NULL, \"bernd_bischl@gmx.net\", 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, fastmatch, data.table (>= 1.9.8), devtools, ggplot2,\nknitr, magrittr, microbenchmark, rmarkdown, testthat (>=\n0.11.0), tinytest (>= 1.1.0), tibble",
"License": "BSD_3_clause + file LICENSE",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.0.2",
"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' 'checkCharacter.R' 'checkChoice.R'\n'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": "2020-02-05 12:51:29 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\n Bernd Bischl [ctb]",
"Maintainer": "Michel Lang <michellang@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2020-02-06 01:00:13 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-10-27 19:04:31 UTC; unix"
}
},
"cicerone": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "cicerone",
"Title": "Provide Tours of 'Shiny' Applications",
"Version": "1.0.4",
"Date": "2021-01-10",
"Authors@R": "\n c(\n person(given = \"John\",\n family = \"Coene\",\n role = c(\"aut\", \"cre\"),\n email = \"jcoenep@gmail.com\",\n comment = c(ORCID = \"0000-0002-6637-4107\")),\n person(given = \"Etienne\", \n family = \"Bacher\", \n role = \"ctb\", \n email = \"etienne.bacher@protonmail.com\")\n )",
"Description": "Provide step by step guided tours of 'Shiny' applications.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"LazyData": "true",
"Imports": "R6, shiny, assertthat",
"RoxygenNote": "7.1.1.9000",
"URL": "https://cicerone.john-coene.com/",
"BugReports": "https://github.com/JohnCoene/cicerone/issues",
"NeedsCompilation": "no",
"Packaged": "2021-01-10 22:10:19 UTC; jp",
"Author": "John Coene [aut, cre] (<https://orcid.org/0000-0002-6637-4107>),\n Etienne Bacher [ctb]",
"Maintainer": "John Coene <jcoenep@gmail.com>",
"Repository": "RSPM",
"Date/Publication": "2021-01-10 23:00:02 UTC",
"Built": "R 4.1.0; ; 2023-01-11 20:50:05 UTC; unix"
}
},
"class": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "class",
"Priority": "recommended",
"Version": "7.3-21",
"Date": "2023-01-23",
"Depends": "R (>= 3.0.0), stats, utils",
"Imports": "MASS",
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"ripley@stats.ox.ac.uk\"),\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": "2023-01-23 06:55:04 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\n William Venables [cph]",
"Maintainer": "Brian Ripley <ripley@stats.ox.ac.uk>",
"Repository": "CRAN",
"Date/Publication": "2023-01-23 07:10:12 UTC",
"Built": "R 4.2.3; x86_64-pc-linux-gnu; 2023-10-03 23:19:14 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.2",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Kirill\", \"Müller\", role = \"ctb\"),\n person(\"Salim\", \"Brüggemann\", , \"salim-b@pm.me\", role = \"ctb\",\n comment = c(ORCID = \"0000-0002-5329-5987\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\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\n contains a number of lower level 'CLI' elements: rules, boxes, trees,\n and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\n colors and text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli",
"BugReports": "https://github.com/r-lib/cli/issues",
"Depends": "R (>= 3.4)",
"Imports": "utils",
"Suggests": "callr, covr, crayon, digest, glue (>= 1.6.0), grDevices,\nhtmltools, htmlwidgets, knitr, methods, mockery, processx, ps\n(>= 1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,\nrstudioapi, testthat, tibble, whoami, withr",
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc,\nfansi, prettyunits, sessioninfo, tidyverse/tidytemplate,\nusethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-12-10 22:38:10 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n Salim Brüggemann [ctb] (<https://orcid.org/0000-0002-5329-5987>),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2023-12-11 07:40:13 UTC",
"Built": "R 4.2.3; x86_64-pc-linux-gnu; 2024-05-08 13:31:22 UTC; unix"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.8.0",
"Authors@R": "c(\n person(\"Matthew\", \"Lincoln\", , \"matthew.d.lincoln@gmail.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4387-3384\")),\n person(\"Louis\", \"Maddox\", role = \"ctb\"),\n person(\"Steve\", \"Simpson\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\")\n )",
"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,\nhttp://matthewlincoln.net/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",
"RoxygenNote": "7.1.2",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel\n(http://www.vergenet.net/~conrad/software/xsel/) for accessing\nthe X11 clipboard, or wl-clipboard\n(https://github.com/bugaevc/wl-clipboard) for systems using\nWayland.",
"NeedsCompilation": "no",
"Packaged": "2022-02-19 02:20:21 UTC; mlincoln",
"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 <matthew.d.lincoln@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2022-02-22 00:58:45 UTC",
"Built": "R 4.1.0; ; 2022-10-17 18:04:07 UTC; unix"
}
},
"cluster": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "cluster",
"Version": "2.1.4",
"Date": "2022-08-19",
"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 <maechler@stat.math.ethz.ch>",
"Authors@R": "c(person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"),\n\t email=\"maechler@stat.math.ethz.ch\", comment = c(ORCID = \"0000-0002-8685-9910\"))\n ,person(\"Peter\", \"Rousseeuw\", role=\"aut\", email=\"peter.rousseeuw@kuleuven.be\",\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= \"Mia.Hubert@uia.ua.ac.be\",\n comment = c(\"S original\", ORCID = \"0000-0001-6398-4850\"))\n ,person(\"Kurt\", \"Hornik\", role=c(\"trl\", \"ctb\"),\n email=\"Kurt.Hornik@R-project.org\",\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.5.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": "2022-08-19 13:31:31 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": "2022-08-22 10:10:02 UTC",
"Built": "R 4.2.3; x86_64-pc-linux-gnu; 2023-10-03 23:18:56 UTC; unix"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "colorspace",
"Version": "2.0-3",
"Date": "2022-02-19",
"Title": "A Toolbox for Manipulating and Assessing Colors and Palettes",
"Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"ihaka@stat.auckland.ac.nz\"),\n person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"paul@stat.auckland.ac.nz\",\n comment = c(ORCID = \"0000-0002-3224-8858\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"Kurt.Hornik@R-project.org\",\n\t\t comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"jfisher@usgs.gov\",\n comment = c(ORCID = \"0000-0001-9032-8912\")),\n person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"Reto.Stauffer@uibk.ac.at\",\n comment = c(ORCID = \"0000-0002-3798-5507\")),\n person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"wilke@austin.utexas.edu\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"claire.mcwhite@utmail.utexas.edu\",\n comment = c(ORCID = \"0000-0001-7346-3047\")),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"Achim.Zeileis@R-project.org\",\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.2",
"NeedsCompilation": "yes",
"Packaged": "2022-02-19 11:47:52 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 <Achim.Zeileis@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2022-02-21 09:50:02 UTC",
"Built": "R 4.1.0; x86_64-pc-linux-gnu; 2022-09-07 20:16:03 UTC; unix"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "commonmark",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Version": "1.9.1",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"jeroen@berkeley.edu\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"URL": "https://docs.ropensci.org/commonmark/\nhttps://r-lib.r-universe.dev/commonmark\nhttps://github.github.com/gfm/ (spec)",
"BugReports": "https://github.com/r-lib/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": "7.2.3",
"Language": "en-US",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2024-01-30 11:29:56 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <jeroen@berkeley.edu>",
"Repository": "CRAN",
"Date/Publication": "2024-01-30 12:40:02 UTC",
"Built": "R 4.2.3; x86_64-pc-linux-gnu; 2024-03-27 19:14:07 UTC; unix"
}
},
"cowplot": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "cowplot",
"Title": "Streamlined Plot Theme and Plot Annotations for 'ggplot2'",
"Version": "1.1.3",
"Authors@R": "\n person(\n given = \"Claus O.\",\n family = \"Wilke\",\n role = c(\"aut\", \"cre\"),\n email = \"wilke@austin.utexas.edu\",\n comment = c(ORCID = \"0000-0002-7470-9261\")\n )",
"Description": "\n Provides various features that help with creating publication-quality figures\n with 'ggplot2', such as a set of themes, functions to align plots and arrange\n them into complex compound figures, and functions that make it easy to annotate\n plots and or mix plots with images. The package was originally written for\n internal use in the Wilke lab, hence the name (Claus O. Wilke's plot package).\n It has also been used extensively in the book Fundamentals of Data\n Visualization.",
"URL": "https://wilkelab.org/cowplot/",
"BugReports": "https://github.com/wilkelab/cowplot/issues",
"Depends": "R (>= 3.5.0)",
"Imports": "ggplot2 (>= 3.4.0), grid, gtable, grDevices, methods, rlang,\nscales",
"License": "GPL-2",
"Suggests": "Cairo, covr, dplyr, forcats, gridGraphics (>= 0.4-0), knitr,\nlattice, magick, maps, PASWR, patchwork, rmarkdown, ragg,\ntestthat (>= 1.0.0), tidyr, vdiffr (>= 0.3.0), VennDiagram",
"VignetteBuilder": "knitr",
"Collate": "'add_sub.R' 'align_plots.R' 'as_grob.R' 'as_gtable.R'\n'axis_canvas.R' 'cowplot.R' 'draw.R' 'get_plot_component.R'\n'get_axes.R' 'get_titles.R' 'get_legend.R' 'get_panel.R'\n'gtable.R' 'key_glyph.R' 'plot_grid.R' 'save.R'\n'set_null_device.R' 'setup.R' 'stamp.R' 'themes.R'\n'utils_ggplot2.R'",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2024-01-22 21:32:03 UTC; clauswilke",
"Author": "Claus O. Wilke [aut, cre] (<https://orcid.org/0000-0002-7470-9261>)",
"Maintainer": "Claus O. Wilke <wilke@austin.utexas.edu>",
"Repository": "CRAN",
"Date/Publication": "2024-01-22 23:22:51 UTC",
"Built": "R 4.2.3; ; 2024-03-07 18:17:39 UTC; unix"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://nexus2.fda.gov/repository/r-proxy",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",