-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
3070 lines (3070 loc) · 261 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.4.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"DT": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.33",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = \"aut\"),\n person(\"Joe\", \"Cheng\", email = \"joe@posit.co\", role = c(\"aut\", \"cre\")),\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(\"Mikko\", \"Marttila\", role = c(\"ctb\")),\n person(\"Andres\", \"Quintero\", role = c(\"ctb\")),\n person(\"Stéphane\", \"Laurent\", role = c(\"ctb\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"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), httpuv, jsonlite\n(>= 0.9.16), magrittr, crosstalk, jquerylib, promises",
"Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.6), bslib, future,\ntestit, tibble",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.3.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2024-04-03 14:36:50 UTC; yihui",
"Author": "Yihui Xie [aut],\n Joe Cheng [aut, cre],\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 Mikko Marttila [ctb],\n Andres Quintero [ctb],\n Stéphane Laurent [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Joe Cheng <joe@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-04-04 05:03:17 UTC",
"Built": "R 4.4.0; ; 2024-04-06 10:57:00 UTC; unix"
}
},
"KernSmooth": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "KernSmooth",
"Priority": "recommended",
"Version": "2.23-24",
"Date": "2024-05-16",
"Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)",
"Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\",\n\t email = \"Matt.Wand@uts.edu.au\"),\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 = \"ripley@stats.ox.ac.uk\",\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": "2024-05-17 07:28:00 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 <ripley@stats.ox.ac.uk>",
"Repository": "CRAN",
"Date/Publication": "2024-05-17 09:28:22",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-06-15 17:27:55 UTC; unix"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-60.2",
"Date": "2024-01-12",
"Revision": "$Rev: 3641 $",
"Depends": "R (>= 4.4.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": "2024-01-12 08:51:36 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": "CRAN",
"Date/Publication": "2024-04-26 12:02:47 UTC",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-06-15 17:27:55 UTC; unix"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Matrix",
"Version": "1.7-0",
"VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h",
"Date": "2024-03-16",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Description": "A rich hierarchy of sparse and dense matrix classes,\n\tincluding general, symmetric, triangular, and diagonal matrices\n\twith numeric, logical, or pattern entries. Efficient methods for\n\toperating on such matrices, often wrapping the 'BLAS', 'LAPACK',\n\tand 'SuiteSparse' libraries.",
"License": "GPL (>= 2) | file LICENCE",
"URL": "https://Matrix.R-forge.R-project.org",
"BugReports": "https://R-forge.R-project.org/tracker/?atid=294&group_id=61",
"Contact": "Matrix-authors@R-project.org",
"Authors@R": "\n\tc(person(\"Douglas\", \"Bates\", role = \"aut\",\n\t comment = c(ORCID = \"0000-0001-8316-9503\")),\n\t person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"),\n\t email = \"mmaechler+Matrix@gmail.com\",\n\t comment = c(ORCID = \"0000-0002-8685-9910\")),\n\t person(\"Mikael\", \"Jagan\", role = \"aut\",\n\t comment = c(ORCID = \"0000-0002-3542-2938\")),\n\t person(\"Timothy A.\", \"Davis\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0001-7614-6899\",\n\t \"SuiteSparse libraries\",\n\t \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")),\n\t person(\"George\", \"Karypis\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0003-2753-1437\",\n\t \"METIS library\",\n\t \"Copyright: Regents of the University of Minnesota\")),\n\t person(\"Jason\", \"Riedy\", role = \"ctb\",\n\t comment = c(ORCID = \"0000-0002-4345-4200\",\n\t \"GNU Octave's condest() and onenormest()\",\n\t \"Copyright: Regents of the University of California\")),\n\t person(\"Jens\", \"Oehlschlägel\", role = \"ctb\",\n\t comment = \"initial nearPD()\"),\n\t person(\"R Core Team\", role = \"ctb\",\n\t comment = \"base R's matrix implementation\"))",
"Depends": "R (>= 4.4.0), methods",
"Imports": "grDevices, graphics, grid, lattice, stats, utils",
"Suggests": "MASS, datasets, sfsmisc, tools",
"Enhances": "SparseM, graph",
"LazyData": "no",
"LazyDataNote": "not possible, since we use data/*.R and our S4 classes",
"BuildResaveData": "no",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2024-03-19 17:15:14 UTC; maechler",
"Author": "Douglas Bates [aut] (<https://orcid.org/0000-0001-8316-9503>),\n Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\n Mikael Jagan [aut] (<https://orcid.org/0000-0002-3542-2938>),\n Timothy A. Davis [ctb] (<https://orcid.org/0000-0001-7614-6899>,\n SuiteSparse libraries, collaborators listed in\n dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"),\n pattern=\"License\", full.names=TRUE, recursive=TRUE)),\n George Karypis [ctb] (<https://orcid.org/0000-0003-2753-1437>, METIS\n library, Copyright: Regents of the University of Minnesota),\n Jason Riedy [ctb] (<https://orcid.org/0000-0002-4345-4200>, GNU\n Octave's condest() and onenormest(), Copyright: Regents of the\n University of California),\n Jens Oehlschlägel [ctb] (initial nearPD()),\n R Core Team [ctb] (base R's matrix implementation)",
"Maintainer": "Martin Maechler <mmaechler+Matrix@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2024-04-26 12:03:02 UTC",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-06-15 17:28:00 UTC; unix"
}
},
"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 = \"thunt@snapfinance.com\", 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 <thunt@snapfinance.com>",
"Repository": "CRAN",
"Date/Publication": "2020-03-17 07:45:31 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-04-05 15:21:34 UTC; unix",
"Archs": "ModelMetrics.so.dSYM"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"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.4.0; ; 2024-04-05 15:00:24 UTC; unix"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "RColorBrewer",
"Version": "1.1-3",
"Date": "2022-04-03",
"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": "2022-04-03 10:26:20 UTC; neuwirth",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2022-04-03 19:20:13 UTC",
"Built": "R 4.4.0; ; 2024-04-05 15:01:01 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.13",
"Date": "2024-07-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": "https://www.rcpp.org,\nhttps://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",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2024-07-11 13:00:10 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-07-17 15:50:06 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-07-17 18:16:22 UTC; unix",
"Archs": "Rcpp.so.dSYM"
}
},
"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 <ravi.varadhan@jhu.edu>",
"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.4.0; ; 2024-04-05 15:20:37 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <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.4.0; aarch64-apple-darwin20; 2024-04-05 15:01:24 UTC; unix",
"Archs": "base64enc.so.dSYM"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.8.0",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", , \"carson@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", , \"joe@posit.co\", role = \"aut\"),\n person(\"Garrick\", \"Aden-Buie\", , \"garrick@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(, \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(, \"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(, \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap accessibility plugin\")\n )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and\n 'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as\n well as their various 'Bootswatch' themes. An interactive widget is\n also provided for previewing themes in real time.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"Depends": "R (>= 2.10)",
"Imports": "base64enc, cachem, fastmap (>= 1.1.1), grDevices, htmltools\n(>= 0.5.8), jquerylib (>= 0.1.3), jsonlite, lifecycle, memoise\n(>= 2.0.1), mime, rlang, sass (>= 0.4.9)",
"Suggests": "bsicons, curl, fontawesome, future, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (> 1.8.1), testthat,\nthematic, withr",
"Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11,\ncpsievert/chiflights22, cpsievert/histoslider, dplyr, DT,\nggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets,\nlattice, leaflet, lubridate, modelr, plotly, reactable,\nreshape2, rprojroot, rsconnect, rstudio/shiny, scales, styler,\ntibble",
"Config/Needs/routine": "chromote, desc, renv",
"Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue,\nhtmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr,\nrprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile,\ntheme-*, rmd-*",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R'\n'bs-dependencies.R' 'bs-global.R' 'bs-remove.R'\n'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R'\n'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R'\n'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R'\n'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R'\n'layout.R' 'nav-items.R' 'nav-update.R' 'navs-legacy.R'\n'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R'\n'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R'\n'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R'\n'value-box.R' 'version-default.R' 'versions.R'",
"NeedsCompilation": "no",
"Packaged": "2024-07-29 18:49:12 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [aut],\n Garrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>),\n Posit Software, PBC [cph, fnd],\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@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-07-29 19:20:02 UTC",
"Built": "R 4.4.0; ; 2024-07-29 20:16:48 UTC; unix"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cachem",
"Version": "1.1.0",
"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@posit.co\", c(\"aut\", \"cre\")),\n person(family = \"Posit Software, PBC\", 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 (>= 1.2.0)",
"Suggests": "testthat",
"RoxygenNote": "7.2.3",
"Config/Needs/routine": "lobstr",
"Config/Needs/website": "pkgdown",
"NeedsCompilation": "yes",
"Packaged": "2024-05-15 15:54:22 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-05-16 09:50:11 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-05-16 11:29:46 UTC; unix",
"Archs": "cachem.so.dSYM"
}
},
"caret": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "caret",
"Title": "Classification and Regression Training",
"Version": "6.0-94",
"Authors@R": "\n c(person(given = \"Max\",\n family = \"Kuhn\",\n role = c(\"aut\", \"cre\"),\n email = \"mxkuhn@gmail.com\",\n comment = c(ORCID = \"0000-0003-2402-136X\")),\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.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-03-21 18:04:50 UTC; max",
"Author": "Max Kuhn [aut, cre] (<https://orcid.org/0000-0003-2402-136X>),\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 <mxkuhn@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2023-03-21 19:30:02 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-04-07 00:37:48 UTC; unix",
"Archs": "caret.so.dSYM"
}
},
"class": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "class",
"Priority": "recommended",
"Version": "7.3-22",
"Date": "2023-05-02",
"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-05-02 16:15:43 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-05-03 11:01:28 UTC",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-06-15 17:27:59 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.3",
"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": "2024-06-21 17:24:00 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": "2024-06-21 21:00:07 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-06-21 22:39:00 UTC; unix",
"Archs": "cli.so.dSYM"
}
},
"clock": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "clock",
"Title": "Date-Time Types and Tools",
"Version": "0.7.1",
"Authors@R": "c(\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Provides a comprehensive library for date-time manipulations\n using a new family of orthogonal date-time classes (durations, time\n points, zoned-times, and calendars) that partition responsibilities so\n that the complexities of time zones are only considered when they are\n really needed. Capabilities include: date-time parsing, formatting,\n arithmetic, extraction and updating of components, and rounding.",
"License": "MIT + file LICENSE",
"URL": "https://clock.r-lib.org, https://github.com/r-lib/clock",
"BugReports": "https://github.com/r-lib/clock/issues",
"Depends": "R (>= 3.6.0)",
"Imports": "cli (>= 3.6.1), lifecycle (>= 1.0.3), rlang (>= 1.1.0), tzdb\n(>= 0.4.0), vctrs (>= 0.6.1)",
"Suggests": "covr, knitr, magrittr, pillar, rmarkdown, slider (>= 0.3.0),\ntestthat (>= 3.0.0), withr",
"LinkingTo": "cpp11 (>= 0.4.3), tzdb (>= 0.4.0)",
"VignetteBuilder": "knitr",
"Config/build/compilation-database": "true",
"Config/Needs/website": "lubridate, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Packaged": "2024-07-18 16:18:44 UTC; davis",
"Author": "Davis Vaughan [aut, cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-07-18 19:30:02 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-07-18 21:18:34 UTC; unix",
"Archs": "clock.so.dSYM"
}
},
"codetools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "codetools",
"Version": "0.2-20",
"Priority": "recommended",
"Author": "Luke Tierney <luke-tierney@uiowa.edu>",
"Description": "Code analysis tools for R.",
"Title": "Code Analysis Tools for R",
"Depends": "R (>= 2.1)",
"Maintainer": "Luke Tierney <luke-tierney@uiowa.edu>",
"URL": "https://gitlab.com/luke-tierney/codetools",
"License": "GPL",
"NeedsCompilation": "no",
"Packaged": "2024-03-31 18:18:09 UTC; luke",
"Repository": "CRAN",
"Date/Publication": "2024-03-31 20:10:06 UTC",
"Built": "R 4.4.1; ; 2024-06-15 17:27:55 UTC; unix"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "colorspace",
"Version": "2.1-1",
"Date": "2024-07-26",
"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",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "yes",
"Packaged": "2024-07-26 15:40:41 UTC; zeileis",
"Author": "Ross Ihaka [aut],\n Paul Murrell [aut] (<https://orcid.org/0000-0002-3224-8858>),\n Kurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\n Jason C. Fisher [aut] (<https://orcid.org/0000-0001-9032-8912>),\n Reto Stauffer [aut] (<https://orcid.org/0000-0002-3798-5507>),\n Claus O. Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\n Claire D. McWhite [aut] (<https://orcid.org/0000-0001-7346-3047>),\n Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Achim Zeileis <Achim.Zeileis@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2024-07-26 17:10:02 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-07-26 20:13:47 UTC; unix",
"Archs": "colorspace.so.dSYM"
}
},
"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.9.2",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"jeroenooms@gmail.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"Description": "The CommonMark specification <https://github.github.com/gfm/> defines\n a rationalized version of markdown syntax. This package uses the 'cmark' \n reference implementation for converting markdown text into various formats\n including html, latex and groff man. In addition it exposes the markdown\n parse tree in xml format. Also includes opt-in support for GFM extensions\n including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"URL": "https://docs.ropensci.org/commonmark/\nhttps://ropensci.r-universe.dev/commonmark",
"BugReports": "https://github.com/r-lib/commonmark/issues",
"Suggests": "curl, testthat, xml2",
"RoxygenNote": "7.2.3",
"Language": "en-US",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2024-10-03 14:12:30 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2024-10-04 12:40:06 UTC",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-10-04 13:37:23 UTC; unix",
"Archs": "commonmark.so.dSYM"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.5.0",
"Authors@R": "\n c(\n person(\"Davis\", \"Vaughan\", email = \"davis@posit.co\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"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://cpp11.r-lib.org, https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"Depends": "R (>= 3.6.0)",
"Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat (>= 3.2.0), tibble, utils, vctrs, withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2024-08-26 21:19:28 UTC; davis",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>),\n Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Benjamin Kietzman [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <davis@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-08-27 04:30:17 UTC",
"Built": "R 4.4.1; ; 2024-08-27 05:43:37 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.3",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Brodie\", \"Gaslam\", , \"brodie.gaslam@yahoo.com\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "The crayon package is now superseded. Please use the 'cli'\n package for new projects. Colored terminal output on terminals that\n support 'ANSI' color and highlight codes. It also works in 'Emacs'\n 'ESS'. 'ANSI' color support is automatically detected. Colors and\n highlighting can be combined and nested. New styles can also be\n created easily. This package was inspired by the 'chalk' 'JavaScript'\n project.",
"License": "MIT + file LICENSE",
"URL": "https://r-lib.github.io/crayon/, https://github.com/r-lib/crayon",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R'\n'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.R'\n'ansi-palette.R' 'combine.R' 'string.R' 'utils.R'\n'crayon-package.R' 'disposable.R' 'enc-utils.R' 'has_ansi.R'\n'has_color.R' 'link.R' 'styles.R' 'machinery.R' 'parts.R'\n'print.R' 'style-var.R' 'show.R' 'string_operations.R'",
"NeedsCompilation": "no",
"Packaged": "2024-06-20 11:49:08 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2024-06-20 13:00:02 UTC",
"Built": "R 4.4.0; ; 2024-06-20 13:14:47 UTC; unix"
}
},
"crosstalk": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "crosstalk",
"Type": "Package",
"Title": "Inter-Widget Interactivity for HTML Widgets",
"Version": "1.2.1",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"joe@posit.co\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\n email = \"carson@posit.co\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\")\n )",
"Description": "Provides building blocks for allowing HTML widgets to communicate\n with each other, with Shiny or without (i.e. static .html files). Currently\n supports linked brushing and filtering.",
"License": "MIT + file LICENSE",
"Imports": "htmltools (>= 0.3.6), jsonlite, lazyeval, R6",
"Suggests": "shiny, ggplot2, testthat (>= 2.1.0), sass, bslib",
"URL": "https://rstudio.github.io/crosstalk/,\nhttps://github.com/rstudio/crosstalk",
"BugReports": "https://github.com/rstudio/crosstalk/issues",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2023-11-22 16:29:50 UTC; cpsievert",
"Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Posit Software, PBC [cph, fnd],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Kristopher Michael Kowal [ctb, cph] (es5-shim library),\n es5-shim contributors [ctb, cph] (es5-shim library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library)",
"Maintainer": "Carson Sievert <carson@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2023-11-23 08:50:07 UTC",
"Built": "R 4.4.0; ; 2024-04-05 22:34:09 UTC; unix"
}
},
"data.table": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "data.table",
"Version": "1.16.2",
"Title": "Extension of `data.frame`",
"Depends": "R (>= 3.3.0)",
"Imports": "methods",
"Suggests": "bit64 (>= 4.0.0), bit (>= 4.0.4), R.utils, xts, zoo (>=\n1.8-1), yaml, knitr, markdown",
"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",
"Encoding": "UTF-8",
"ByteCompile": "TRUE",
"Authors@R": "c(\n person(\"Tyson\",\"Barrett\", role=c(\"aut\",\"cre\"), email=\"t.barrett88@gmail.com\", comment = c(ORCID=\"0000-0002-2137-1391\")),\n person(\"Matt\",\"Dowle\", role=\"aut\", email=\"mattjdowle@gmail.com\"),\n person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"asrini@pm.me\"),\n person(\"Jan\",\"Gorecki\", role=\"aut\"),\n person(\"Michael\",\"Chirico\", role=\"aut\", comment = c(ORCID=\"0000-0003-0787-087X\")),\n person(\"Toby\",\"Hocking\", role=\"aut\", comment = c(ORCID=\"0000-0002-3146-0865\")),\n person(\"Benjamin\",\"Schwendinger\",role=\"aut\", comment = c(ORCID=\"0000-0003-3315-8114\")),\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(\"Leonardo\",\"Silvestri\", 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(\"Tony\",\"Fischetti\", role=\"ctb\"),\n person(\"Ofek\",\"Shilon\", role=\"ctb\"),\n person(\"Vadim\",\"Khotilovich\", role=\"ctb\"),\n person(\"Hadley\",\"Wickham\", role=\"ctb\"),\n person(\"Bennet\",\"Becker\", role=\"ctb\"),\n person(\"Kyle\",\"Haynes\", role=\"ctb\"),\n person(\"Boniface Christian\",\"Kamgang\", role=\"ctb\"),\n person(\"Olivier\",\"Delmarcell\", role=\"ctb\"),\n person(\"Josh\",\"O'Brien\", role=\"ctb\"),\n person(\"Dereck\",\"de Mezquita\", role=\"ctb\"),\n person(\"Michael\",\"Czekanski\", role=\"ctb\"),\n person(\"Dmitry\", \"Shemetov\", role=\"ctb\"),\n person(\"Nitish\", \"Jha\", role=\"ctb\"),\n person(\"Joshua\", \"Wu\", role=\"ctb\"),\n person(\"Iago\", \"Giné-Vázquez\", role=\"ctb\"),\n person(\"Anirban\", \"Chetia\", role=\"ctb\"),\n person(\"Doris\", \"Amoakohene\", role=\"ctb\"),\n person(\"Ivan\", \"Krylov\", role=\"ctb\")\n )",
"NeedsCompilation": "yes",
"Packaged": "2024-10-09 21:37:41 UTC; tysonbarrett",
"Author": "Tyson Barrett [aut, cre] (<https://orcid.org/0000-0002-2137-1391>),\n Matt Dowle [aut],\n Arun Srinivasan [aut],\n Jan Gorecki [aut],\n Michael Chirico [aut] (<https://orcid.org/0000-0003-0787-087X>),\n Toby Hocking [aut] (<https://orcid.org/0000-0002-3146-0865>),\n Benjamin Schwendinger [aut] (<https://orcid.org/0000-0003-3315-8114>),\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 Leonardo Silvestri [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 Tony Fischetti [ctb],\n Ofek Shilon [ctb],\n Vadim Khotilovich [ctb],\n Hadley Wickham [ctb],\n Bennet Becker [ctb],\n Kyle Haynes [ctb],\n Boniface Christian Kamgang [ctb],\n Olivier Delmarcell [ctb],\n Josh O'Brien [ctb],\n Dereck de Mezquita [ctb],\n Michael Czekanski [ctb],\n Dmitry Shemetov [ctb],\n Nitish Jha [ctb],\n Joshua Wu [ctb],\n Iago Giné-Vázquez [ctb],\n Anirban Chetia [ctb],\n Doris Amoakohene [ctb],\n Ivan Krylov [ctb]",
"Maintainer": "Tyson Barrett <t.barrett88@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2024-10-10 16:10:06 UTC",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-10-10 17:22:47 UTC; unix",
"Archs": "data_table.so.dSYM"
}
},
"diagram": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "diagram",
"Version": "1.6.5",
"Title": "Functions for Visualising Simple Graphs (Networks), Plotting\nFlow Diagrams",
"Author": "Karline Soetaert <karline.soetaert@nioz.nl>",
"Maintainer": "Karline Soetaert <karline.soetaert@nioz.nl>",
"Depends": "R (>= 2.01), shape",
"Imports": "stats, graphics",
"Description": "Visualises simple graphs (networks) based on a transition matrix, utilities to plot flow diagrams, \n visualising webs, electrical networks, etc.\n Support for the book \"A practical guide to ecological modelling -\n using R as a simulation platform\"\n by Karline Soetaert and Peter M.J. Herman (2009), Springer.\n and the book \"Solving Differential Equations in R\"\n by Karline Soetaert, Jeff Cash and Francesca Mazzia (2012), Springer.\n Includes demo(flowchart), demo(plotmat), demo(plotweb).",
"License": "GPL (>= 2)",
"LazyData": "yes",
"NeedsCompilation": "no",
"Packaged": "2020-09-29 06:59:04 UTC; karlines",
"Repository": "CRAN",
"Date/Publication": "2020-09-30 07:20:02 UTC",
"Built": "R 4.4.0; ; 2024-04-05 15:20:37 UTC; unix"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "digest",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Antoine\", \"Lucas\", role=\"ctb\"),\n person(\"Jarek\", \"Tuszynski\", role=\"ctb\"),\n person(\"Henrik\", \"Bengtsson\", role=\"ctb\", comment = c(ORCID = \"0000-0002-7579-5165\")),\n person(\"Simon\", \"Urbanek\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2297-1732\")),\n person(\"Mario\", \"Frasca\", role=\"ctb\"),\n person(\"Bryan\", \"Lewis\", role=\"ctb\"),\n person(\"Murray\", \"Stokely\", role=\"ctb\"),\n person(\"Hannes\", \"Muehleisen\", role=\"ctb\"),\n person(\"Duncan\", \"Murdoch\", role=\"ctb\"),\n person(\"Jim\", \"Hester\", role=\"ctb\"),\n person(\"Wush\", \"Wu\", role=\"ctb\", comment = c(ORCID = \"0000-0001-5180-0567\")),\n person(\"Qiang\", \"Kou\", role=\"ctb\", comment = c(ORCID = \"0000-0001-6786-5453\")),\n person(\"Thierry\", \"Onkelinx\", role=\"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")),\n person(\"Michel\", \"Lang\", role=\"ctb\", comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"Viliam\", \"Simko\", role=\"ctb\"),\n person(\"Kurt\", \"Hornik\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(\"Radford\", \"Neal\", role=\"ctb\", comment = c(ORCID = \"0000-0002-2473-3407\")),\n person(\"Kendon\", \"Bell\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9093-8312\")),\n person(\"Matthew\", \"de Queljoe\", role=\"ctb\"),\n person(\"Dmitry\", \"Selivanov\", role=\"ctb\"),\n person(\"Ion\", \"Suruceanu\", role=\"ctb\"),\n person(\"Bill\", \"Denney\", role=\"ctb\"),\n person(\"Dirk\", \"Schumacher\", role=\"ctb\"),\n person(\"András\", \"Svraka\", role=\"ctb\"),\n person(\"Sergey\", \"Fedorov\", role=\"ctb\"),\n person(\"Will\", \"Landau\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1878-3253\")),\n person(\"Floris\", \"Vanderhaeghe\", role=\"ctb\", comment = c(ORCID = \"0000-0002-6378-6229\")),\n person(\"Kevin\", \"Tappe\", role=\"ctb\"),\n person(\"Harris\", \"McGehee\", role=\"ctb\"),\n person(\"Tim\", \"Mastny\", role=\"ctb\"),\n person(\"Aaron\", \"Peikert\", role=\"ctb\", comment = c(ORCID = \"0000-0001-7813-818X\")),\n person(\"Mark\", \"van der Loo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-9807-4686\")),\n person(\"Chris\", \"Muir\", role=\"ctb\", comment = c(ORCID = \"0000-0003-2555-3878\")),\n person(\"Moritz\", \"Beller\", role=\"ctb\", comment = c(ORCID = \"0000-0003-4852-0526\")),\n person(\"Sebastian\", \"Campbell\", role=\"ctb\"),\n person(\"Winston\", \"Chang\", role=\"ctb\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Dean\", \"Attali\", role=\"ctb\", comment = c(ORCID = \"0000-0002-5645-3493\")),\n person(\"Michael\", \"Chirico\", role=\"ctb\", comment = c(ORCID = \"0000-0003-0787-087X\")),\n person(\"Kevin\", \"Ushey\", role=\"ctb\"))",
"Version": "0.6.37",
"Date": "2024-08-19",
"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', 'blake3', 'crc32c', 'xxh3_64', and 'xxh3_128'\n algorithms) permitting easy comparison of R language objects, as well as functions\n such as'hmac()' to create hash-based message authentication code. Please note that\n this package is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be used.",
"URL": "https://github.com/eddelbuettel/digest,\nhttps://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, simplermarkdown",
"VignetteBuilder": "simplermarkdown",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2024-08-19 12:16:05 UTC; edd",
"Author": "Dirk Eddelbuettel [aut, cre] (<https://orcid.org/0000-0001-6419-907X>),\n Antoine Lucas [ctb],\n Jarek Tuszynski [ctb],\n Henrik Bengtsson [ctb] (<https://orcid.org/0000-0002-7579-5165>),\n Simon Urbanek [ctb] (<https://orcid.org/0000-0003-2297-1732>),\n Mario Frasca [ctb],\n Bryan Lewis [ctb],\n Murray Stokely [ctb],\n Hannes Muehleisen [ctb],\n Duncan Murdoch [ctb],\n Jim Hester [ctb],\n Wush Wu [ctb] (<https://orcid.org/0000-0001-5180-0567>),\n Qiang Kou [ctb] (<https://orcid.org/0000-0001-6786-5453>),\n Thierry Onkelinx [ctb] (<https://orcid.org/0000-0001-8804-4216>),\n Michel Lang [ctb] (<https://orcid.org/0000-0001-9754-0393>),\n Viliam Simko [ctb],\n Kurt Hornik [ctb] (<https://orcid.org/0000-0003-4198-9911>),\n Radford Neal [ctb] (<https://orcid.org/0000-0002-2473-3407>),\n Kendon Bell [ctb] (<https://orcid.org/0000-0002-9093-8312>),\n Matthew de Queljoe [ctb],\n Dmitry Selivanov [ctb],\n Ion Suruceanu [ctb],\n Bill Denney [ctb],\n Dirk Schumacher [ctb],\n András Svraka [ctb],\n Sergey Fedorov [ctb],\n Will Landau [ctb] (<https://orcid.org/0000-0003-1878-3253>),\n Floris Vanderhaeghe [ctb] (<https://orcid.org/0000-0002-6378-6229>),\n Kevin Tappe [ctb],\n Harris McGehee [ctb],\n Tim Mastny [ctb],\n Aaron Peikert [ctb] (<https://orcid.org/0000-0001-7813-818X>),\n Mark van der Loo [ctb] (<https://orcid.org/0000-0002-9807-4686>),\n Chris Muir [ctb] (<https://orcid.org/0000-0003-2555-3878>),\n Moritz Beller [ctb] (<https://orcid.org/0000-0003-4852-0526>),\n Sebastian Campbell [ctb],\n Winston Chang [ctb] (<https://orcid.org/0000-0002-1576-2126>),\n Dean Attali [ctb] (<https://orcid.org/0000-0002-5645-3493>),\n Michael Chirico [ctb] (<https://orcid.org/0000-0003-0787-087X>),\n Kevin Ushey [ctb]",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "CRAN",
"Date/Publication": "2024-08-19 14:10:07 UTC",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-08-19 16:10:23 UTC; unix",
"Archs": "digest.so.dSYM"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "1.1.4",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Romain\", \"François\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Kirill\", \"Müller\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"Davis\", \"Vaughan\", , \"davis@posit.co\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A fast, consistent tool for working with data frame like\n 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.5.0)",
"Imports": "cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>=\n1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.9.0), R6,\nrlang (>= 1.1.0), tibble (>= 3.2.0), tidyselect (>= 1.2.0),\nutils, vctrs (>= 0.6.4)",
"Suggests": "bench, broom, callr, covr, DBI, dbplyr (>= 2.2.1), ggplot2,\nknitr, Lahman, lobstr, microbenchmark, nycflights13, purrr,\nrmarkdown, RMySQL, RPostgreSQL, RSQLite, stringi (>= 1.7.6),\ntestthat (>= 3.1.5), tidyr (>= 1.3.0), withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-11-16 21:48:56 UTC; hadleywickham",
"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 Davis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2023-11-17 16:50:02 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-04-06 10:52:28 UTC; unix",
"Archs": "dplyr.so.dSYM"
}
},
"e1071": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "e1071",
"Version": "1.7-16",
"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\"),\n email = \"David.Meyer@R-project.org\",\n\t\t comment = c(ORCID = \"0000-0002-5196-3048\")), \n person(given = \"Evgenia\", family = \"Dimitriadou\", role = c(\"aut\",\"cph\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\",\n\t email = \"Kurt.Hornik@R-project.org\",\n comment = c(ORCID = \"0000-0003-4198-9911\")),\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": "2024-09-16 08:28:45 UTC; meyer",
"Author": "David Meyer [aut, cre] (<https://orcid.org/0000-0002-5196-3048>),\n Evgenia Dimitriadou [aut, cph],\n Kurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\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 <David.Meyer@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2024-09-16 09:53:34 UTC",
"Built": "R 4.4.1; aarch64-apple-darwin20; 2024-09-16 12:37:29 UTC; unix",
"Archs": "e1071.so.dSYM"
}
},
"evaluate": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "evaluate",
"Title": "Parsing and Evaluation Tools that Provide More Details than the\nDefault",
"Version": "1.0.1",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Yihui\", \"Xie\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"Michael\", \"Lawrence\", role = \"ctb\"),\n person(\"Thomas\", \"Kluyver\", role = \"ctb\"),\n person(\"Jeroen\", \"Ooms\", role = \"ctb\"),\n person(\"Barret\", \"Schloerke\", role = \"ctb\"),\n person(\"Adam\", \"Ryczkowski\", role = \"ctb\"),\n person(\"Hiroaki\", \"Yutani\", role = \"ctb\"),\n person(\"Michel\", \"Lang\", role = \"ctb\"),\n person(\"Karolis\", \"Koncevičius\", role = \"ctb\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Parsing and evaluation tools that make it easy to recreate\n the command line behaviour of R.",
"License": "MIT + file LICENSE",
"URL": "https://evaluate.r-lib.org/, https://github.com/r-lib/evaluate",
"BugReports": "https://github.com/r-lib/evaluate/issues",
"Depends": "R (>= 3.6.0)",
"Suggests": "covr, ggplot2 (>= 3.3.6), lattice, methods, rlang, testthat\n(>= 3.0.0), withr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Packaged": "2024-10-10 12:56:22 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre],\n Yihui Xie [aut] (<https://orcid.org/0000-0003-0645-5666>),\n Michael Lawrence [ctb],\n Thomas Kluyver [ctb],\n Jeroen Ooms [ctb],\n Barret Schloerke [ctb],\n Adam Ryczkowski [ctb],\n Hiroaki Yutani [ctb],\n Michel Lang [ctb],\n Karolis Koncevičius [ctb],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-10-10 13:20:02 UTC",
"Built": "R 4.4.1; ; 2024-10-10 13:46:37 UTC; unix"
}
},
"fansi": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fansi",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.",
"Version": "1.0.6",
"Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"brodie.gaslam@yahoo.com\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"R-core@r-project.org\", role=\"cph\",\n comment=\"UTF8 byte length calcs from src/util.c\"\n ))",
"Depends": "R (>= 3.1.0)",
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"Imports": "grDevices, utils",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R'\n'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R'\n'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'",
"NeedsCompilation": "yes",
"Packaged": "2023-12-06 00:59:41 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 <brodie.gaslam@yahoo.com>",
"Repository": "CRAN",
"Date/Publication": "2023-12-08 03:30:02 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-04-05 07:33:35 UTC; unix",
"Archs": "fansi.so.dSYM"
}
},
"farver": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "farver",
"Title": "High Performance Colour Space Manipulation",
"Version": "2.1.2",
"Authors@R": "c(\n person(\"Thomas Lin\", \"Pedersen\", , \"thomas.pedersen@posit.co\", role = c(\"cre\", \"aut\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Berendea\", \"Nicolae\", role = \"aut\",\n comment = \"Author of the ColorSpace C++ library\"),\n person(\"Romain\", \"François\", , \"romain@purrple.cat\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "The encoding of colour can be handled in many different ways,\n using different colour spaces. As different colour spaces have\n different uses, efficient conversion between these representations are\n important. The 'farver' package provides a set of functions that gives\n access to very fast colour space conversion and comparisons\n implemented in C++, and offers speed improvements over the\n 'convertColor' function in the 'grDevices' package.",
"License": "MIT + file LICENSE",
"URL": "https://farver.data-imaginist.com,\nhttps://github.com/thomasp85/farver",
"BugReports": "https://github.com/thomasp85/farver/issues",
"Suggests": "covr, testthat (>= 3.0.0)",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "yes",
"Packaged": "2024-05-13 08:31:27 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>),\n Posit, PBC [cph, fnd]",
"Maintainer": "Thomas Lin Pedersen <thomas.pedersen@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-05-13 09:33:09 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-05-13 12:36:31 UTC; unix",
"Archs": "farver.so.dSYM"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fastmap",
"Title": "Fast Data Structures",
"Version": "1.2.0",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", email = \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(given = \"Posit Software, PBC\", 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",
"RoxygenNote": "7.2.3",
"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": "2024-05-14 17:54:13 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd],\n Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-05-15 09:00:07 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-05-15 09:33:12 UTC; unix",
"Archs": "fastmap.so.dSYM"
}
},
"fontawesome": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "fontawesome",
"Version": "0.5.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\", , \"rich@posit.co\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Christophe\", \"Dervieux\", , \"cderv@posit.co\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = \"ctb\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/fontawesome,\nhttps://rstudio.github.io/fontawesome/",
"BugReports": "https://github.com/rstudio/fontawesome/issues",
"Encoding": "UTF-8",
"ByteCompile": "true",
"RoxygenNote": "7.2.3",
"Depends": "R (>= 3.3.0)",
"Imports": "rlang (>= 1.0.6), htmltools (>= 0.5.1.1)",
"Suggests": "covr, dplyr (>= 1.0.8), knitr (>= 1.31), testthat (>= 3.0.0),\nrsvg",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Packaged": "2023-08-19 02:32:12 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 Posit Software, PBC [cph, fnd]",
"Maintainer": "Richard Iannone <rich@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2023-08-19 04:52:40 UTC",
"Built": "R 4.4.0; ; 2024-04-06 02:47:47 UTC; unix"
}
},
"foreach": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "foreach",
"Type": "Package",
"Title": "Provides Foreach Looping Construct",
"Version": "1.5.2",
"Authors@R": "c(person(\"Folashade\", \"Daniel\", role=\"cre\", email=\"fdaniel@microsoft.com\"),\n person(\"Hong\", \"Ooi\", role=\"ctb\"),\n person(\"Rich\", \"Calaway\", role=\"ctb\"),\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.1.1",
"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": "2022-01-11 04:21:12 UTC; fdaniel",
"Author": "Folashade Daniel [cre],\n Hong Ooi [ctb],\n Rich Calaway [ctb],\n Microsoft [aut, cph],\n Steve Weston [aut]",
"Maintainer": "Folashade Daniel <fdaniel@microsoft.com>",
"Repository": "CRAN",
"Date/Publication": "2022-02-02 09:20:02 UTC",
"Built": "R 4.4.0; ; 2024-04-05 22:32:39 UTC; unix"
}
},
"fs": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "fs",
"Title": "Cross-Platform File System Operations Based on 'libuv'",
"Version": "1.6.4",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"csardi.gabor@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"libuv project contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\",\n comment = \"libuv library\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A cross-platform interface to file system operations, built\n on top of the 'libuv' C library.",
"License": "MIT + file LICENSE",
"URL": "https://fs.r-lib.org, https://github.com/r-lib/fs",
"BugReports": "https://github.com/r-lib/fs/issues",
"Depends": "R (>= 3.6)",
"Imports": "methods",
"Suggests": "covr, crayon, knitr, pillar (>= 1.0.0), rmarkdown, spelling,\ntestthat (>= 3.0.0), tibble (>= 1.1.0), vctrs (>= 0.3.0), withr",
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Copyright": "file COPYRIGHTS",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"SystemRequirements": "GNU make",
"NeedsCompilation": "yes",
"Packaged": "2024-04-25 11:57:22 UTC; gaborcsardi",
"Author": "Jim Hester [aut],\n Hadley Wickham [aut],\n Gábor Csárdi [aut, cre],\n libuv project contributors [cph] (libuv library),\n Joyent, Inc. and other Node contributors [cph] (libuv library),\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <csardi.gabor@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2024-04-25 12:50:02 UTC",
"Built": "R 4.4.0; aarch64-apple-darwin20; 2024-04-25 13:48:18 UTC; unix",
"Archs": "fs.so.dSYM"
}
},
"future": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "future",
"Version": "1.34.0",
"Title": "Unified Parallel and Distributed Processing in R for Everyone",
"Imports": "digest, globals (>= 0.16.1), listenv (>= 0.8.0), parallel,\nparallelly (>= 1.38.0), utils",
"Suggests": "methods, RhpcBLASctl, R.rsp, markdown",
"VignetteBuilder": "R.rsp",
"Authors@R": "c(person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")))",
"Description": "The purpose of this package is to provide a lightweight and\n unified Future API for sequential and parallel processing of R\n expression via futures. The simplest way to evaluate an expression\n in parallel is to use `x %<-% { expression }` with `plan(multisession)`.\n This package implements sequential, multicore, multisession, and\n cluster futures. With these, R expressions can be evaluated on the\n local machine, in parallel a set of local machines, or distributed\n on a mix of local and remote machines.\n Extensions to this package implement additional backends for\n processing futures via compute cluster schedulers, etc.\n Because of its unified API, there is no need to modify any code in order\n switch from sequential on the local machine to, say, distributed\n processing on a remote compute cluster.\n Another strength of this package is that global variables and functions\n are automatically identified and exported as needed, making it\n straightforward to tweak existing code to make use of futures.",
"License": "LGPL (>= 2.1)",
"LazyLoad": "TRUE",
"ByteCompile": "TRUE",
"URL": "https://future.futureverse.org,\nhttps://github.com/HenrikBengtsson/future",
"BugReports": "https://github.com/HenrikBengtsson/future/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Packaged": "2024-07-29 15:02:12 UTC; henrik",
"Author": "Henrik Bengtsson [aut, cre, cph]\n (<https://orcid.org/0000-0002-7579-5165>)",
"Maintainer": "Henrik Bengtsson <henrikb@braju.com>",
"Repository": "CRAN",
"Date/Publication": "2024-07-29 16:50:05 UTC",
"Built": "R 4.4.0; ; 2024-07-29 20:11:31 UTC; unix"
}
},
"future.apply": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "future.apply",
"Version": "1.11.2",
"Title": "Apply Function to Elements in Parallel using Futures",
"Depends": "R (>= 3.2.0), future (>= 1.28.0)",
"Imports": "globals (>= 0.16.1), parallel, utils",
"Suggests": "datasets, stats, tools, listenv (>= 0.8.0), R.rsp, markdown",
"VignetteBuilder": "R.rsp",
"Authors@R": "c(person(\"Henrik\", \"Bengtsson\",\n role = c(\"aut\", \"cre\", \"cph\"),\n email = \"henrikb@braju.com\",\n comment = c(ORCID = \"0000-0002-7579-5165\")),\n person(\"R Core Team\", role = c(\"cph\", \"ctb\")))",
"Description": "Implementations of apply(), by(), eapply(), lapply(), Map(), .mapply(), mapply(), replicate(), sapply(), tapply(), and vapply() that can be resolved using any future-supported backend, e.g. parallel on the local machine or distributed on a compute cluster. These future_*apply() functions come with the same pros and cons as the corresponding base-R *apply() functions but with the additional feature of being able to be processed via the future framework.",
"License": "GPL (>= 2)",
"LazyLoad": "TRUE",
"URL": "https://future.apply.futureverse.org,\nhttps://github.com/HenrikBengtsson/future.apply",
"BugReports": "https://github.com/HenrikBengtsson/future.apply/issues",
"RoxygenNote": "7.3.1",
"NeedsCompilation": "no",
"Packaged": "2024-03-28 06:31:25 UTC; henrik",
"Author": "Henrik Bengtsson [aut, cre, cph]\n (<https://orcid.org/0000-0002-7579-5165>),\n R Core Team [cph, ctb]",
"Maintainer": "Henrik Bengtsson <henrikb@braju.com>",
"Repository": "CRAN",
"Date/Publication": "2024-03-28 15:30:02 UTC",
"Built": "R 4.4.0; ; 2024-04-06 02:59:32 UTC; unix"
}
},
"generics": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "generics",
"Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting",