-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
5980 lines (5980 loc) · 512 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 1,
"locale": "en_US",
"platform": "4.2.2",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "BH",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Version": "1.84.0-0",
"Date": "2024-01-09",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "Boost provides free peer-reviewed portable C++ source \n libraries. A large part of Boost is provided as C++ template code\n which is resolved entirely at compile-time without linking. This \n package aims to provide the most useful subset of Boost libraries \n for template use among CRAN packages. By placing these libraries in \n this package, we offer a more efficient distribution system for CRAN \n as replication of this code in the sources of other packages is \n avoided. As of release 1.84.0-0, the following Boost libraries are\n included: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast'\n 'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config'\n 'container' 'date_time' 'detail' 'dynamic_bitset' 'exception'\n 'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap'\n 'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams'\n 'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision'\n 'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process'\n 'propery_tree' 'qvm' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort'\n 'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'url' 'utility'\n 'uuid'.",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/bh,\nhttps://dirk.eddelbuettel.com/code/bh.html",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Packaged": "2024-01-09 13:19:22 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-01-10 11:53:35 UTC",
"Built": "R 4.2.3; ; 2024-01-13 00:52:16 UTC; windows"
}
},
"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 = \"[email protected]\", 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-04 05:03:17 UTC",
"Built": "R 4.2.3; ; 2024-04-24 02:32:22 UTC; windows"
}
},
"Deriv": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Deriv",
"Type": "Package",
"Title": "Symbolic Differentiation",
"Version": "4.1.3",
"Date": "2021-02-24",
"Authors@R": "c(person(given=\"Andrew\", family=\"Clausen\", role=\"aut\"),\n person(given=\"Serguei\", family=\"Sokol\", role=c(\"aut\", \"cre\"),\n email=\"[email protected]\", comment = c(ORCID = \"0000-0002-5674-3327\")),\n person(given=\"Andreas\", family=\"Rappold\", role=\"ctb\", email=\"[email protected]\"))",
"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",
"BugReports": "https://github.com/sgsokol/Deriv/issues",
"RoxygenNote": "7.1.0",
"Imports": "methods",
"NeedsCompilation": "no",
"Packaged": "2021-02-24 15:25:52 UTC; sokol",
"Author": "Andrew Clausen [aut],\n Serguei Sokol [aut, cre] (<https://orcid.org/0000-0002-5674-3327>),\n Andreas Rappold [ctb]",
"Maintainer": "Serguei Sokol <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-02-24 17:00:05 UTC",
"Built": "R 4.2.3; ; 2024-04-24 00:34:50 UTC; windows"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-60",
"Date": "2023-05-02",
"Revision": "$Rev: 3621 $",
"Depends": "R (>= 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 = \"[email protected]\"),\n\t person(\"Bill\", \"Venables\", role = \"ctb\"),\n\t person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\n\t person(\"Kurt\", \"Hornik\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"Albrecht\", \"Gebhardt\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"David\", \"Firth\", role = \"ctb\"))",
"Description": "Functions and datasets to support Venables and Ripley,\n \"Modern Applied Statistics with S\" (4th edition, 2002).",
"Title": "Support Functions and Datasets for Venables and Ripley's MASS",
"LazyData": "yes",
"ByteCompile": "yes",
"License": "GPL-2 | GPL-3",
"URL": "http://www.stats.ox.ac.uk/pub/MASS4/",
"Contact": "<[email protected]>",
"NeedsCompilation": "yes",
"Packaged": "2023-05-02 16:42:41 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\n Bill Venables [ctb],\n Douglas M. Bates [ctb],\n Kurt Hornik [trl] (partial port ca 1998),\n Albrecht Gebhardt [trl] (partial port ca 1998),\n David Firth [ctb]",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-05-04 07:32:21 UTC",
"Built": "R 4.2.2; x86_64-w64-mingw32; 2024-09-08 05:20:50 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"MESS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MESS",
"Type": "Package",
"Title": "Miscellaneous Esoteric Statistical Scripts",
"Version": "0.5.12",
"Date": "2023-07-21",
"Authors@R": "c(person(given=\"Claus Thorn\", family=\"Ekstrøm\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(given=\"Niels Aske Lundtorp\", family=\"Olsen\", role=c(\"ctb\"), email=\"[email protected]\"))",
"Maintainer": "Claus Thorn Ekstrøm <[email protected]>",
"Depends": "R (>= 3.5)",
"Imports": "MASS, Matrix, Rcpp, clipr, geepack, geeM, ggplot2, ggformula,\nglmnet, kinship2, methods, mvtnorm, parallel",
"LinkingTo": "Rcpp, RcppArmadillo",
"Suggests": "knitr, lme4, magrittr, rmarkdown, testthat",
"Description": "A mixed collection of useful and semi-useful diverse\n statistical functions, some of which may even be referenced in\n The R Primer book.",
"URL": "https://github.com/ekstroem/MESS",
"BugReports": "https://github.com/ekstroem/MESS/issues",
"Encoding": "UTF-8",
"ByteCompile": "true",
"License": "GPL-2",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-08-20 18:07:44 UTC; ekstrom",
"Author": "Claus Thorn Ekstrøm [aut, cre],\n Niels Aske Lundtorp Olsen [ctb]",
"Repository": "CRAN",
"Date/Publication": "2023-08-20 22:52:48 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-24 03:12:22 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Matrix",
"Version": "1.6-0",
"Date": "2023-06-30",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Description": "A rich hierarchy of sparse and dense matrix classes,\n\tincluding general, triangular, symmetric, 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": "[email protected]",
"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 = \"[email protected]\",\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, notably CHOLMOD and AMD\",\n\t \"collaborators listed in dir(pattern=\\\"^[A-Z]+[.]txt$\\\", full.names=TRUE, system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"))\")),\n\t person(\"Jens\", \"Oehlschlägel\", role = \"ctb\",\n\t comment = \"initial nearPD()\"),\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(\"R Core Team\", role = \"ctb\",\n\t comment = \"base R's matrix implementation\"))",
"Depends": "R (>= 3.5.0), methods",
"Imports": "grDevices, graphics, grid, lattice, stats, utils",
"Suggests": "MASS, datasets, sfsmisc",
"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": "2023-07-03 13:28:32 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, notably CHOLMOD and AMD, collaborators\n listed in dir(pattern=\"^[A-Z]+[.]txt$\", full.names=TRUE,\n system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"))),\n Jens Oehlschlägel [ctb] (initial nearPD()),\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 R Core Team [ctb] (base R's matrix implementation)",
"Maintainer": "Martin Maechler <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-07-08 11:00:09 UTC",
"Built": "R 4.2.2; x86_64-w64-mingw32; 2024-09-08 05:22:13 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"MatrixModels": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "MatrixModels",
"Version": "0.5-3",
"Date": "2023-11-06",
"Title": "Modelling with Sparse and Dense Matrices",
"Author": "Douglas Bates <[email protected]> and Martin Maechler <[email protected]>",
"Maintainer": "Martin Maechler <[email protected]>",
"Contact": "[email protected]",
"Description": "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)",
"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": "2023-11-06 13:43:15 UTC; maechler",
"Repository": "CRAN",
"Date/Publication": "2023-11-06 14:30:02 UTC",
"Built": "R 4.2.3; ; 2024-04-24 01:24:43 UTC; windows"
}
},
"R.cache": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "R.cache",
"Version": "0.16.0",
"Depends": "R (>= 2.14.0)",
"Imports": "utils, R.methodsS3 (>= 1.8.1), R.oo (>= 1.24.0), R.utils (>=\n2.10.1), digest (>= 0.6.13)",
"Title": "Fast and Light-Weight Caching (Memoization) of Objects and\nResults to Speed Up Computations",
"Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"))",
"Author": "Henrik Bengtsson [aut, cre, cph]",
"Maintainer": "Henrik Bengtsson <[email protected]>",
"Description": "Memoization can be used to speed up repetitive and computational expensive function calls. The first time a function that implements memoization is called the results are stored in a cache memory. The next time the function is called with the same set of parameters, the results are momentarily retrieved from the cache avoiding repeating the calculations. With this package, any R object can be cached in a key-value storage where the key can be an arbitrary set of R objects. The cache memory is persistent (on the file system).",
"License": "LGPL (>= 2.1)",
"LazyLoad": "TRUE",
"URL": "https://github.com/HenrikBengtsson/R.cache",
"BugReports": "https://github.com/HenrikBengtsson/R.cache/issues",
"RoxygenNote": "7.2.1",
"NeedsCompilation": "no",
"Packaged": "2022-07-21 13:19:33 UTC; hb",
"Repository": "CRAN",
"Date/Publication": "2022-07-21 16:20:02 UTC",
"Built": "R 4.2.3; ; 2024-04-24 00:34:46 UTC; windows"
}
},
"R.methodsS3": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "R.methodsS3",
"Version": "1.8.2",
"Depends": "R (>= 2.13.0)",
"Imports": "utils",
"Suggests": "codetools",
"Title": "S3 Methods Simplified",
"Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"))",
"Author": "Henrik Bengtsson [aut, cre, cph]",
"Maintainer": "Henrik Bengtsson <[email protected]>",
"Description": "Methods that simplify the setup of S3 generic functions and S3 methods. Major effort has been made in making definition of methods as simple as possible with a minimum of maintenance for package developers. For example, generic functions are created automatically, if missing, and naming conflict are automatically solved, if possible. The method setMethodS3() is a good start for those who in the future may want to migrate to S4. This is a cross-platform package implemented in pure R that generates standard S3 methods.",
"License": "LGPL (>= 2.1)",
"LazyLoad": "TRUE",
"URL": "https://github.com/HenrikBengtsson/R.methodsS3",
"BugReports": "https://github.com/HenrikBengtsson/R.methodsS3/issues",
"NeedsCompilation": "no",
"Packaged": "2022-06-13 18:23:35 UTC; hb",
"Repository": "CRAN",
"Date/Publication": "2022-06-13 22:00:14 UTC",
"Built": "R 4.2.3; ; 2024-04-08 01:27:08 UTC; windows"
}
},
"R.oo": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "R.oo",
"Version": "1.26.0",
"Depends": "R (>= 2.13.0), R.methodsS3 (>= 1.8.2)",
"Imports": "methods, utils",
"Suggests": "tools",
"Title": "R Object-Oriented Programming with or without References",
"Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"))",
"Author": "Henrik Bengtsson [aut, cre, cph]",
"Maintainer": "Henrik Bengtsson <[email protected]>",
"Description": "Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.",
"License": "LGPL (>= 2.1)",
"LazyLoad": "TRUE",
"URL": "https://github.com/HenrikBengtsson/R.oo",
"BugReports": "https://github.com/HenrikBengtsson/R.oo/issues",
"NeedsCompilation": "no",
"Packaged": "2024-01-24 02:17:13 UTC; henrik",
"Repository": "CRAN",
"Date/Publication": "2024-01-24 05:12:50 UTC",
"Built": "R 4.2.3; ; 2024-04-08 01:58:05 UTC; windows"
}
},
"R.utils": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "R.utils",
"Version": "2.12.3",
"Depends": "R (>= 2.14.0), R.oo",
"Imports": "methods, utils, tools, R.methodsS3",
"Suggests": "datasets, digest (>= 0.6.10)",
"Title": "Various Programming Utilities",
"Authors@R": "c(person(\"Henrik\", \"Bengtsson\", role=c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"))",
"Author": "Henrik Bengtsson [aut, cre, cph]",
"Maintainer": "Henrik Bengtsson <[email protected]>",
"Description": "Utility functions useful when programming and developing R packages.",
"License": "LGPL (>= 2.1)",
"LazyLoad": "TRUE",
"URL": "https://henrikbengtsson.github.io/R.utils/,\nhttps://github.com/HenrikBengtsson/R.utils",
"BugReports": "https://github.com/HenrikBengtsson/R.utils/issues",
"NeedsCompilation": "no",
"Packaged": "2023-11-17 05:13:25 UTC; henrik",
"Repository": "CRAN",
"Date/Publication": "2023-11-18 01:00:02 UTC",
"Built": "R 4.2.3; ; 2024-04-24 00:34:19 UTC; windows"
}
},
"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 = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different packages.",
"Depends": "R (>= 3.0)",
"Suggests": "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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.2.3; ; 2023-10-13 00:56:40 UTC; windows"
}
},
"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 = \"[email protected]\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <[email protected]>",
"Depends": "R (>= 2.0.0)",
"Description": "Provides color schemes for maps (and other graphics)\n designed by Cynthia Brewer as described at http://colorbrewer2.org.",
"License": "Apache License 2.0",
"Packaged": "2022-04-03 10:26:20 UTC; neuwirth",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2022-04-03 19:20:13 UTC",
"Built": "R 4.2.0; ; 2022-04-24 01:19:40 UTC; windows"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.11",
"Date": "2023-07-03",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about 'Rcpp' is provided by several vignettes included in this package, via the\n 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and\n Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,\n <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018,\n <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Imports": "methods, utils",
"Suggests": "tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)",
"URL": "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": "[email protected]",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-07-03 15:56:55 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2023-07-06 07:33:14 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2023-10-13 00:56:41 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"RcppArmadillo": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "RcppArmadillo",
"Type": "Package",
"Title": "'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra\nLibrary",
"Version": "0.12.8.2.1",
"Date": "2024-04-15",
"Author": "Dirk Eddelbuettel, Romain Francois, Doug Bates, Binxiang Ni, and Conrad Sanderson",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "'Armadillo' is a templated C++ linear algebra library (by Conrad\n Sanderson) that aims towards a good balance between speed and ease of\n use. Integer, floating point and complex numbers are supported, as\n well as a subset of trigonometric and statistics functions. Various\n matrix decompositions are provided through optional integration with\n LAPACK and ATLAS libraries. The 'RcppArmadillo' package includes the\n header files from the templated 'Armadillo' library. Thus users do\n not need to install 'Armadillo' itself in order to use\n 'RcppArmadillo'. From release 7.800.0 on, 'Armadillo' is licensed\n under Apache License 2; previous releases were under licensed as MPL\n 2.0 from version 3.800.0 onwards and LGPL-3 prior to that;\n 'RcppArmadillo' (the 'Rcpp' bindings/bridge to Armadillo) is licensed\n under the GNU GPL version 2 or later, as is the rest of 'Rcpp'.",
"License": "GPL (>= 2)",
"LazyLoad": "yes",
"Depends": "R (>= 3.3.0)",
"LinkingTo": "Rcpp",
"Imports": "Rcpp (>= 0.11.0), stats, utils, methods",
"Suggests": "tinytest, Matrix (>= 1.3.0), pkgKitten, reticulate, slam",
"URL": "https://github.com/RcppCore/RcppArmadillo,\nhttps://dirk.eddelbuettel.com/code/rcpp.armadillo.html",
"BugReports": "https://github.com/RcppCore/RcppArmadillo/issues",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2024-04-15 16:25:30 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-04-15 21:30:17 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-24 00:58:18 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"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.0",
"Date": "2024-02-28",
"Author": "Douglas Bates, Dirk Eddelbuettel, Romain Francois, and Yixuan Qiu;\n the authors of Eigen for the included version of Eigen",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"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-02-28 13:13:53 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2024-02-28 19:10:20 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-24 00:58:22 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"Rdpack": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "Rdpack",
"Type": "Package",
"Title": "Update and Manipulate Rd Documentation Objects",
"Version": "2.6.1",
"Authors@R": "c( person(given = c(\"Georgi\", \"N.\"),\n family = \"Boshnakov\", \n role = c(\"aut\", \"cre\"), \n email = \"[email protected]\"), \n\t person(given = \"Duncan\", \n\t family = \"Murdoch\", \n\t role = \"ctb\", email = \"[email protected]\") )",
"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": "2024-08-06 10:24:30 UTC; georgi",
"Author": "Georgi N. Boshnakov [aut, cre],\n Duncan Murdoch [ctb]",
"Maintainer": "Georgi N. Boshnakov <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-08-06 19:06:08 UTC",
"Built": "R 4.2.2; ; 2024-09-07 03:38:49 UTC; windows"
}
},
"SparseM": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "SparseM",
"Version": "1.81",
"Authors@R": "c(\n person(\"Roger\", \"Koenker\", role = c(\"cre\",\"aut\"), email = \"[email protected]\"),\n person(c(\"Pin\", \"Tian\"), \"Ng\", role = c(\"ctb\"),\n comment = \"Contributions to Sparse QR code\", email = \"[email protected]\"),\n person(\"Yousef\", \"Saad\", role = c(\"ctb\"),\n comment = \"author of sparskit2\"),\n person(\"Ben\", \"Shaby\", role = c(\"ctb\"),\n\tcomment = \"author of chol2csr\"))",
"Maintainer": "Roger Koenker <[email protected]>",
"Depends": "R (>= 2.15), methods",
"Imports": "graphics, stats, utils",
"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)",
"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",
"Repository": "CRAN",
"Packaged": "2021-02-18 11:10:52 UTC; roger",
"Date/Publication": "2021-02-18 12:00:02 UTC",
"Built": "R 4.2.0; x86_64-w64-mingw32; 2022-04-24 01:19:58 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"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.11",
"Date": "2024-04-02",
"Authors@R": "c(person(\"Kasper\",\"Kristensen\",role=c(\"aut\",\"cre\",\"cph\"),email=\"[email protected]\"),\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 <[email protected]>",
"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": "2024-04-02 07:17:22 UTC; kaskr",
"Repository": "CRAN",
"Date/Publication": "2024-04-03 04:32:57 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-24 01:26:01 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"abind": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "abind",
"Version": "1.4-5",
"Date": "2016-06-19",
"Title": "Combine Multidimensional Arrays",
"Author": "Tony Plate <[email protected]> and Richard Heiberger",
"Maintainer": "Tony Plate <[email protected]>",
"Description": "Combine multidimensional arrays into a single array.\n This is a generalization of 'cbind' and 'rbind'. Works with\n vectors, matrices, and higher-dimensional arrays. Also\n provides functions 'adrop', 'asub', and 'afill' for manipulating,\n extracting and replacing data in arrays.",
"Depends": "R (>= 1.5.0)",
"Imports": "methods, utils",
"License": "LGPL (>= 2)",
"NeedsCompilation": "no",
"Packaged": "2016-07-19 15:24:25 UTC; tap",
"Repository": "CRAN",
"Date/Publication": "2016-07-21 19:18:05",
"Built": "R 4.2.0; ; 2022-04-24 01:19:57 UTC; windows"
}
},
"anytime": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "anytime",
"Type": "Package",
"Title": "Anything to 'POSIXct' or 'Date' Converter",
"Version": "0.3.9",
"Date": "2020-08-26",
"Author": "Dirk Eddelbuettel",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "Convert input in any one of character, integer, numeric, factor,\n or ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\n predefined formats, and relying on Boost facilities for date and time parsing.",
"URL": "http://dirk.eddelbuettel.com/code/anytime.html",
"BugReports": "https://github.com/eddelbuettel/anytime/issues",
"License": "GPL (>= 2)",
"Encoding": "UTF-8",
"Depends": "R (>= 3.2.0)",
"Imports": "Rcpp (>= 0.12.9)",
"LinkingTo": "Rcpp (>= 0.12.9), BH",
"Suggests": "tinytest (>= 1.0.0), gettz",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "yes",
"Packaged": "2020-08-26 17:46:45.898451 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-08-27 11:40:21 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-24 00:34:40 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"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.0",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a \n passphrase, for example to authenticate with a server or read a protected key.\n Includes native programs for MacOS and Windows, hence no 'tcltk' is required. \n Password entry can be invoked in two different ways: directly from R via the \n askpass() function, or indirectly as password-entry back-end for 'ssh-agent' \n or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\n Thereby the user can be prompted for credentials or a passphrase if needed \n when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/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": "2023-09-03 19:16:12 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-09-03 20:00:02 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2023-10-13 01:22:00 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"assertthat": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "assertthat",
"Title": "Easy Pre and Post Assertions",
"Version": "0.2.1",
"Authors@R": "\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\"))",
"Description": "An extension to stopifnot() that makes it easy to declare \n the pre and post conditions that you code should satisfy, while also \n producing friendly error messages so that your users know what's gone\n wrong.",
"License": "GPL-3",
"Imports": "tools",
"Suggests": "testthat, covr",
"RoxygenNote": "6.0.1",
"Collate": "'assert-that.r' 'on-failure.r' 'assertions-file.r'\n'assertions-scalar.R' 'assertions.r' 'base.r'\n'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r'\n'utils.r' 'validate-that.R'",
"NeedsCompilation": "no",
"Packaged": "2019-03-21 13:11:01 UTC; hadley",
"Author": "Hadley Wickham [aut, cre]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-21 14:53:46 UTC",
"Built": "R 4.2.3; ; 2024-04-24 00:33:41 UTC; windows"
}
},
"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.4.1",
"Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"[email protected]\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"R Core Team\", role = \"aut\"))",
"Maintainer": "Michel Lang <[email protected]>",
"Description": "\n Functions introduced or changed since R v3.0.0 are re-implemented in this\n package. The backports are conditionally exported in order to let R resolve\n the function name to either the implemented backport, or the respective base\n version, if available. Package developers can make use of new functions or\n arguments by selectively importing specific backports to\n support older installations.",
"URL": "https://github.com/r-lib/backports",
"BugReports": "https://github.com/r-lib/backports/issues",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Depends": "R (>= 3.0.0)",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Packaged": "2021-12-13 10:49:30 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\n R Core Team [aut]",
"Repository": "CRAN",
"Date/Publication": "2021-12-13 11:30:02 UTC",
"Built": "R 4.2.0; x86_64-w64-mingw32; 2022-04-24 01:19:58 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"Depends": "R (>= 2.9.0)",
"Enhances": "png",
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Packaged": "2015-02-04 20:31:00 UTC; svnuser",
"Repository": "CRAN",
"Date/Publication": "2015-07-28 08:03:37",
"Built": "R 4.2.0; x86_64-w64-mingw32; 2022-04-24 01:19:39 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit",
"Type": "Package",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Version": "4.0.5",
"Date": "2022-11-13",
"Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 2.9.2)",
"Suggests": "testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)",
"Description": "Provided are classes for boolean and skewed boolean vectors,\n fast boolean methods, fast unique and non-unique integer sorting,\n fast set operations on sorted and unsorted sets of integers, and\n foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/truecluster/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.2.0",
"NeedsCompilation": "yes",
"Packaged": "2022-11-13 21:22:09 UTC; jo",
"Repository": "CRAN",
"Date/Publication": "2022-11-15 21:20:16 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-24 00:33:42 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bit64",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "4.0.5",
"Date": "2020-08-29",
"Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats",
"Description": "\n Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. \n These are useful for handling database keys and exact counting in +-2^63.\n WARNING: do not use them as replacement for 32bit integers, integer64 are not\n supported for subscripting by R-core and they have different semantics when \n combined with double, e.g. integer64 + double => integer64. \n Class integer64 can be used in vectors, matrices, arrays and data.frames. \n Methods are available for coercion from and to logicals, integers, doubles, \n characters and factors as well as many elementwise and summary functions. \n Many fast algorithmic operations such as 'match' and 'order' support inter-\n active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/truecluster/bit64",
"Encoding": "UTF-8",
"Repository": "CRAN",
"Repository/R-Forge/Project": "ff",
"Repository/R-Forge/Revision": "177",
"Repository/R-Forge/DateTimeStamp": "2018-08-17 17:45:18",
"Date/Publication": "2020-08-30 07:20:02 UTC",
"NeedsCompilation": "yes",
"Packaged": "2020-08-29 10:56:45 UTC; jo",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-24 00:58:23 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"boot": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "boot",
"Priority": "recommended",
"Version": "1.3-31",
"Date": "2024-08-28",
"Authors@R": "c(person(\"Angelo\", \"Canty\", role = \"aut\",\n\t email = \"[email protected]\", \n comment = \"author of original code for S\"),\n person(\"Brian\", \"Ripley\", role = c(\"aut\", \"trl\"),\n email = \"[email protected]\",\n\t\t comment = \"conversion to R, maintainer 1999--2022, author of parallel support\"),\n person(\"Alessandra R.\", \"Brazzale\", role = c(\"ctb\", \"cre\"),\n email = \"[email protected]\",\n\t\t comment = \"minor bug fixes\"))",
"Maintainer": "Alessandra R. Brazzale <[email protected]>",
"Note": "Maintainers are not available to give advice on using a package\nthey did not author.",
"Description": "Functions and datasets for bootstrapping from the\n book \"Bootstrap Methods and Their Application\" by A. C. Davison and \n D. V. Hinkley (1997, CUP), originally written by Angelo Canty for S.",
"Title": "Bootstrap Functions (Originally by Angelo Canty for S)",
"Depends": "R (>= 3.0.0), graphics, stats",
"Suggests": "MASS, survival",
"LazyData": "yes",
"ByteCompile": "yes",
"License": "Unlimited",
"NeedsCompilation": "no",
"Packaged": "2024-08-28 08:17:05 UTC; brazzale",
"Author": "Angelo Canty [aut] (author of original code for S),\n Brian Ripley [aut, trl] (conversion to R, maintainer 1999--2022, author\n of parallel support),\n Alessandra R. Brazzale [ctb, cre] (minor bug fixes)",
"Repository": "CRAN",
"Date/Publication": "2024-08-28 13:20:02 UTC",
"Built": "R 4.2.2; ; 2024-09-08 04:36:52 UTC; windows"
}
},
"brio": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "brio",
"Title": "Basic R Input Output",
"Version": "1.1.5",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "Functions to handle basic input output, these functions\n always read and write UTF-8 (8-bit Unicode Transformation Format)\n files and provide more explicit control over line endings.",
"License": "MIT + file LICENSE",
"URL": "https://brio.r-lib.org, https://github.com/r-lib/brio",
"BugReports": "https://github.com/r-lib/brio/issues",
"Depends": "R (>= 3.6)",
"Suggests": "covr, testthat (>= 3.0.0)",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2024-04-24 18:51:29 UTC; gaborcsardi",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Gábor Csárdi [aut, cre],\n Posit Software, PBC [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-04-24 19:20:07 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2024-04-25 09:17:58 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"broom": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Type": "Package",
"Package": "broom",
"Title": "Convert Statistical Objects into Tidy Tibbles",
"Version": "1.0.6",
"Authors@R": "\n c(person(given = \"David\",\n family = \"Robinson\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Alex\",\n family = \"Hayes\",\n role = \"aut\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4985-5160\")),\n person(given = \"Simon\",\n family = \"Couch\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-5676-5107\")),\n person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(given = \"Indrajeet\",\n family = \"Patil\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-1995-6531\")),\n person(given = \"Derek\",\n family = \"Chiu\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthieu\",\n family = \"Gomez\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Boris\",\n family = \"Demeshev\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Dieter\",\n family = \"Menne\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Benjamin\",\n family = \"Nutter\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luke\",\n family = \"Johnston\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Bolker\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Francois\",\n family = \"Briatte\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jeffrey\",\n family = \"Arnold\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jonah\",\n family = \"Gabry\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luciano\",\n family = \"Selzer\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Gavin\",\n family = \"Simpson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jens\",\n family = \"Preussner\",\n role = \"ctb\",\n email = \" [email protected]\"),\n person(given = \"Jay\",\n family = \"Hesselberth\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthew\",\n family = \"Lincoln\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Alessandro\",\n family = \"Gasparini\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Lukasz\",\n family = \"Komsta\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Frederick\",\n family = \"Novometsky\",\n role = \"ctb\"),\n person(given = \"Wilson\",\n family = \"Freitas\",\n role = \"ctb\"),\n person(given = \"Michelle\",\n family = \"Evans\",\n role = \"ctb\"),\n person(given = \"Jason Cory\",\n family = \"Brunson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Simon\",\n family = \"Jackson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Whalley\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Karissa\",\n family = \"Whiting\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Yves\",\n family = \"Rosseel\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Michael\",\n family = \"Kuehn\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jorge\",\n family = \"Cimentada\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Erle\",\n family = \"Holgersen\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Karl\",\n family = \"Dunkle Werner\",\n role = \"ctb\",\n comment = c(ORCID = \"0000-0003-0523-7309\")),\n person(given = \"Ethan\",\n family = \"Christensen\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Steven\",\n family = \"Pav\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Paul\",\n family = \"PJ\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Patrick\",\n family = \"Kennedy\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Lily\",\n family = \"Medina\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Brian\",\n family = \"Fannin\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jason\",\n family = \"Muhlenkamp\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matt\",\n family = \"Lehman\",\n role = \"ctb\"),\n person(given = \"Bill\",\n family = \"Denney\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-5759-428X\")),\n person(given = \"Nic\",\n family = \"Crane\",\n role = \"ctb\"),\n person(given = \"Andrew\",\n family = \"Bates\",\n role = \"ctb\"),\n person(given = \"Vincent\",\n family = \"Arel-Bundock\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-2042-7063\")),\n person(given = \"Hideaki\",\n family = \"Hayashi\",\n role = \"ctb\"),\n person(given = \"Luis\",\n family = \"Tobalina\",\n role = \"ctb\"),\n person(given = \"Annie\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Wei Yang\",\n family = \"Tham\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Abby\",\n family = \"Smith\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3207-0375\")),\n person(given = \"Jasper\",\n family = \"Cooper\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-8639-3188\")),\n person(given = \"E Auden\",\n family = \"Krauska\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-1466-5850\")),\n person(given = \"Alex\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Malcolm\",\n family = \"Barrett\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0299-5825\")),\n person(given = \"Charles\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-9978-011X\")),\n person(given = \"Jared\",\n family = \"Wilber\",\n role = \"ctb\"),\n person(given = \"Vilmantas\",\n family = \"Gegzna\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-9500-5167\")),\n person(given = \"Eduard\",\n family = \"Szoecs\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Frederik\",\n family = \"Aust\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(given = \"Angus\",\n family = \"Moore\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Nick\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Marius\",\n family = \"Barth\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3421-6665\")),\n person(given = \"Bruna\",\n family = \"Wundervald\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-8163-220X\")),\n person(given = \"Joyce\",\n family = \"Cahoon\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7217-4702\")),\n person(given = \"Grant\",\n family = \"McDermott\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7883-8573\")),\n person(given = \"Kevin\",\n family = \"Zarca\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Shiro\",\n family = \"Kuriwaki\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-5687-2647\")),\n person(given = \"Lukas\",\n family = \"Wallrich\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-2121-5177\")),\n person(given = \"James\",\n family = \"Martherus\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-8285-3300\")),\n person(given = \"Chuliang\",\n family = \"Xiao\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-8466-9398\")),\n person(given = \"Joseph\",\n family = \"Larmarange\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Max\",\n family = \"Kuhn\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Michal\",\n family = \"Bojanowski\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hakon\",\n family = \"Malmedal\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\"),\n person(given = \"Sergio\",\n family = \"Oller\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luke\",\n family = \"Sonnet\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jim\",\n family = \"Hester\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Bernie\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9190-6032\")),\n person(given = \"Mara\",\n family = \"Averick\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Aaron\",\n family = \"Jacobs\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Andreas\",\n family = \"Bender\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Sven\",\n family = \"Templer\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Paul-Christian\",\n family = \"Buerkner\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthew\",\n family = \"Kay\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Erwan\",\n family = \"Le Pennec\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Johan\",\n family = \"Junkka\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hao\",\n family = \"Zhu\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Benjamin\",\n family = \"Soltoff\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Zoe\",\n family = \"Wilkinson Saldana\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Tyler\",\n family = \"Littlefield\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Charles T.\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Shabbh E.\",\n family = \"Banks\",\n role = \"ctb\"),\n person(given = \"Serina\",\n family = \"Robinson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Roger\",\n family = \"Bivand\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Riinu\",\n family = \"Ots\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Nicholas\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Nina\",\n family = \"Jakobsen\",\n role = \"ctb\"),\n person(given = \"Michael\",\n family = \"Weylandt\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Lisa\",\n family = \"Lendway\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Karl\",\n family = \"Hailperin\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Josue\",\n family = \"Rodriguez\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jenny\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Chris\",\n family = \"Jarvis\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Greg\",\n family = \"Macfarlane\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Brian\",\n family = \"Mannakee\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Drew\",\n family = \"Tyre\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Shreyas\",\n family = \"Singh\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Laurens\",\n family = \"Geffert\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hong\",\n family = \"Ooi\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Henrik\",\n family = \"Bengtsson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Eduard\",\n family = \"Szocs\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"David\",\n family = \"Hugh-Jones\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthieu\",\n family = \"Stigler\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hugo\",\n family = \"Tavares\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9373-2726\")),\n\t person(given = \"R. Willem\",\n family = \"Vervoort\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Brenton M.\",\n family = \"Wiernik\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Josh\",\n family = \"Yamamoto\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jasme\",\n family = \"Lee\",\n role = \"ctb\"),\n person(given = \"Taren\",\n family = \"Sanders\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4504-6008\")),\n person(given = \"Ilaria\",\n family = \"Prosdocimi\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-8565-094X\")),\n person(given = \"Daniel D.\",\n family = \"Sjoberg\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0862-2018\")),\n person(given = \"Alex\",\n family = \"Reinhart\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-6658-514X\")))",
"Description": "Summarizes key information about statistical\n objects in tidy tibbles. This makes it easy to report results, create\n plots and consistently work with large numbers of models at once.\n Broom provides three verbs that each provide different types of\n information about a model. tidy() summarizes information about model\n components such as coefficients of a regression. glance() reports\n information about an entire model, such as goodness of fit measures\n like AIC and BIC. augment() adds information about individual\n observations to a dataset, such as fitted values or influence\n measures.",
"License": "MIT + file LICENSE",
"URL": "https://broom.tidymodels.org/, https://github.com/tidymodels/broom",
"BugReports": "https://github.com/tidymodels/broom/issues",
"Depends": "R (>= 3.5)",
"Imports": "backports, dplyr (>= 1.0.0), generics (>= 0.0.2), glue,\nlifecycle, purrr, rlang, stringr, tibble (>= 3.0.0), tidyr (>=\n1.0.0)",
"Suggests": "AER, AUC, bbmle, betareg, biglm, binGroup, boot, btergm (>=\n1.10.6), car, carData, caret, cluster, cmprsk, coda, covr, drc,\ne1071, emmeans, epiR, ergm (>= 3.10.4), fixest (>= 0.9.0), gam\n(>= 1.15), gee, geepack, ggplot2, glmnet, glmnetUtils, gmm,\nHmisc, irlba, interp, joineRML, Kendall, knitr, ks, Lahman,\nlavaan, leaps, lfe, lm.beta, lme4, lmodel2, lmtest (>= 0.9.38),\nlsmeans, maps, MASS, mclust, mediation, metafor, mfx, mgcv,\nmlogit, modeldata, modeltests (>= 0.1.6), muhaz, multcomp,\nnetwork, nnet, orcutt (>= 2.2), ordinal, plm, poLCA, psych,\nquantreg, rmarkdown, robust, robustbase, rsample, sandwich,\nspdep (>= 1.1), spatialreg, speedglm, spelling, survey,\nsurvival (>= 3.6-4), systemfit, testthat (>= 2.1.0), tseries,\nvars, zoo",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"Language": "en-US",
"Collate": "'aaa-documentation-helper.R' 'null-and-default-tidiers.R'\n'aer-tidiers.R' 'auc-tidiers.R' 'base-tidiers.R'\n'bbmle-tidiers.R' 'betareg-tidiers.R' 'biglm-tidiers.R'\n'bingroup-tidiers.R' 'boot-tidiers.R' 'broom-package.R'\n'broom.R' 'btergm-tidiers.R' 'car-tidiers.R' 'caret-tidiers.R'\n'cluster-tidiers.R' 'cmprsk-tidiers.R' 'data-frame-tidiers.R'\n'deprecated-0-7-0.R' 'drc-tidiers.R' 'emmeans-tidiers.R'\n'epiR-tidiers.R' 'ergm-tidiers.R' 'fixest-tidiers.R'\n'gam-tidiers.R' 'geepack-tidiers.R'\n'glmnet-cv-glmnet-tidiers.R' 'glmnet-glmnet-tidiers.R'\n'gmm-tidiers.R' 'hmisc-tidiers.R' 'joinerml-tidiers.R'\n'kendall-tidiers.R' 'ks-tidiers.R' 'lavaan-tidiers.R'\n'leaps-tidiers.R' 'lfe-tidiers.R' 'list-irlba.R'\n'list-optim-tidiers.R' 'list-svd-tidiers.R' 'list-tidiers.R'\n'list-xyz-tidiers.R' 'lm-beta-tidiers.R' 'lmodel2-tidiers.R'\n'lmtest-tidiers.R' 'maps-tidiers.R' 'margins-tidiers.R'\n'mass-fitdistr-tidiers.R' 'mass-negbin-tidiers.R'\n'mass-polr-tidiers.R' 'mass-ridgelm-tidiers.R'\n'stats-lm-tidiers.R' 'mass-rlm-tidiers.R' 'mclust-tidiers.R'\n'mediation-tidiers.R' 'metafor-tidiers.R' 'mfx-tidiers.R'\n'mgcv-tidiers.R' 'mlogit-tidiers.R' 'muhaz-tidiers.R'\n'multcomp-tidiers.R' 'nnet-tidiers.R' 'nobs.R'\n'orcutt-tidiers.R' 'ordinal-clm-tidiers.R'\n'ordinal-clmm-tidiers.R' 'plm-tidiers.R' 'polca-tidiers.R'\n'psych-tidiers.R' 'stats-nls-tidiers.R'\n'quantreg-nlrq-tidiers.R' 'quantreg-rq-tidiers.R'\n'quantreg-rqs-tidiers.R' 'robust-glmrob-tidiers.R'\n'robust-lmrob-tidiers.R' 'robustbase-glmrob-tidiers.R'\n'robustbase-lmrob-tidiers.R' 'sp-tidiers.R' 'spdep-tidiers.R'\n'speedglm-speedglm-tidiers.R' 'speedglm-speedlm-tidiers.R'\n'stats-anova-tidiers.R' 'stats-arima-tidiers.R'\n'stats-decompose-tidiers.R' 'stats-factanal-tidiers.R'\n'stats-glm-tidiers.R' 'stats-htest-tidiers.R'\n'stats-kmeans-tidiers.R' 'stats-loess-tidiers.R'\n'stats-mlm-tidiers.R' 'stats-prcomp-tidiers.R'\n'stats-smooth.spline-tidiers.R' 'stats-summary-lm-tidiers.R'\n'stats-time-series-tidiers.R' 'survey-tidiers.R'\n'survival-aareg-tidiers.R' 'survival-cch-tidiers.R'\n'survival-coxph-tidiers.R' 'survival-pyears-tidiers.R'\n'survival-survdiff-tidiers.R' 'survival-survexp-tidiers.R'\n'survival-survfit-tidiers.R' 'survival-survreg-tidiers.R'\n'systemfit-tidiers.R' 'tseries-tidiers.R' 'utilities.R'\n'vars-tidiers.R' 'zoo-tidiers.R' 'zzz.R'",
"NeedsCompilation": "no",
"Packaged": "2024-05-16 15:07:03 UTC; simoncouch",
"Author": "David Robinson [aut],\n Alex Hayes [aut] (<https://orcid.org/0000-0002-4985-5160>),\n Simon Couch [aut, cre] (<https://orcid.org/0000-0001-5676-5107>),\n Posit Software, PBC [cph, fnd],\n Indrajeet Patil [ctb] (<https://orcid.org/0000-0003-1995-6531>),\n Derek Chiu [ctb],\n Matthieu Gomez [ctb],\n Boris Demeshev [ctb],\n Dieter Menne [ctb],\n Benjamin Nutter [ctb],\n Luke Johnston [ctb],\n Ben Bolker [ctb],\n Francois Briatte [ctb],\n Jeffrey Arnold [ctb],\n Jonah Gabry [ctb],\n Luciano Selzer [ctb],\n Gavin Simpson [ctb],\n Jens Preussner [ctb],\n Jay Hesselberth [ctb],\n Hadley Wickham [ctb],\n Matthew Lincoln [ctb],\n Alessandro Gasparini [ctb],\n Lukasz Komsta [ctb],\n Frederick Novometsky [ctb],\n Wilson Freitas [ctb],\n Michelle Evans [ctb],\n Jason Cory Brunson [ctb],\n Simon Jackson [ctb],\n Ben Whalley [ctb],\n Karissa Whiting [ctb],\n Yves Rosseel [ctb],\n Michael Kuehn [ctb],\n Jorge Cimentada [ctb],\n Erle Holgersen [ctb],\n Karl Dunkle Werner [ctb] (<https://orcid.org/0000-0003-0523-7309>),\n Ethan Christensen [ctb],\n Steven Pav [ctb],\n Paul PJ [ctb],\n Ben Schneider [ctb],\n Patrick Kennedy [ctb],\n Lily Medina [ctb],\n Brian Fannin [ctb],\n Jason Muhlenkamp [ctb],\n Matt Lehman [ctb],\n Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>),\n Nic Crane [ctb],\n Andrew Bates [ctb],\n Vincent Arel-Bundock [ctb] (<https://orcid.org/0000-0003-2042-7063>),\n Hideaki Hayashi [ctb],\n Luis Tobalina [ctb],\n Annie Wang [ctb],\n Wei Yang Tham [ctb],\n Clara Wang [ctb],\n Abby Smith [ctb] (<https://orcid.org/0000-0002-3207-0375>),\n Jasper Cooper [ctb] (<https://orcid.org/0000-0002-8639-3188>),\n E Auden Krauska [ctb] (<https://orcid.org/0000-0002-1466-5850>),\n Alex Wang [ctb],\n Malcolm Barrett [ctb] (<https://orcid.org/0000-0003-0299-5825>),\n Charles Gray [ctb] (<https://orcid.org/0000-0002-9978-011X>),\n Jared Wilber [ctb],\n Vilmantas Gegzna [ctb] (<https://orcid.org/0000-0002-9500-5167>),\n Eduard Szoecs [ctb],\n Frederik Aust [ctb] (<https://orcid.org/0000-0003-4900-788X>),\n Angus Moore [ctb],\n Nick Williams [ctb],\n Marius Barth [ctb] (<https://orcid.org/0000-0002-3421-6665>),\n Bruna Wundervald [ctb] (<https://orcid.org/0000-0001-8163-220X>),\n Joyce Cahoon [ctb] (<https://orcid.org/0000-0001-7217-4702>),\n Grant McDermott [ctb] (<https://orcid.org/0000-0001-7883-8573>),\n Kevin Zarca [ctb],\n Shiro Kuriwaki [ctb] (<https://orcid.org/0000-0002-5687-2647>),\n Lukas Wallrich [ctb] (<https://orcid.org/0000-0003-2121-5177>),\n James Martherus [ctb] (<https://orcid.org/0000-0002-8285-3300>),\n Chuliang Xiao [ctb] (<https://orcid.org/0000-0002-8466-9398>),\n Joseph Larmarange [ctb],\n Max Kuhn [ctb],\n Michal Bojanowski [ctb],\n Hakon Malmedal [ctb],\n Clara Wang [ctb],\n Sergio Oller [ctb],\n Luke Sonnet [ctb],\n Jim Hester [ctb],\n Ben Schneider [ctb],\n Bernie Gray [ctb] (<https://orcid.org/0000-0001-9190-6032>),\n Mara Averick [ctb],\n Aaron Jacobs [ctb],\n Andreas Bender [ctb],\n Sven Templer [ctb],\n Paul-Christian Buerkner [ctb],\n Matthew Kay [ctb],\n Erwan Le Pennec [ctb],\n Johan Junkka [ctb],\n Hao Zhu [ctb],\n Benjamin Soltoff [ctb],\n Zoe Wilkinson Saldana [ctb],\n Tyler Littlefield [ctb],\n Charles T. Gray [ctb],\n Shabbh E. Banks [ctb],\n Serina Robinson [ctb],\n Roger Bivand [ctb],\n Riinu Ots [ctb],\n Nicholas Williams [ctb],\n Nina Jakobsen [ctb],\n Michael Weylandt [ctb],\n Lisa Lendway [ctb],\n Karl Hailperin [ctb],\n Josue Rodriguez [ctb],\n Jenny Bryan [ctb],\n Chris Jarvis [ctb],\n Greg Macfarlane [ctb],\n Brian Mannakee [ctb],\n Drew Tyre [ctb],\n Shreyas Singh [ctb],\n Laurens Geffert [ctb],\n Hong Ooi [ctb],\n Henrik Bengtsson [ctb],\n Eduard Szocs [ctb],\n David Hugh-Jones [ctb],\n Matthieu Stigler [ctb],\n Hugo Tavares [ctb] (<https://orcid.org/0000-0001-9373-2726>),\n R. Willem Vervoort [ctb],\n Brenton M. Wiernik [ctb],\n Josh Yamamoto [ctb],\n Jasme Lee [ctb],\n Taren Sanders [ctb] (<https://orcid.org/0000-0002-4504-6008>),\n Ilaria Prosdocimi [ctb] (<https://orcid.org/0000-0001-8565-094X>),\n Daniel D. Sjoberg [ctb] (<https://orcid.org/0000-0003-0862-2018>),\n Alex Reinhart [ctb] (<https://orcid.org/0000-0002-6658-514X>)",
"Maintainer": "Simon Couch <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-05-17 09:10:02 UTC",
"Built": "R 4.2.2; ; 2024-09-07 03:38:36 UTC; windows"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.5.1",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(\"Garrick\", \"Aden-Buie\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-7111-0077\")),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap colorpicker library\"),\n person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootswatch library\"),\n person(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap accessibility plugin\")\n )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and\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, grDevices, htmltools (>= 0.5.4), jquerylib\n(>= 0.1.3), jsonlite, memoise (>= 2.0.1), mime, rlang, sass (>=\n0.4.0)",
"Suggests": "bsicons, curl, fontawesome, ggplot2, knitr, magrittr,\nrappdirs, rmarkdown (>= 2.7), shiny (>= 1.6.0), testthat,\nthematic, withr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"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' 'card.R' 'deprecated.R' 'files.R' 'fill.R'\n'imports.R' 'input-switch.R' 'layout.R' 'nav-items.R'\n'nav-update.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R'\n'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R'\n'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R'\n'utils-shiny.R' 'utils-tags.R' 'value-box.R'\n'version-default.R' 'versions.R'",
"Config/testthat/edition": "3",
"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/Needs/deploy": "BH, cpp11, dplyr, DT, ggplot2, ggridges, gt,\nhexbin, histoslider, lattice, leaflet, lubridate, modelr,\nnycflights13, plotly, reactable, reshape2, rprojroot,\nrsconnect, scales",
"NeedsCompilation": "no",
"Packaged": "2023-08-11 15:31:21 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 <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-08-11 16:53:52 UTC",
"Built": "R 4.2.3; ; 2023-10-13 02:30:00 UTC; windows"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cachem",
"Version": "1.0.8",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\n either their total size or the age of the oldest object (or both),\n automatically pruning objects to maintain the constraints.",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": "rlang, fastmap (>= 1.1.1)",
"Suggests": "testthat",
"RoxygenNote": "7.2.3",
"Config/Needs/routine": "lobstr",
"Config/Needs/website": "pkgdown",
"NeedsCompilation": "yes",
"Packaged": "2023-05-01 15:38:38 UTC; winston",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-05-01 16:40:02 UTC",
"Built": "R 4.2.3; x86_64-w64-mingw32; 2023-10-13 01:21:58 UTC; windows",
"ExperimentalWindowsRuntime": "ucrt",
"Archs": "x64"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.7.6",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\", \"cph\"),\n comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\n person(\"Ascent Digital Services\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "It is sometimes useful to perform a computation in a separate\n R process, without affecting the current R process at all. This\n packages does exactly that.",
"License": "MIT + file LICENSE",
"URL": "https://callr.r-lib.org, https://github.com/r-lib/callr",
"BugReports": "https://github.com/r-lib/callr/issues",
"Depends": "R (>= 3.4)",
"Imports": "processx (>= 3.6.1), R6, utils",
"Suggests": "asciicast (>= 2.3.1), cli (>= 1.1.0), mockery, ps, rprojroot,\nspelling, testthat (>= 3.2.0), withr (>= 2.3.0)",
"Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph,\ntibble, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.3.1.9000",
"NeedsCompilation": "no",
"Packaged": "2024-03-25 12:10:25 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>),\n Winston Chang [aut],\n Posit Software, PBC [cph, fnd],\n Ascent Digital Services [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2024-03-25 13:30:06 UTC",
"Built": "R 4.2.3; ; 2024-04-24 01:24:43 UTC; windows"
}
},
"car": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "car",
"Version": "3.1-2",
"Date": "2023-03-25",
"Title": "Companion to Applied Regression",
"Authors@R": "c(person(\"John\", \"Fox\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n\tperson(\"Sanford\", \"Weisberg\", role = \"aut\", email = \"[email protected]\"),\n\tperson(\"Brad\", \"Price\", role = \"aut\", email = \"[email protected]\"),\n person(\"Daniel\", \"Adler\", role=\"ctb\"),\n person(\"Douglas\", \"Bates\", role = \"ctb\"),\n person(\"Gabriel\", \"Baud-Bovy\", role = \"ctb\"),\n person(\"Ben\", \"Bolker\", role=\"ctb\"),\n person(\"Steve\", \"Ellison\", role=\"ctb\"),\n person(\"David\", \"Firth\", role = \"ctb\"),\n person(\"Michael\", \"Friendly\", role = \"ctb\"),\n person(\"Gregor\", \"Gorjanc\", role = \"ctb\"),\n person(\"Spencer\", \"Graves\", role = \"ctb\"),\n person(\"Richard\", \"Heiberger\", role = \"ctb\"),\n person(\"Pavel\", \"Krivitsky\", role = \"ctb\"),\n person(\"Rafael\", \"Laboissiere\", role = \"ctb\"),\n person(\"Martin\", \"Maechler\", role=\"ctb\"),\n person(\"Georges\", \"Monette\", role = \"ctb\"),\n person(\"Duncan\", \"Murdoch\", role=\"ctb\"),\n person(\"Henric\", \"Nilsson\", role = \"ctb\"),\n person(\"Derek\", \"Ogle\", role = \"ctb\"),\n person(\"Brian\", \"Ripley\", role = \"ctb\"),\n person(\"Tom\", \"Short\", role=\"ctb\"),\n person(\"William\", \"Venables\", role = \"ctb\"),\n person(\"Steve\", \"Walker\", role=\"ctb\"),\n person(\"David\", \"Winsemius\", role=\"ctb\"),\n person(\"Achim\", \"Zeileis\", role = \"ctb\"),\n person(\"R-Core\", role=\"ctb\"))",
"Depends": "R (>= 3.5.0), carData (>= 3.0-0)",
"Imports": "abind, MASS, mgcv, nnet, pbkrtest (>= 0.4-4), quantreg,\ngrDevices, utils, stats, graphics, lme4 (>= 1.1-27.1), nlme,\nscales",
"Suggests": "alr4, boot, coxme, effects, knitr, leaps, lmtest, Matrix,\nMatrixModels, mvtnorm, rgl (>= 0.111.3), rio, sandwich,\nSparseM, survival, survey",
"ByteCompile": "yes",
"LazyLoad": "yes",
"Description": "\n Functions to Accompany J. Fox and S. Weisberg, \n An R Companion to Applied Regression, Third Edition, Sage, 2019.",
"License": "GPL (>= 2)",
"URL": "https://r-forge.r-project.org/projects/car/,\nhttps://CRAN.R-project.org/package=car,\nhttps://socialsciences.mcmaster.ca/jfox/Books/Companion/index.html",
"VignetteBuilder": "knitr",
"Author": "John Fox [aut, cre],\n Sanford Weisberg [aut],\n Brad Price [aut],\n Daniel Adler [ctb],\n Douglas Bates [ctb],\n Gabriel Baud-Bovy [ctb],\n Ben Bolker [ctb],\n Steve Ellison [ctb],\n David Firth [ctb],\n Michael Friendly [ctb],\n Gregor Gorjanc [ctb],\n Spencer Graves [ctb],\n Richard Heiberger [ctb],\n Pavel Krivitsky [ctb],\n Rafael Laboissiere [ctb],\n Martin Maechler [ctb],\n Georges Monette [ctb],\n Duncan Murdoch [ctb],\n Henric Nilsson [ctb],\n Derek Ogle [ctb],\n Brian Ripley [ctb],\n Tom Short [ctb],\n William Venables [ctb],\n Steve Walker [ctb],\n David Winsemius [ctb],\n Achim Zeileis [ctb],\n R-Core [ctb]",
"Maintainer": "John Fox <[email protected]>",
"Repository": "CRAN",
"Repository/R-Forge/Project": "car",
"Repository/R-Forge/Revision": "742",
"Repository/R-Forge/DateTimeStamp": "2023-03-25 21:15:09",
"Date/Publication": "2023-03-30 10:40:02 UTC",
"NeedsCompilation": "no",
"Packaged": "2023-03-25 21:36:48 UTC; rforge",
"Built": "R 4.2.3; ; 2024-04-24 03:43:04 UTC; windows"
}
},
"carData": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "carData",
"Version": "3.0-5",
"Date": "2022-01-05",
"Title": "Companion to Applied Regression Data Sets",
"Authors@R": "c(person(\"John\", \"Fox\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n\tperson(\"Sanford\", \"Weisberg\", role = \"aut\", email = \"[email protected]\"),\n person(\"Brad\", \"Price\", role = \"aut\", email = \"[email protected]\"))",
"Depends": "R (>= 3.5.0)",
"Suggests": "car (>= 3.0-0)",
"LazyLoad": "yes",
"LazyData": "yes",
"Description": "\n Datasets to Accompany J. Fox and S. Weisberg, \n An R Companion to Applied Regression, Third Edition, Sage (2019).",
"License": "GPL (>= 2)",
"URL": "https://r-forge.r-project.org/projects/car/,\nhttps://CRAN.R-project.org/package=carData,\nhttps://socialsciences.mcmaster.ca/jfox/Books/Companion/index.html",
"Author": "John Fox [aut, cre],\n Sanford Weisberg [aut],\n Brad Price [aut]",
"Maintainer": "John Fox <[email protected]>",
"Repository": "CRAN",
"Repository/R-Forge/Project": "car",
"Repository/R-Forge/Revision": "694",
"Repository/R-Forge/DateTimeStamp": "2022-01-05 19:40:37",
"Date/Publication": "2022-01-06 00:20:07 UTC",
"NeedsCompilation": "no",
"Packaged": "2022-01-05 19:48:10 UTC; rforge",
"Built": "R 4.2.3; ; 2024-04-24 00:33:35 UTC; windows"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com",
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Jennifer\", \"Bryan\", , \"[email protected]\", c(\"cre\", \"aut\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", \"ctb\")\n )",
"Description": "Helper functions to work with spreadsheets and the \"A1:D10\" style\n of cell range specification.",
"Depends": "R (>= 3.0.0)",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/rsheets/cellranger",
"BugReports": "https://github.com/rsheets/cellranger/issues",
"Suggests": "covr, testthat (>= 1.0.0), knitr, rmarkdown",
"RoxygenNote": "5.0.1.9000",
"VignetteBuilder": "knitr",
"Imports": "rematch, tibble",
"NeedsCompilation": "no",
"Packaged": "2016-07-26 06:50:00 UTC; jenny",
"Author": "Jennifer Bryan [cre, aut],\n Hadley Wickham [ctb]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2016-07-27 03:17:48",
"Built": "R 4.2.3; ; 2024-04-24 02:15:31 UTC; windows"
}
},
"checkmate": {