-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
7119 lines (7119 loc) · 574 KB
/
manifest.json
File metadata and controls
7119 lines (7119 loc) · 574 KB
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.5.1",
"metadata": {
"appmode": "quarto-static",
"primary_rmd": "index.qmd",
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"quarto": {
"version": "1.8.25",
"engines": ["markdown", "knitr"]
},
"packages": {
"AICcmodavg": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "AICcmodavg",
"Type": "Package",
"Title": "Model Selection and Multimodel Inference Based on (Q)AIC(c)",
"Version": "2.3-4",
"Date": "2025-03-03",
"Authors@R": "person(given = c(\"Marc\", \"J.\"),\n family = \"Mazerolle\",\n role = c(\"aut\", \"cre\"),\n email = \"marc.mazerolle@sbf.ulaval.ca\",\n\t\t comment = c(ORCID = \"0000-0002-0486-0310\"))\t",
"Maintainer": "Marc J. Mazerolle <marc.mazerolle@sbf.ulaval.ca>",
"Depends": "R (>= 3.2.0)",
"Imports": "methods, stats, graphics, lattice, MASS, Matrix, nlme, stats4,\nsurvival, unmarked, VGAM, xtable",
"Suggests": "betareg, coxme, fitdistrplus, glmmTMB, lavaan, lme4, maxlike,\nnnet, ordinal, pscl, R2jags, R2OpenBUGS, R2WinBUGS, jagsUI,\nlmerTest",
"Description": "Functions to implement model selection and multimodel inference based on Akaike's information criterion (AIC) and the second-order AIC (AICc), as well as their quasi-likelihood counterparts (QAIC, QAICc) from various model object classes. The package implements classic model averaging for a given parameter of interest or predicted values, as well as a shrinkage version of model averaging parameter estimates or effect sizes. The package includes diagnostics and goodness-of-fit statistics for certain model types including those of 'unmarkedFit' classes estimating demographic parameters after accounting for imperfect detection probabilities. Some functions also allow the creation of model selection tables for Bayesian models of the 'bugs', 'rjags', and 'jagsUI' classes. Functions also implement model selection using BIC. Objects following model selection and multimodel inference can be formatted to LaTeX using 'xtable' methods included in the package.",
"License": "GPL (>= 2)",
"LazyLoad": "yes",
"Repository": "CRAN",
"NeedsCompilation": "no",
"Packaged": "2025-03-05 22:25:36 UTC; mazerolm",
"Author": "Marc J. Mazerolle [aut, cre] (<https://orcid.org/0000-0002-0486-0310>)",
"Date/Publication": "2025-03-06 14:30:06 UTC",
"Built": "R 4.5.0; ; 2025-04-01 16:06:57 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "AICcmodavg",
"RemoteRef": "AICcmodavg",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "2.3-4"
}
},
"AsioHeaders": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "AsioHeaders",
"Type": "Package",
"Title": "'Asio' C++ Header Files",
"Version": "1.30.2-1",
"Date": "2025-04-15",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Christopher M.\", \"Kohlhoff\", role = \"aut\",\n comment = \"Author of Asio\"))",
"Description": "'Asio' is a cross-platform C++ library for network and low-level\n I/O programming that provides developers with a consistent asynchronous model\n using a modern C++ approach. It is also included in Boost but requires linking\n when used with Boost. Standalone it can be used header-only (provided a recent\n compiler). 'Asio' is written and maintained by Christopher M. Kohlhoff, and\n released under the 'Boost Software License', Version 1.0.",
"Copyright": "file inst/COPYRIGHTS",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/asioheaders,\nhttps://dirk.eddelbuettel.com/code/asioheaders.html",
"BugReports": "https://github.com/eddelbuettel/asioheaders/issues",
"NeedsCompilation": "no",
"Packaged": "2025-04-15 10:31:52 UTC; edd",
"Author": "Dirk Eddelbuettel [aut, cre] (<https://orcid.org/0000-0001-6419-907X>),\n Christopher M. Kohlhoff [aut] (Author of Asio)",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "CRAN",
"Date/Publication": "2025-04-15 10:50:01 UTC",
"Built": "R 4.5.0; ; 2025-04-15 11:35:48 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "AsioHeaders",
"RemoteRef": "AsioHeaders",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.30.2-1"
}
},
"DBI": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"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.5.0; ; 2025-03-31 21:50:56 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "DBI",
"RemoteRef": "DBI",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.2.3"
}
},
"Deriv": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Deriv",
"Type": "Package",
"Title": "Symbolic Differentiation",
"Version": "4.2.0",
"Date": "2025-06-20",
"Authors@R": "c(person(given=\"Andrew\", family=\"Clausen\", role=\"aut\"),\n person(given=\"Serguei\", family=\"Sokol\", role=c(\"aut\", \"cre\"),\n email=\"sokol@insa-toulouse.fr\", comment = c(ORCID = \"0000-0002-5674-3327\")),\n person(given=\"Andreas\", family=\"Rappold\", role=\"ctb\", email=\"arappold@gmx.at\"))",
"Description": "R-based solution for symbolic differentiation. It admits\n user-defined function as well as function substitution\n in arguments of functions to be differentiated. Some symbolic\n simplification is part of the work.",
"License": "GPL (>= 3)",
"Suggests": "testthat (>= 0.11.0)",
"BugReports": "https://github.com/sgsokol/Deriv/issues",
"RoxygenNote": "7.3.1",
"Imports": "methods",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2025-06-20 13:25:20 UTC; sokol",
"Author": "Andrew Clausen [aut],\n Serguei Sokol [aut, cre] (ORCID:\n <https://orcid.org/0000-0002-5674-3327>),\n Andreas Rappold [ctb]",
"Maintainer": "Serguei Sokol <sokol@insa-toulouse.fr>",
"Repository": "CRAN",
"Date/Publication": "2025-06-20 15:20:02 UTC",
"Built": "R 4.5.0; ; 2025-06-20 16:22:12 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "Deriv",
"RemoteRef": "Deriv",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "4.2.0"
}
},
"DescTools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "DescTools",
"Type": "Package",
"Title": "Tools for Descriptive Statistics",
"Version": "0.99.60",
"Date": "2025-03-28",
"Authors@R": "c(\n person(given=\"Andri\", family=\"Signorell\", \n email = \"andri@signorell.net\", \n role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4311-1969\")),\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(\"Cyril Flurin\" , \"Moser\", role = c(\"ctb\")),\n person(\"Franziska\" , \"Mueller\", role = c(\"ctb\")),\n person(\"Markus\" , \"Naepflin\", role = c(\"ctb\")),\n person(\"Danielle\" , \"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, testthat (>= 3.0.0)",
"Depends": "base, stats, R (>= 4.2.0)",
"Imports": "graphics, grDevices, methods, MASS, utils, boot, mvtnorm,\nexpm, Rcpp (>= 0.12.10), rstudioapi, Exact, gld, data.table,\nreadxl, readr, haven, httr, withr, cli, fs",
"LinkingTo": "Rcpp",
"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",
"RoxygenNote": "7.3.2",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"SystemRequirements": "C++17",
"VignetteBuilder": "R.rsp",
"Config/testthat/edition": "3",
"Packaged": "2025-03-28 11:05:35 UTC; andri",
"Author": "Andri Signorell [aut, cre] (<https://orcid.org/0000-0003-4311-1969>),\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 Cyril Flurin Moser [ctb],\n Franziska Mueller [ctb],\n Markus Naepflin [ctb],\n Danielle 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": "CRAN",
"Date/Publication": "2025-03-28 12:00:02 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-04-02 18:26:24 UTC; unix",
"Archs": "DescTools.so.dSYM",
"RemoteType": "standard",
"RemotePkgRef": "DescTools",
"RemoteRef": "DescTools",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "0.99.60"
}
},
"Exact": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Exact",
"Type": "Package",
"Title": "Unconditional Exact Test",
"Version": "3.3",
"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 85 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": "2024-07-21 00:26:38 UTC; pcalh",
"Repository": "CRAN",
"Date/Publication": "2024-07-21 06:50:01 UTC",
"Built": "R 4.5.0; ; 2025-03-31 22:24:07 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "Exact",
"RemoteRef": "Exact",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "3.3"
}
},
"Formula": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Formula",
"Version": "1.2-5",
"Date": "2023-02-23",
"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": "2023-02-23 22:47:03 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": "2023-02-24 08:52:30 UTC",
"Built": "R 4.5.0; ; 2025-03-31 21:47:10 UTC; unix"
}
},
"GGally": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "GGally",
"Title": "Extension to 'ggplot2'",
"Version": "2.4.0",
"Authors@R": "c(\n person(\"Barret\", \"Schloerke\", , \"schloerke@gmail.com\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Di\", \"Cook\", , \"dicook@monash.edu\", role = c(\"aut\", \"ths\"),\n comment = c(ORCID = \"0000-0002-3813-7155\")),\n person(\"Joseph\", \"Larmarange\", , \"joseph@larmarange.net\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-7097-700X\")),\n person(\"Francois\", \"Briatte\", , \"f.briatte@gmail.com\", role = \"aut\"),\n person(\"Moritz\", \"Marbach\", , \"mmarbach@mail.uni-mannheim.de\", role = \"aut\"),\n person(\"Edwin\", \"Thoen\", , \"edwinthoen@gmail.com\", role = \"aut\"),\n person(\"Amos\", \"Elberg\", , \"amos.elberg@gmail.com\", role = \"aut\"),\n person(\"Ott\", \"Toomet\", , \"otoomet@gmail.com\", role = \"ctb\"),\n person(\"Jason\", \"Crowley\", , \"crowley.jason.s@gmail.com\", role = \"aut\"),\n person(\"Heike\", \"Hofmann\", , \"hhofmann4@unl.edu\", role = \"ths\",\n comment = c(ORCID = \"0000-0001-6216-5183\")),\n person(\"Hadley\", \"Wickham\", , \"h.wickham@gmail.com\", role = \"ths\",\n comment = c(ORCID = \"0000-0003-4757-117X\"))\n )",
"Description": "The R package 'ggplot2' is a plotting system based on the\n grammar of graphics. 'GGally' extends 'ggplot2' by adding several\n functions to reduce the complexity of combining geometric objects with\n transformed data. Some of these functions include a pairwise plot\n matrix, a two group pairwise plot matrix, a parallel coordinates plot,\n a survival plot, and several functions to plot networks.",
"License": "GPL (>= 2.0)",
"URL": "https://ggobi.github.io/ggally/, https://github.com/ggobi/ggally",
"BugReports": "https://github.com/ggobi/ggally/issues",
"Depends": "ggplot2 (>= 3.5.2), R (>= 4.3)",
"Imports": "cli, dplyr (>= 1.1.0), ggstats (>= 0.9.0), grDevices, grid,\ngtable (>= 0.2.0), lifecycle, magrittr, progress, RColorBrewer,\nrlang, S7 (>= 0.2.0), scales (>= 1.3.0), tidyr (>= 1.3.0),\nutils",
"Suggests": "airports, broom (>= 0.7.0), broom.helpers (>= 1.3.0),\nchemometrics, crosstalk, emmeans, geosphere (>= 1.5-1),\nggforce, Hmisc, igraph (>= 1.0.1), intergraph (>= 2.0-2),\nknitr, labelled, mapproj, maps (>= 3.1.0), network (>= 1.17.1),\nnnet, rmarkdown, scagnostics, sna (>= 2.3-2), spelling,\nsurvival, testthat (>= 3.0.0), vdiffr",
"RdMacros": "lifecycle",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/usethis/last-upkeep": "2025-06-13",
"Encoding": "UTF-8",
"Language": "en-US",
"LazyData": "true",
"LazyLoad": "yes",
"RoxygenNote": "7.3.2",
"SystemRequirements": "openssl",
"Collate": "'GGally-package.R' 'data-australia-pisa-2012.R'\n'data-baseball.R' 'data-flea.R' 'data-happy.R' 'data-nasa.R'\n'data-nba_ppg_2008.R' 'data-pigs.R' 'data-psychademic.R'\n'data-tips.R' 'data-twitter_spambots.R' 'deprecated.R'\n'find-combo.R' 'gg-plots.R' 'ggally_colbar.R' 'ggally_cross.R'\n'ggaly_trends.R' 'ggbivariate.R' 'ggcoef.R' 'ggcorr.R'\n'ggfacet.R' 'gglyph.R' 'ggpairs_getput.R' 'ggmatrix.R'\n'ggmatrix_gtable.R' 'ggmatrix_gtable_helpers.R'\n'ggmatrix_legend.R' 'ggmatrix_make_plot.R' 'ggmatrix_print.R'\n'ggmatrix_progress.R' 'ggnet.R' 'ggnet2.R' 'ggnetworkmap.R'\n'ggnostic.R' 'ggpairs.R' 'ggpairs_add.R'\n'ggpairs_internal_plots.R' 'ggparcoord.R' 'ggsave.R'\n'ggscatmat.R' 'ggsurv.R' 'ggtable.R' 'reexports.R'\n'utils-pipe.R' 'utils.R' 'vig_ggally.R' 'zzz.R'",
"NeedsCompilation": "no",
"Packaged": "2025-08-18 17:35:30 UTC; barret",
"Author": "Barret Schloerke [aut, cre] (ORCID:\n <https://orcid.org/0000-0001-9986-114X>),\n Di Cook [aut, ths] (ORCID: <https://orcid.org/0000-0002-3813-7155>),\n Joseph Larmarange [aut] (ORCID:\n <https://orcid.org/0000-0001-7097-700X>),\n Francois Briatte [aut],\n Moritz Marbach [aut],\n Edwin Thoen [aut],\n Amos Elberg [aut],\n Ott Toomet [ctb],\n Jason Crowley [aut],\n Heike Hofmann [ths] (ORCID: <https://orcid.org/0000-0001-6216-5183>),\n Hadley Wickham [ths] (ORCID: <https://orcid.org/0000-0003-4757-117X>)",
"Maintainer": "Barret Schloerke <schloerke@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2025-08-23 07:00:02 UTC",
"Built": "R 4.5.0; ; 2025-08-26 00:24:02 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "GGally",
"RemoteRef": "GGally",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "2.4.0"
}
},
"ISLR2": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "ISLR2",
"Version": "1.3-2",
"Date": "2022-11-19",
"Title": "Introduction to Statistical Learning, Second Edition",
"Authors@R": "c(person(\"Gareth\", \"James\", role=\"aut\"),\n\t person(\"Daniela\", \"Witten\", role=\"aut\"),\n\t person(\"Trevor\", \"Hastie\", role=c(\"aut\", \"cre\"), email = \"hastie@stanford.edu\"),\n\t person(\"Rob\", \"Tibshirani\", role=\"aut\"),\n\t person(\"Balasubramanian\", \"Narasimhan\", role=\"ctb\"))",
"Suggests": "MASS",
"Description": "We provide the collection of data-sets used in the book 'An Introduction to Statistical Learning with Applications in R, Second Edition'. These include many data-sets that we used in the first edition (some with minor changes), and some new datasets.",
"Depends": "R (>= 3.5.0)",
"License": "GPL-2",
"LazyLoad": "yes",
"LazyData": "yes",
"URL": "https://www.statlearning.com",
"NeedsCompilation": "no",
"Packaged": "2022-11-19 20:28:18 UTC; hastie",
"Author": "Gareth James [aut],\n Daniela Witten [aut],\n Trevor Hastie [aut, cre],\n Rob Tibshirani [aut],\n Balasubramanian Narasimhan [ctb]",
"Maintainer": "Trevor Hastie <hastie@stanford.edu>",
"Repository": "CRAN",
"Date/Publication": "2022-11-20 00:20:02 UTC",
"Built": "R 4.5.0; ; 2025-04-01 02:30:48 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "ISLR2",
"RemoteRef": "ISLR2",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.3-2"
}
},
"KernSmooth": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "KernSmooth",
"Priority": "recommended",
"Version": "2.23-26",
"Date": "2024-12-10",
"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 = \"Brian.Ripley@R-project.org\",\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-12-10 15:33:25 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 <Brian.Ripley@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2025-01-01 10:25:36 UTC",
"Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:47 UTC; unix"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-65",
"Date": "2025-02-19",
"Revision": "$Rev: 3681 $",
"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 = \"Brian.Ripley@R-project.org\"),\n\t person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")),\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\",\n\t comment = \"support functions for polr\"))",
"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": "2025-02-19 08:49:43 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\n Bill Venables [aut, cph],\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] (support functions for polr)",
"Maintainer": "Brian Ripley <Brian.Ripley@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2025-02-28 17:44:52 UTC",
"Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:47 UTC; unix"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Matrix",
"Version": "1.7-3",
"VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h",
"Date": "2025-03-05",
"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 = c(ROR = \"02zz1nj61\", \"base R's matrix implementation\")))",
"Depends": "R (>= 4.4), 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": "2025-03-05 09:59:22 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] (02zz1nj61, base R's matrix implementation)",
"Maintainer": "Martin Maechler <mmaechler+Matrix@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2025-03-11 07:20:02 UTC",
"Built": "R 4.5.1; aarch64-apple-darwin20; 2025-06-14 01:29:52 UTC; unix"
}
},
"MatrixModels": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MatrixModels",
"Version": "0.5-4",
"VersionNote": "Released 0.5-3 on 2023-11-06",
"Date": "2025-03-25",
"Title": "Modelling with Sparse and Dense Matrices",
"Contact": "Matrix-authors@R-project.org",
"Authors@R": "c(\n person(\"Douglas\", \"Bates\", role = \"aut\", email = \"bates@stat.wisc.edu\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"mmaechler+Matrix@gmail.com\",\n comment = c(ORCID = \"0000-0002-8685-9910\")))",
"Description": "Generalized Linear Modelling with sparse and dense 'Matrix' matrices, using\n modular prediction and response module classes.",
"Depends": "R (>= 3.6.0)",
"Imports": "stats, methods, Matrix (>= 1.6-0), Matrix(< 1.8-0)",
"ImportsNote": "_not_yet_stats4",
"Encoding": "UTF-8",
"LazyLoad": "yes",
"License": "GPL (>= 2)",
"URL": "https://Matrix.R-forge.R-project.org/,\nhttps://r-forge.r-project.org/R/?group_id=61",
"BugReports": "https://R-forge.R-project.org/tracker/?func=add&atid=294&group_id=61",
"NeedsCompilation": "no",
"Packaged": "2025-03-25 22:20:33 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>)",
"Maintainer": "Martin Maechler <mmaechler+Matrix@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2025-03-26 08:50:02 UTC",
"Built": "R 4.5.0; ; 2025-04-01 11:50:57 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "MatrixModels",
"RemoteRef": "MatrixModels",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "0.5-4"
}
},
"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.5.0; aarch64-apple-darwin20; 2025-03-31 22:06:25 UTC; unix",
"Archs": "ModelMetrics.so.dSYM",
"RemoteType": "standard",
"RemotePkgRef": "ModelMetrics",
"RemoteRef": "ModelMetrics",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.2.2.2"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.6.1",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"winston@posit.co\", role = c(\"aut\", \"cre\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Creates classes with reference semantics, similar to R's\n built-in reference classes. Compared to reference classes, R6 classes\n are simpler and lighter-weight, and they are not built on S4 classes\n so they do not require the methods package. These classes allow public\n and private members, and they support inheritance, even when the\n classes are defined in different packages.",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6",
"BugReports": "https://github.com/r-lib/R6/issues",
"Depends": "R (>= 3.6)",
"Suggests": "lobstr, testthat (>= 3.0.0)",
"Config/Needs/website": "tidyverse/tidytemplate, ggplot2, microbenchmark,\nscales",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Packaged": "2025-02-14 21:15:19 UTC; winston",
"Author": "Winston Chang [aut, cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <winston@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2025-02-15 00:50:02 UTC",
"Built": "R 4.5.0; ; 2025-02-15 01:07:20 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.5.0; ; 2025-03-31 21:42:41 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.1.0",
"Date": "2025-07-01",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Romain\", \"Francois\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"JJ\", \"Allaire\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0174-9868\")),\n person(\"Kevin\", \"Ushey\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-2880-7407\")),\n person(\"Qiang\", \"Kou\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-6786-5453\")),\n person(\"Nathan\", \"Russell\", role = \"aut\"),\n person(\"Iñaki\", \"Ucar\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-6403-5550\")),\n person(\"Doug\", \"Bates\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"John\", \"Chambers\", role = \"aut\"))",
"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": "2025-07-01 12:58:41 UTC; edd",
"Author": "Dirk Eddelbuettel [aut, cre] (ORCID:\n <https://orcid.org/0000-0001-6419-907X>),\n Romain Francois [aut] (ORCID: <https://orcid.org/0000-0002-2444-4226>),\n JJ Allaire [aut] (ORCID: <https://orcid.org/0000-0003-0174-9868>),\n Kevin Ushey [aut] (ORCID: <https://orcid.org/0000-0003-2880-7407>),\n Qiang Kou [aut] (ORCID: <https://orcid.org/0000-0001-6786-5453>),\n Nathan Russell [aut],\n Iñaki Ucar [aut] (ORCID: <https://orcid.org/0000-0001-6403-5550>),\n Doug Bates [aut] (ORCID: <https://orcid.org/0000-0001-8316-9503>),\n John Chambers [aut]",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "CRAN",
"Date/Publication": "2025-07-02 16:40:02 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-07-04 07:28:39 UTC; unix",
"Archs": "Rcpp.so.dSYM"
}
},
"RcppArmadillo": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "RcppArmadillo",
"Type": "Package",
"Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra\nLibrary",
"Version": "15.0.2-2",
"Date": "2025-09-18",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Romain\", \"Francois\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Doug\", \"Bates\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"Binxiang\", \"Ni\", role = \"aut\"),\n person(\"Conrad\", \"Sanderson\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-0049-4501\")))",
"Description": "'Armadillo' is a templated C++ linear algebra library aiming towards\n a good balance between speed and ease of use. It provides high-level syntax and\n functionality deliberately similar to Matlab. It is useful for algorithm development\n directly in C++, or quick conversion of research code into production environments.\n It provides efficient classes for vectors, matrices and cubes where dense and sparse\n matrices are supported. Integer, floating point and complex numbers are supported.\n A sophisticated expression evaluator (based on template meta-programming) automatically\n combines several operations to increase speed and efficiency. Dynamic evaluation\n automatically chooses optimal code paths based on detected matrix structures.\n Matrix decompositions are provided through integration with LAPACK, or one of its\n high performance drop-in replacements (such as 'MKL' or 'OpenBLAS'). It can\n automatically use 'OpenMP' multi-threading (parallelisation) to speed up\n computationally expensive operations.\n\n The 'RcppArmadillo' package includes the header files from the 'Armadillo' library;\n users do not need to install 'Armadillo' itself in order to use 'RcppArmadillo'.\n Starting from release 15.0.0, the minimum compilation standard is C++14 so 'Armadillo'\n version 14.6.3 is included as a fallback when an R package forces the C++11 standard.\n Package authors should set a '#define' to select the 'current' version, or select the\n 'legacy' version (also chosen as default) if they must. See 'GitHub issue #475' for\n details.\n\n Since release 7.800.0, 'Armadillo' is licensed under Apache License 2; previous\n releases were under licensed as MPL 2.0 from version 3.800.0 onwards and LGPL-3\n prior to that; 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed\n under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.",
"License": "GPL (>= 2)",
"LazyLoad": "yes",
"Depends": "R (>= 3.3.0)",
"LinkingTo": "Rcpp",
"Imports": "Rcpp (>= 1.0.12), stats, utils, methods",
"Suggests": "tinytest, Matrix (>= 1.3.0), pkgKitten, reticulate, slam",
"URL": "https://github.com/RcppCore/RcppArmadillo,\nhttps://dirk.eddelbuettel.com/code/rcpp.armadillo.html",
"BugReports": "https://github.com/RcppCore/RcppArmadillo/issues",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2025-09-18 17:28:37 UTC; edd",
"Author": "Dirk Eddelbuettel [aut, cre] (ORCID:\n <https://orcid.org/0000-0001-6419-907X>),\n Romain Francois [aut] (ORCID: <https://orcid.org/0000-0002-2444-4226>),\n Doug Bates [aut] (ORCID: <https://orcid.org/0000-0001-8316-9503>),\n Binxiang Ni [aut],\n Conrad Sanderson [aut] (ORCID: <https://orcid.org/0000-0002-0049-4501>)",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "CRAN",
"Date/Publication": "2025-09-19 05:40:02 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-09-19 06:42:45 UTC; unix",
"Archs": "RcppArmadillo.so.dSYM",
"RemoteType": "standard",
"RemotePkgRef": "RcppArmadillo",
"RemoteRef": "RcppArmadillo",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "15.0.2-2"
}
},
"RcppEigen": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "RcppEigen",
"Type": "Package",
"Title": "'Rcpp' Integration for the 'Eigen' Templated Linear Algebra\nLibrary",
"Version": "0.3.4.0.2",
"Date": "2024-08-23",
"Authors@R": "c(person(\"Doug\", \"Bates\", role = \"aut\",\n comment = c(ORCID = \"0000-0001-8316-9503\")),\n person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"edd@debian.org\",\n comment = c(ORCID = \"0000-0001-6419-907X\")),\n person(\"Romain\", \"Francois\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Yixuan\", \"Qiu\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-0109-6692\")),\n person(\"Authors of\", \"Eigen\", role = \"cph\",\n comment = \"Authorship and copyright in included Eigen library as detailed in inst/COPYRIGHTS\"))",
"Copyright": "See the file COPYRIGHTS for various Eigen copyright details",
"Description": "R and 'Eigen' integration using 'Rcpp'.\n 'Eigen' is a C++ template library for linear algebra: matrices, vectors,\n numerical solvers and related algorithms. It supports dense and sparse\n matrices on integer, floating point and complex numbers, decompositions of\n such matrices, and solutions of linear systems. Its performance on many\n algorithms is comparable with some of the best implementations based on\n 'Lapack' and level-3 'BLAS'. The 'RcppEigen' package includes the header\n files from the 'Eigen' C++ template library. Thus users do not need to\n install 'Eigen' itself in order to use 'RcppEigen'. Since version 3.1.1,\n 'Eigen' is licensed under the Mozilla Public License (version 2); earlier\n version were licensed under the GNU LGPL version 3 or later. 'RcppEigen'\n (the 'Rcpp' bindings/bridge to 'Eigen') is licensed under the GNU GPL\n version 2 or later, as is the rest of 'Rcpp'.",
"License": "GPL (>= 2) | file LICENSE",
"LazyLoad": "yes",
"Depends": "R (>= 3.6.0)",
"LinkingTo": "Rcpp",
"Imports": "Rcpp (>= 0.11.0), stats, utils",
"Suggests": "Matrix, inline, tinytest, pkgKitten, microbenchmark",
"URL": "https://github.com/RcppCore/RcppEigen,\nhttps://dirk.eddelbuettel.com/code/rcpp.eigen.html",
"BugReports": "https://github.com/RcppCore/RcppEigen/issues",
"NeedsCompilation": "yes",
"Packaged": "2024-08-23 18:11:22 UTC; edd",
"Author": "Doug Bates [aut] (<https://orcid.org/0000-0001-8316-9503>),\n Dirk Eddelbuettel [aut, cre] (<https://orcid.org/0000-0001-6419-907X>),\n Romain Francois [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Yixuan Qiu [aut] (<https://orcid.org/0000-0003-0109-6692>),\n Authors of Eigen [cph] (Authorship and copyright in included Eigen\n library as detailed in inst/COPYRIGHTS)",
"Maintainer": "Dirk Eddelbuettel <edd@debian.org>",
"Repository": "CRAN",
"Date/Publication": "2024-08-24 06:30:02 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-03-31 21:46:11 UTC; unix",
"Archs": "RcppEigen.so.dSYM",
"RemoteType": "standard",
"RemotePkgRef": "RcppEigen",
"RemoteRef": "RcppEigen",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "0.3.4.0.2"
}
},
"Rdpack": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rdpack",
"Type": "Package",
"Title": "Update and Manipulate Rd Documentation Objects",
"Version": "2.6.4",
"Authors@R": "c( person(given = c(\"Georgi\", \"N.\"),\n family = \"Boshnakov\", \n role = c(\"aut\", \"cre\"), \n email = \"georgi.boshnakov@manchester.ac.uk\",\n\t\t comment = c(ORCID = \"0000-0003-2839-346X\")),\n\t person(given = \"Duncan\", \n\t family = \"Murdoch\", \n\t role = \"ctb\", email = \"murdoch.duncan@gmail.com\") )",
"Description": "Functions for manipulation of R documentation objects,\n including functions reprompt() and ereprompt() for updating 'Rd'\n documentation for functions, methods and classes; 'Rd' macros for\n citations and import of references from 'bibtex' files for use in\n 'Rd' files and 'roxygen2' comments; 'Rd' macros for evaluating and\n inserting snippets of 'R' code and the results of its evaluation or\n creating graphics on the fly; and many functions for manipulation of\n references and Rd files.",
"URL": "https://geobosh.github.io/Rdpack/ (doc),\nhttps://github.com/GeoBosh/Rdpack (devel)",
"BugReports": "https://github.com/GeoBosh/Rdpack/issues",
"Depends": "R (>= 2.15.0), methods",
"Imports": "tools, utils, rbibutils (>= 1.3)",
"Suggests": "grDevices, testthat, rstudioapi, rprojroot, gbRd",
"License": "GPL (>= 2)",
"LazyLoad": "yes",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2025-04-08 20:11:29 UTC; georgi",
"Author": "Georgi N. Boshnakov [aut, cre]\n (<https://orcid.org/0000-0003-2839-346X>),\n Duncan Murdoch [ctb]",
"Maintainer": "Georgi N. Boshnakov <georgi.boshnakov@manchester.ac.uk>",
"Repository": "CRAN",
"Date/Publication": "2025-04-09 01:10:01 UTC",
"Built": "R 4.5.0; ; 2025-04-09 01:15:32 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "Rdpack",
"RemoteRef": "Rdpack",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "2.6.4"
}
},
"S7": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "S7",
"Title": "An Object Oriented System Meant to Become a Successor to S3 and\nS4",
"Version": "0.2.0",
"Authors@R": "c(\n person(\"Object-Oriented Programming Working Group\", role = \"cph\"),\n person(\"Davis\", \"Vaughan\", role = \"aut\"),\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Tomasz\", \"Kalinowski\", role = \"aut\"),\n person(\"Will\", \"Landau\", role = \"aut\"),\n person(\"Michael\", \"Lawrence\", role = \"aut\"),\n person(\"Martin\", \"Maechler\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-8685-9910\")),\n person(\"Luke\", \"Tierney\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"hadley@posit.co\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\"))\n )",
"Description": "A new object oriented programming system designed to be a\n successor to S3 and S4. It includes formal class, generic, and method\n specification, and a limited form of multiple dispatch. It has been\n designed and implemented collaboratively by the R Consortium\n Object-Oriented Programming Working Group, which includes\n representatives from R-Core, 'Bioconductor', 'Posit'/'tidyverse', and\n the wider R community.",
"License": "MIT + file LICENSE",
"URL": "https://rconsortium.github.io/S7/,\nhttps://github.com/RConsortium/S7",
"BugReports": "https://github.com/RConsortium/S7/issues",
"Depends": "R (>= 3.5.0)",
"Imports": "utils",
"Suggests": "bench, callr, covr, knitr, methods, rmarkdown, testthat (>=\n3.2.0), tibble",
"VignetteBuilder": "knitr",
"Config/build/compilation-database": "true",
"Config/Needs/website": "sloop",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "TRUE",
"Config/testthat/start-first": "external-generic",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Packaged": "2024-11-06 17:18:31 UTC; hadleywickham",
"Author": "Object-Oriented Programming Working Group [cph],\n Davis Vaughan [aut],\n Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Tomasz Kalinowski [aut],\n Will Landau [aut],\n Michael Lawrence [aut],\n Martin Maechler [aut] (<https://orcid.org/0000-0002-8685-9910>),\n Luke Tierney [aut],\n Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>)",
"Maintainer": "Hadley Wickham <hadley@posit.co>",
"Repository": "CRAN",
"Date/Publication": "2024-11-07 12:50:02 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-04-01 00:02:13 UTC; unix",
"Archs": "S7.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.5.0; ; 2025-03-31 22:05:56 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "SQUAREM",
"RemoteRef": "SQUAREM",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "2021.1"
}
},
"SparseM": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "SparseM",
"Version": "1.84-2",
"Authors@R": "c(\n person(\"Roger\", \"Koenker\", role = c(\"cre\",\"aut\"), email = \"rkoenker@uiuc.edu\"),\n person(c(\"Pin\", \"Tian\"), \"Ng\", role = c(\"ctb\"),\n comment = \"Contributions to Sparse QR code\", email = \"pin.ng@nau.edu\")\n , person(\"Yousef\", \"Saad\", role = c(\"ctb\"), comment = \"author of sparskit2\")\n , person(\"Ben\", \"Shaby\", role = c(\"ctb\"), comment = \"author of chol2csr\")\n , person(\"Martin\", \"Maechler\", role = \"ctb\", comment = c(\"chol() tweaks; S4\", ORCID = \"0000-0002-8685-9910\"))\n )",
"Maintainer": "Roger Koenker <rkoenker@uiuc.edu>",
"Depends": "R (>= 2.15), methods",
"Imports": "graphics, stats, utils",
"VignetteBuilder": "knitr",
"Suggests": "knitr",
"Description": "Some basic linear algebra functionality for sparse matrices is\n provided: including Cholesky decomposition and backsolving as well as\n standard R subsetting and Kronecker products.",
"License": "GPL (>= 2)",
"Title": "Sparse Linear Algebra",
"URL": "http://www.econ.uiuc.edu/~roger/research/sparse/sparse.html",
"NeedsCompilation": "yes",
"Packaged": "2024-07-17 11:01:25 UTC; ripley",
"Author": "Roger Koenker [cre, aut],\n Pin Tian Ng [ctb] (Contributions to Sparse QR code),\n Yousef Saad [ctb] (author of sparskit2),\n Ben Shaby [ctb] (author of chol2csr),\n Martin Maechler [ctb] (chol() tweaks; S4,\n <https://orcid.org/0000-0002-8685-9910>)",
"Repository": "CRAN",
"Date/Publication": "2024-07-17 16:10:06 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-03-31 21:44:27 UTC; unix",
"Archs": "SparseM.so.dSYM",
"RemoteType": "standard",
"RemotePkgRef": "SparseM",
"RemoteRef": "SparseM",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.84-2"
}
},
"TH.data": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "TH.data",
"Title": "TH's Data Archive",
"Date": "2025-09-02",
"Version": "1.1-4",
"Authors@R": "c(person(\"Torsten\", \"Hothorn\", role = c(\"aut\", \"cre\"),\n email = \"Torsten.Hothorn@R-project.org\"))",
"Description": "Contains data sets used in other packages Torsten Hothorn\n maintains.",
"Depends": "R (>= 3.5.0), survival, MASS",
"Suggests": "trtf, tram, rms, coin, ATR, multcomp, gridExtra, vcd,\ncolorspace, lattice, knitr, dplyr, openxlsx, plyr",
"LazyData": "yes",
"VignetteBuilder": "knitr",
"License": "GPL-3",
"NeedsCompilation": "no",
"Packaged": "2025-09-02 08:55:00 UTC; hothorn",
"Author": "Torsten Hothorn [aut, cre]",
"Maintainer": "Torsten Hothorn <Torsten.Hothorn@R-project.org>",
"Repository": "CRAN",
"Date/Publication": "2025-09-02 11:30:09 UTC",
"Built": "R 4.5.0; ; 2025-09-03 22:07:34 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "TH.data",
"RemoteRef": "TH.data",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.1-4"
}
},
"TMB": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "TMB",
"Type": "Package",
"Title": "Template Model Builder: A General Random Effect Tool Inspired by\n'ADMB'",
"Version": "1.9.17",
"Date": "2025-03-08",
"Authors@R": "c(person(\"Kasper\",\"Kristensen\",role=c(\"aut\",\"cre\",\"cph\"),email=\"kaskr@dtu.dk\"),\n person(\"Brad\",\"Bell\",role=\"cph\"),\n person(\"Hans\",\"Skaug\",role=\"ctb\"),\n person(\"Arni\",\"Magnusson\",role=\"ctb\"),\n person(\"Casper\",\"Berg\",role=\"ctb\"),\n person(\"Anders\",\"Nielsen\",role=\"ctb\"),\n person(\"Martin\",\"Maechler\",role=\"ctb\"),\n person(\"Theo\",\"Michelot\",role=\"ctb\"),\n person(\"Mollie\",\"Brooks\",role=\"ctb\"),\n person(\"Alex\",\"Forrence\",role=\"ctb\"),\n person(\"Christoffer\",\"Moesgaard Albertsen\",role=\"ctb\"),\n person(\"Cole\",\"Monnahan\",role=\"ctb\") )",
"Maintainer": "Kasper Kristensen <kaskr@dtu.dk>",
"Author": "Kasper Kristensen [aut, cre, cph],\n Brad Bell [cph],\n Hans Skaug [ctb],\n Arni Magnusson [ctb],\n Casper Berg [ctb],\n Anders Nielsen [ctb],\n Martin Maechler [ctb],\n Theo Michelot [ctb],\n Mollie Brooks [ctb],\n Alex Forrence [ctb],\n Christoffer Moesgaard Albertsen [ctb],\n Cole Monnahan [ctb]",
"Copyright": "See the file COPYRIGHTS",
"Description": "With this tool, a user should be able to quickly implement\n complex random effect models through simple C++ templates. The package combines\n 'CppAD' (C++ automatic differentiation), 'Eigen' (templated matrix-vector\n library) and 'CHOLMOD' (sparse matrix routines available from R) to obtain\n an efficient implementation of the applied Laplace approximation with exact\n derivatives. Key features are: Automatic sparseness detection, parallelism\n through 'BLAS' and parallel user templates.",
"License": "GPL-2",
"URL": "https://github.com/kaskr/adcomp/wiki",
"BugReports": "https://github.com/kaskr/adcomp/issues",
"Depends": "R (>= 3.0.0)",
"Imports": "graphics, methods, stats, utils, Matrix (>= 1.0-12)",
"LinkingTo": "Matrix, RcppEigen",
"Suggests": "numDeriv, parallel",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2025-03-08 10:47:07 UTC; kaskr",
"Repository": "CRAN",
"Date/Publication": "2025-03-10 08:30:06 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-04-01 06:47:15 UTC; unix",
"Archs": "TMB.so.dSYM",
"RemoteType": "standard",
"RemotePkgRef": "TMB",
"RemoteRef": "TMB",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.9.17"
}
},
"VGAM": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "VGAM",
"Version": "1.1-13",
"Date": "2025-02-11",
"Title": "Vector Generalized Linear and Additive Models",
"Authors@R": "c(person(\"Thomas\", \"Yee\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-9970-3907\"),\n email = \"t.yee@auckland.ac.nz\"),\n person(\"Cleve\", \"Moler\", role = \"ctb\",\n comment = \"LINPACK routines in src\"))",
"Author": "Thomas Yee [aut, cre] (<https://orcid.org/0000-0002-9970-3907>),\n Cleve Moler [ctb] (LINPACK routines in src)",
"Maintainer": "Thomas Yee <t.yee@auckland.ac.nz>",
"Depends": "R (>= 4.1.0), methods, stats, stats4, splines",
"Suggests": "VGAMextra, MASS, mgcv",
"Enhances": "VGAMdata",
"Description": "An implementation of about 6 major classes of\n statistical regression models. The central algorithm is\n Fisher scoring and iterative reweighted least squares.\n At the heart of this package are the vector generalized linear\n and additive model (VGLM/VGAM) classes. VGLMs can be loosely\n thought of as multivariate GLMs. VGAMs are data-driven\n VGLMs that use smoothing. The book \"Vector Generalized\n Linear and Additive Models: With an Implementation in R\"\n (Yee, 2015) <DOI:10.1007/978-1-4939-2818-7> gives details of\n the statistical framework and the package. Currently only\n fixed-effects models are implemented. Many (100+) models and\n distributions are estimated by maximum likelihood estimation\n (MLE) or penalized MLE. The other classes are RR-VGLMs\n (reduced-rank VGLMs), quadratic RR-VGLMs, doubly constrained\n RR-VGLMs, quadratic RR-VGLMs, reduced-rank VGAMs,\n RCIMs (row-column interaction models)---these classes perform\n constrained and unconstrained quadratic ordination (CQO/UQO)\n models in ecology, as well as constrained additive ordination\n (CAO). Hauck-Donner effect detection is implemented.\n Note that these functions are subject to change;\n see the NEWS and ChangeLog files for latest changes.",
"License": "GPL-3",
"URL": "https://www.stat.auckland.ac.nz/~yee/VGAM/",
"NeedsCompilation": "yes",
"BuildVignettes": "yes",
"LazyLoad": "yes",
"LazyData": "yes",
"Packaged": "2025-02-11 08:14:16 UTC; tyee001",
"Repository": "CRAN",
"Date/Publication": "2025-02-12 16:30:02 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-03-31 22:16:46 UTC; unix",
"Archs": "VGAM.so.dSYM",
"RemoteType": "standard",
"RemotePkgRef": "VGAM",
"RemoteRef": "VGAM",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.1-13"
}
},
"abind": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "abind",
"Version": "1.4-8",
"Date": "2024-09-08",
"Title": "Combine Multidimensional Arrays",
"Authors@R": "c(person(\"Tony\", \"Plate\", email = \"tplate@acm.org\", role = c(\"aut\", \"cre\")), person(\"Richard\", \"Heiberger\", role = c(\"aut\")))",
"Maintainer": "Tony Plate <tplate@acm.org>",
"Description": "Combine multidimensional arrays into a single array.\n This is a generalization of 'cbind' and 'rbind'. Works with\n vectors, matrices, and higher-dimensional arrays (aka tensors).\n Also provides functions 'adrop', 'asub', and 'afill' for\n manipulating, extracting and replacing data in arrays.",
"Depends": "R (>= 1.5.0)",
"Imports": "methods, utils",
"License": "MIT + file LICENSE",
"NeedsCompilation": "no",
"Packaged": "2024-09-11 21:58:20 UTC; tap",
"Author": "Tony Plate [aut, cre],\n Richard Heiberger [aut]",
"Repository": "CRAN",
"Date/Publication": "2024-09-12 17:40:54 UTC",
"Built": "R 4.5.0; ; 2025-03-31 21:45:01 UTC; unix",
"RemoteType": "standard",
"RemotePkgRef": "abind",
"RemoteRef": "abind",
"RemoteRepos": "https://cran.rstudio.com",
"RemoteSha": "1.4-8"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "askpass",
"Type": "Package",
"Title": "Password Entry Utilities for R, Git, and SSH",
"Version": "1.2.1",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"jeroenooms@gmail.com\", 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://r-lib.r-universe.dev/askpass",
"BugReports": "https://github.com/r-lib/askpass/issues",
"Encoding": "UTF-8",
"Imports": "sys (>= 2.1)",
"RoxygenNote": "7.2.3",
"Suggests": "testthat",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2024-10-03 14:12:09 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <jeroenooms@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2024-10-04 07:20:03 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-04-01 06:33:14 UTC; unix",
"Archs": "askpass.so.dSYM"
}
},
"backports": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "backports",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Version": "1.5.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(\"Duncan\", \"Murdoch\", NULL, \"murdoch.duncan@gmail.com\",\n role = c(\"aut\")),\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.3.1",
"Packaged": "2024-05-23 11:56:25 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\n Duncan Murdoch [aut],\n R Core Team [aut]",
"Repository": "CRAN",
"Date/Publication": "2024-05-23 12:30:02 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-03-31 21:47:05 UTC; unix",
"Archs": "backports.so.dSYM"
}
},
"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.5.0; aarch64-apple-darwin20; 2025-03-31 21:43:03 UTC; unix",
"Archs": "base64enc.so.dSYM"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Version": "4.6.0",
"Authors@R": "c(\n person(\"Michael\", \"Chirico\", email = \"MichaelChirico4@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Jens\", \"Oehlschlägel\", role = \"aut\"),\n person(\"Brian\", \"Ripley\", role = \"ctb\")\n )",
"Depends": "R (>= 3.4.0)",
"Suggests": "testthat (>= 3.0.0), roxygen2, knitr, markdown, 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/r-lib/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.3.2",
"Config/testthat/edition": "3",
"NeedsCompilation": "yes",
"Packaged": "2025-03-05 07:18:45 UTC; michael",
"Author": "Michael Chirico [aut, cre],\n Jens Oehlschlägel [aut],\n Brian Ripley [ctb]",
"Maintainer": "Michael Chirico <MichaelChirico4@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2025-03-06 10:50:01 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-03-31 21:46:07 UTC; unix",
"Archs": "bit.so.dSYM"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit64",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "4.6.0-1",
"Authors@R": "c(\n person(\"Michael\", \"Chirico\", email = \"michaelchirico4@gmail.com\", role = c(\"aut\", \"cre\")),\n person(\"Jens\", \"Oehlschlägel\", role = \"aut\"),\n person(\"Leonardo\", \"Silvestri\", role = \"ctb\"),\n person(\"Ofek\", \"Shilon\", role = \"ctb\")\n )",
"Depends": "R (>= 3.4.0), bit (>= 4.0.0)",
"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/r-lib/bit64",
"Encoding": "UTF-8",
"Imports": "graphics, methods, stats, utils",
"Suggests": "testthat (>= 3.0.3), withr",
"Config/testthat/edition": "3",
"Config/needs/development": "testthat",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "yes",
"Packaged": "2025-01-16 14:04:20 UTC; michael",
"Author": "Michael Chirico [aut, cre],\n Jens Oehlschlägel [aut],\n Leonardo Silvestri [ctb],\n Ofek Shilon [ctb]",
"Maintainer": "Michael Chirico <michaelchirico4@gmail.com>",
"Repository": "CRAN",
"Date/Publication": "2025-01-16 16:00:07 UTC",
"Built": "R 4.5.0; aarch64-apple-darwin20; 2025-04-01 06:32:47 UTC; unix",
"Archs": "bit64.so.dSYM"
}
},
"bitops": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bitops",
"Version": "1.0-9",
"Date": "2024-10-03",
"Authors@R": "c(\n person(\"Steve\", \"Dutky\", role = \"aut\", email = \"sdutky@terpalum.umd.edu\",\n \t comment = \"S original; then (after MM's port) revised and modified\"),\n person(\"Martin\", \"Maechler\", role = c(\"cre\", \"aut\"), email = \"maechler@stat.math.ethz.ch\",\n\t comment = c(\"Initial R port; tweaks\", ORCID = \"0000-0002-8685-9910\")))",
"Title": "Bitwise Operations",
"Description": "Functions for bitwise operations on integer vectors.",
"License": "GPL (>= 2)",
"URL": "https://github.com/mmaechler/R-bitops",