-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathrenv.lock
5765 lines (5765 loc) · 328 KB
/
renv.lock
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
{
"R": {
"Version": "4.4.2",
"Repositories": [
{
"Name": "CRAN",
"URL": "https://cloud.r-project.org"
}
]
},
"Packages": {
"BH": {
"Package": "BH",
"Version": "1.84.0-0",
"Source": "Repository",
"Type": "Package",
"Title": "Boost C++ Header Files",
"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 libraries. A large part of Boost is provided as C++ template code which is resolved entirely at compile-time without linking. This package aims to provide the most useful subset of Boost libraries for template use among CRAN packages. By placing these libraries in this package, we offer a more efficient distribution system for CRAN as replication of this code in the sources of other packages is avoided. As of release 1.84.0-0, the following Boost libraries are included: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast' 'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config' 'container' 'date_time' 'detail' 'dynamic_bitset' 'exception' 'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap' 'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams' 'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision' 'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process' 'propery_tree' 'qvm' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort' 'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'url' 'utility' 'uuid'.",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/bh, https://dirk.eddelbuettel.com/code/bh.html",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Repository": "CRAN"
},
"DALEX": {
"Package": "DALEX",
"Version": "2.4.3",
"Source": "Repository",
"Title": "moDel Agnostic Language for Exploration and eXplanation",
"Authors@R": "c(person(\"Przemyslaw\", \"Biecek\", email = \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0001-8423-1823\")), person(\"Szymon\", \"Maksymiuk\", role = \"aut\", comment = c(ORCID = \"0000-0002-3120-1601\")), person(\"Hubert\", \"Baniecki\", role = \"aut\", comment = c(ORCID = \"0000-0001-6661-5364\")))",
"Description": "Any unverified black box model is the path to failure. Opaqueness leads to distrust. Distrust leads to ignoration. Ignoration leads to rejection. DALEX package xrays any model and helps to explore and explain its behaviour. Machine Learning (ML) models are widely used and have various applications in classification or regression. Models created with boosting, bagging, stacking or similar techniques are often used due to their high performance. But such black-box models usually lack direct interpretability. DALEX package contains various methods that help to understand the link between input variables and model output. Implemented methods help to explore the model on the level of a single instance as well as a level of the whole dataset. All model explainers are model agnostic and can be compared across different models. DALEX package is the cornerstone for 'DrWhy.AI' universe of packages for visual model exploration. Find more details in (Biecek 2018) <arXiv:1806.08915>.",
"License": "GPL",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"Depends": [
"R (>= 3.5)"
],
"Imports": [
"ggplot2",
"iBreakDown (>= 1.3.1)",
"ingredients (>= 2.0)"
],
"Suggests": [
"gower",
"ranger",
"testthat",
"methods"
],
"URL": "https://modeloriented.github.io/DALEX/, https://dalex.drwhy.ai",
"BugReports": "https://github.com/ModelOriented/DALEX/issues",
"NeedsCompilation": "no",
"Author": "Przemyslaw Biecek [aut, cre] (<https://orcid.org/0000-0001-8423-1823>), Szymon Maksymiuk [aut] (<https://orcid.org/0000-0002-3120-1601>), Hubert Baniecki [aut] (<https://orcid.org/0000-0001-6661-5364>)",
"Maintainer": "Przemyslaw Biecek <[email protected]>",
"Repository": "CRAN"
},
"Formula": {
"Package": "Formula",
"Version": "1.2-5",
"Source": "Repository",
"Date": "2023-02-23",
"Title": "Extended Model Formulas",
"Description": "Infrastructure for extended formulas with multiple parts on the right-hand side and/or multiple responses on the left-hand side (see <doi:10.18637/jss.v034.i01>).",
"Authors@R": "c(person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0918-3766\")), person(given = \"Yves\", family = \"Croissant\", role = \"aut\", email = \"[email protected]\"))",
"Depends": [
"R (>= 2.0.0)",
"stats"
],
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "no",
"Author": "Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>), Yves Croissant [aut]",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "CRAN"
},
"GGally": {
"Package": "GGally",
"Version": "2.2.1",
"Source": "Repository",
"License": "GPL (>= 2.0)",
"Title": "Extension to 'ggplot2'",
"Type": "Package",
"LazyLoad": "yes",
"LazyData": "true",
"URL": "https://ggobi.github.io/ggally/, https://github.com/ggobi/ggally",
"BugReports": "https://github.com/ggobi/ggally/issues",
"Authors@R": "c( person(\"Barret\", \"Schloerke\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"), person(\"Di\", \"Cook\", role = c(\"aut\", \"ths\"), email = \"[email protected]\"), person(\"Joseph\", \"Larmarange\", role = \"aut\", email = \"[email protected]\"), person(\"Francois\", \"Briatte\", role = \"aut\", email = \"[email protected]\"), person(\"Moritz\", \"Marbach\", role = \"aut\", email = \"[email protected]\"), person(\"Edwin\", \"Thoen\", role = \"aut\", email = \"[email protected]\"), person(\"Amos\", \"Elberg\", role = \"aut\", email = \"[email protected]\"), person(\"Ott\", \"Toomet\", role = \"ctb\", email = \"[email protected]\"), person(\"Jason\", \"Crowley\", role = \"aut\", email = \"[email protected]\"), person(\"Heike\", \"Hofmann\", role = \"ths\", email = \"[email protected]\"), person(\"Hadley\", \"Wickham\", role = \"ths\", email = \"[email protected]\") )",
"Description": "The R package 'ggplot2' is a plotting system based on the grammar of graphics. 'GGally' extends 'ggplot2' by adding several functions to reduce the complexity of combining geometric objects with transformed data. Some of these functions include a pairwise plot matrix, a two group pairwise plot matrix, a parallel coordinates plot, a survival plot, and several functions to plot networks.",
"Depends": [
"R (>= 3.1)",
"ggplot2 (>= 3.4.4)"
],
"Imports": [
"dplyr (>= 1.0.0)",
"tidyr (>= 1.3.0)",
"grDevices",
"grid",
"ggstats",
"gtable (>= 0.2.0)",
"lifecycle",
"plyr (>= 1.8.3)",
"progress",
"RColorBrewer",
"rlang",
"scales (>= 1.1.0)",
"utils",
"magrittr"
],
"Suggests": [
"broom (>= 0.7.0)",
"broom.helpers (>= 1.3.0)",
"chemometrics",
"geosphere (>= 1.5-1)",
"ggforce",
"Hmisc",
"igraph (>= 1.0.1)",
"intergraph (>= 2.0-2)",
"labelled",
"maps (>= 3.1.0)",
"mapproj",
"nnet",
"network (>= 1.17.1)",
"scagnostics",
"sna (>= 2.3-2)",
"survival",
"rmarkdown",
"roxygen2",
"testthat",
"crosstalk",
"knitr",
"spelling",
"emmeans",
"vdiffr"
],
"RoxygenNote": "7.3.1",
"SystemRequirements": "openssl",
"Encoding": "UTF-8",
"Language": "en-US",
"RdMacros": "lifecycle",
"Config/testthat/edition": "3",
"NeedsCompilation": "no",
"Author": "Barret Schloerke [aut, cre], Di Cook [aut, ths], Joseph Larmarange [aut], Francois Briatte [aut], Moritz Marbach [aut], Edwin Thoen [aut], Amos Elberg [aut], Ott Toomet [ctb], Jason Crowley [aut], Heike Hofmann [ths], Hadley Wickham [ths]",
"Maintainer": "Barret Schloerke <[email protected]>",
"Repository": "CRAN"
},
"KernSmooth": {
"Package": "KernSmooth",
"Version": "2.23-24",
"Source": "Repository",
"Priority": "recommended",
"Date": "2024-05-16",
"Title": "Functions for Kernel Smoothing Supporting Wand & Jones (1995)",
"Authors@R": "c(person(\"Matt\", \"Wand\", role = \"aut\", email = \"[email protected]\"), person(\"Cleve\", \"Moler\", role = \"ctb\", comment = \"LINPACK routines in src/d*\"), person(\"Brian\", \"Ripley\", role = c(\"trl\", \"cre\", \"ctb\"), email = \"[email protected]\", comment = \"R port and updates\"))",
"Note": "Maintainers are not available to give advice on using a package they did not author.",
"Depends": [
"R (>= 2.5.0)",
"stats"
],
"Suggests": [
"MASS",
"carData"
],
"Description": "Functions for kernel smoothing (and density estimation) corresponding to the book: Wand, M.P. and Jones, M.C. (1995) \"Kernel Smoothing\".",
"License": "Unlimited",
"ByteCompile": "yes",
"NeedsCompilation": "yes",
"Author": "Matt Wand [aut], Cleve Moler [ctb] (LINPACK routines in src/d*), Brian Ripley [trl, cre, ctb] (R port and updates)",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN"
},
"MASS": {
"Package": "MASS",
"Version": "7.3-61",
"Source": "Repository",
"Priority": "recommended",
"Date": "2024-06-10",
"Revision": "$Rev: 3657 $",
"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\"), email = \"[email protected]\"), person(\"Bill\", \"Venables\", role = c(\"aut\", \"cph\")), person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"), person(\"Kurt\", \"Hornik\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"Albrecht\", \"Gebhardt\", role = \"trl\", comment = \"partial port ca 1998\"), person(\"David\", \"Firth\", role = \"ctb\", comment = \"support functions for polr\"))",
"Description": "Functions and datasets to support Venables and Ripley, \"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",
"Author": "Brian Ripley [aut, cre, cph], Bill Venables [aut, cph], Douglas M. Bates [ctb], Kurt Hornik [trl] (partial port ca 1998), Albrecht Gebhardt [trl] (partial port ca 1998), David Firth [ctb] (support functions for polr)",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN"
},
"Matrix": {
"Package": "Matrix",
"Version": "1.7-1",
"Source": "Repository",
"VersionNote": "do also bump src/version.h, inst/include/Matrix/version.h",
"Date": "2024-10-17",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Description": "A rich hierarchy of sparse and dense matrix classes, including general, symmetric, triangular, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and '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": "c(person(\"Douglas\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-8685-9910\")), person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")), person(\"Timothy A.\", \"Davis\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7614-6899\", \"SuiteSparse libraries\", \"collaborators listed in dir(system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"), pattern=\\\"License\\\", full.names=TRUE, recursive=TRUE)\")), person(\"George\", \"Karypis\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2753-1437\", \"METIS library\", \"Copyright: Regents of the University of Minnesota\")), person(\"Jason\", \"Riedy\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4345-4200\", \"GNU Octave's condest() and onenormest()\", \"Copyright: Regents of the University of California\")), person(\"Jens\", \"Oehlschlägel\", role = \"ctb\", comment = \"initial nearPD()\"), person(\"R Core Team\", role = \"ctb\", comment = \"base R's matrix implementation\"))",
"Depends": [
"R (>= 4.4.0)",
"methods"
],
"Imports": [
"grDevices",
"graphics",
"grid",
"lattice",
"stats",
"utils"
],
"Suggests": [
"MASS",
"datasets",
"sfsmisc",
"tools"
],
"Enhances": [
"SparseM",
"graph"
],
"LazyData": "no",
"LazyDataNote": "not possible, since we use data/*.R and our S4 classes",
"BuildResaveData": "no",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Douglas Bates [aut] (<https://orcid.org/0000-0001-8316-9503>), Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>), Mikael Jagan [aut] (<https://orcid.org/0000-0002-3542-2938>), Timothy A. Davis [ctb] (<https://orcid.org/0000-0001-7614-6899>, SuiteSparse libraries, collaborators listed in dir(system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"), pattern=\"License\", full.names=TRUE, recursive=TRUE)), George Karypis [ctb] (<https://orcid.org/0000-0003-2753-1437>, METIS library, Copyright: Regents of the University of Minnesota), Jason Riedy [ctb] (<https://orcid.org/0000-0002-4345-4200>, GNU Octave's condest() and onenormest(), Copyright: Regents of the University of California), Jens Oehlschlägel [ctb] (initial nearPD()), R Core Team [ctb] (base R's matrix implementation)",
"Maintainer": "Martin Maechler <[email protected]>",
"Repository": "CRAN"
},
"MatrixModels": {
"Package": "MatrixModels",
"Version": "0.5-3",
"Source": "Repository",
"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 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/, https://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",
"Repository": "CRAN"
},
"Metrics": {
"Package": "Metrics",
"Version": "0.1.4",
"Source": "Repository",
"Title": "Evaluation Metrics for Machine Learning",
"Description": "An implementation of evaluation metrics in R that are commonly used in supervised machine learning. It implements metrics for regression, time series, binary classification, classification, and information retrieval problems. It has zero dependencies and a consistent, simple interface for all functions.",
"Authors@R": "c( person(\"Ben\", \"Hamner\", role = c(\"aut\", \"cph\"), email = \"[email protected]\"), person(\"Michael\", \"Frasco\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"), person(\"Erin\", \"LeDell\", role = c(\"ctb\"), email = \"[email protected]\"))",
"Maintainer": "Michael Frasco <[email protected]>",
"Suggests": [
"testthat"
],
"URL": "https://github.com/mfrasco/Metrics",
"BugReports": "https://github.com/mfrasco/Metrics/issues",
"License": "BSD_3_clause + file LICENSE",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "no",
"Author": "Ben Hamner [aut, cph], Michael Frasco [aut, cre], Erin LeDell [ctb]",
"Repository": "CRAN"
},
"ModelMetrics": {
"Package": "ModelMetrics",
"Version": "1.2.2.2",
"Source": "Repository",
"Title": "Rapid Calculation of Model Metrics",
"Date": "2018-11-03",
"Authors@R": "person(\"Tyler\", \"Hunt\", email = \"[email protected]\", role = c(\"aut\", \"cre\"))",
"Description": "Collection of metrics for evaluating models written in C++ using 'Rcpp'. Popular metrics include area under the curve, log loss, root mean square error, etc.",
"Depends": [
"R (>= 3.2.2)"
],
"License": "GPL (>= 2)",
"Encoding": "UTF-8",
"LazyData": "true",
"LinkingTo": [
"Rcpp"
],
"Imports": [
"Rcpp",
"data.table"
],
"RoxygenNote": "6.0.1",
"Suggests": [
"testthat"
],
"NeedsCompilation": "yes",
"Author": "Tyler Hunt [aut, cre]",
"Maintainer": "Tyler Hunt <[email protected]>",
"Repository": "CRAN"
},
"NLP": {
"Package": "NLP",
"Version": "0.3-0",
"Source": "Repository",
"Title": "Natural Language Processing Infrastructure",
"Authors@R": "person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4198-9911\"))",
"Description": "Basic classes and methods for Natural Language Processing.",
"License": "GPL-3",
"Imports": [
"utils"
],
"Depends": [
"R (>= 3.2.0)"
],
"Enhances": [
"udpipe",
"spacyr",
"cleanNLP"
],
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Author": "Kurt Hornik [aut, cre] (<https://orcid.org/0000-0003-4198-9911>)",
"Maintainer": "Kurt Hornik <[email protected]>",
"Repository": "CRAN"
},
"OneR": {
"Package": "OneR",
"Version": "2.2",
"Source": "Repository",
"Type": "Package",
"Title": "One Rule Machine Learning Classification Algorithm with Enhancements",
"Date": "2017-05-05",
"Author": "Holger von Jouanne-Diedrich",
"Maintainer": "Holger von Jouanne-Diedrich <[email protected]>",
"Depends": [
"R (>= 2.10)"
],
"Description": "Implements the One Rule (OneR) Machine Learning classification algorithm (Holte, R.C. (1993) <doi:10.1023/A:1022631118932>) with enhancements for sophisticated handling of numeric data and missing values together with extensive diagnostic functions. It is useful as a baseline for machine learning models and the rules are often helpful heuristics.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/vonjd/OneR",
"BugReports": "https://github.com/vonjd/OneR/issues",
"LazyData": "TRUE",
"RoxygenNote": "6.0.1",
"Suggests": [
"knitr",
"rmarkdown"
],
"VignetteBuilder": "knitr",
"NeedsCompilation": "no",
"Repository": "CRAN"
},
"R6": {
"Package": "R6",
"Version": "2.5.1",
"Source": "Repository",
"Title": "Encapsulated Classes with Reference Semantics",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in 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",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN"
},
"RColorBrewer": {
"Package": "RColorBrewer",
"Version": "1.1-3",
"Source": "Repository",
"Date": "2022-04-03",
"Title": "ColorBrewer Palettes",
"Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\", \"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) designed by Cynthia Brewer as described at http://colorbrewer2.org.",
"License": "Apache License 2.0",
"NeedsCompilation": "no",
"Repository": "CRAN"
},
"RWeka": {
"Package": "RWeka",
"Version": "0.4-46",
"Source": "Repository",
"Title": "R/Weka Interface",
"Authors@R": "c(person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Christian\", \"Buchta\", role = \"ctb\"), person(\"Torsten\", \"Hothorn\", role = \"ctb\"), person(\"Alexandros\", \"Karatzoglou\", role = \"ctb\"), person(\"David\", \"Meyer\", role = \"ctb\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0918-3766\")))",
"Description": "An R interface to Weka (Version 3.9.3). Weka is a collection of machine learning algorithms for data mining tasks written in Java, containing tools for data pre-processing, classification, regression, clustering, association rules, and visualization. Package 'RWeka' contains the interface code, the Weka jar is in a separate package 'RWekajars'. For more information on Weka see <https://www.cs.waikato.ac.nz/ml/weka/>.",
"Depends": [
"R (>= 2.6.0)"
],
"Imports": [
"RWekajars (>= 3.9.3-1)",
"rJava (>= 0.6-3)",
"graphics",
"stats",
"utils",
"grid"
],
"Suggests": [
"partykit (>= 0.8.0)",
"mlbench",
"e1071"
],
"SystemRequirements": "Java (>= 8)",
"License": "GPL-2",
"NeedsCompilation": "no",
"Author": "Kurt Hornik [aut, cre] (<https://orcid.org/0000-0003-4198-9911>), Christian Buchta [ctb], Torsten Hothorn [ctb], Alexandros Karatzoglou [ctb], David Meyer [ctb], Achim Zeileis [ctb] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Kurt Hornik <[email protected]>",
"Repository": "CRAN"
},
"RWekajars": {
"Package": "RWekajars",
"Version": "3.9.3-2",
"Source": "Repository",
"Title": "R/Weka Interface Jars",
"Authors@R": "c(person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"University of Waikato\", role = c(\"ctb\", \"cph\"), comment = \"Weka Java library\"))",
"Description": "External jars required for package 'RWeka'.",
"Imports": [
"rJava (>= 0.6-3)"
],
"SystemRequirements": "Java (>= 8)",
"License": "GPL-2",
"NeedsCompilation": "no",
"Author": "Kurt Hornik [aut, cre] (<https://orcid.org/0000-0003-4198-9911>), University of Waikato [ctb, cph] (Weka Java library)",
"Maintainer": "Kurt Hornik <[email protected]>",
"Repository": "CRAN"
},
"Rcpp": {
"Package": "Rcpp",
"Version": "1.0.13-1",
"Source": "Repository",
"Title": "Seamless R and C++ Integration",
"Date": "2024-11-01",
"Authors@R": "c(person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"JJ\", \"Allaire\", role = \"aut\", comment = c(ORCID = \"0000-0003-0174-9868\")), person(\"Kevin\", \"Ushey\", role = \"aut\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Qiang\", \"Kou\", role = \"aut\", comment = c(ORCID = \"0000-0001-6786-5453\")), person(\"Nathan\", \"Russell\", role = \"aut\"), person(\"Iñaki\", \"Ucar\", role = \"aut\", comment = c(ORCID = \"0000-0001-6403-5550\")), person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"John\", \"Chambers\", role = \"aut\"))",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013, <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018, <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, https://dirk.eddelbuettel.com/code/rcpp.html, https://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",
"Author": "Dirk Eddelbuettel [aut, cre] (<https://orcid.org/0000-0001-6419-907X>), Romain Francois [aut] (<https://orcid.org/0000-0002-2444-4226>), JJ Allaire [aut] (<https://orcid.org/0000-0003-0174-9868>), Kevin Ushey [aut] (<https://orcid.org/0000-0003-2880-7407>), Qiang Kou [aut] (<https://orcid.org/0000-0001-6786-5453>), Nathan Russell [aut], Iñaki Ucar [aut] (<https://orcid.org/0000-0001-6403-5550>), Doug Bates [aut] (<https://orcid.org/0000-0001-8316-9503>), John Chambers [aut]",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Repository": "CRAN"
},
"RcppEigen": {
"Package": "RcppEigen",
"Version": "0.3.4.0.2",
"Source": "Repository",
"Type": "Package",
"Title": "'Rcpp' Integration for the 'Eigen' Templated Linear Algebra Library",
"Date": "2024-08-23",
"Authors@R": "c(person(\"Doug\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")), person(\"Dirk\", \"Eddelbuettel\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0001-6419-907X\")), person(\"Romain\", \"Francois\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Yixuan\", \"Qiu\", role = \"aut\", comment = c(ORCID = \"0000-0003-0109-6692\")), person(\"Authors of\", \"Eigen\", role = \"cph\", 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'. 'Eigen' is a C++ template library for linear algebra: matrices, vectors, numerical solvers and related algorithms. It supports dense and sparse matrices on integer, floating point and complex numbers, decompositions of such matrices, and solutions of linear systems. Its performance on many algorithms is comparable with some of the best implementations based on 'Lapack' and level-3 'BLAS'. The 'RcppEigen' package includes the header files from the 'Eigen' C++ template library. Thus users do not need to install 'Eigen' itself in order to use 'RcppEigen'. Since version 3.1.1, 'Eigen' is licensed under the Mozilla Public License (version 2); earlier version were licensed under the GNU LGPL version 3 or later. 'RcppEigen' (the 'Rcpp' bindings/bridge to 'Eigen') is licensed under the GNU GPL 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, https://dirk.eddelbuettel.com/code/rcpp.eigen.html",
"BugReports": "https://github.com/RcppCore/RcppEigen/issues",
"NeedsCompilation": "yes",
"Author": "Doug Bates [aut] (<https://orcid.org/0000-0001-8316-9503>), Dirk Eddelbuettel [aut, cre] (<https://orcid.org/0000-0001-6419-907X>), Romain Francois [aut] (<https://orcid.org/0000-0002-2444-4226>), Yixuan Qiu [aut] (<https://orcid.org/0000-0003-0109-6692>), Authors of Eigen [cph] (Authorship and copyright in included Eigen library as detailed in inst/COPYRIGHTS)",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Repository": "CRAN"
},
"SQUAREM": {
"Package": "SQUAREM",
"Version": "2021.1",
"Source": "Repository",
"Date": "2021-01-12",
"Title": "Squared Extrapolation Methods for Accelerating EM-Like Monotone Algorithms",
"Description": "Algorithms for accelerating the convergence of slow, monotone sequences from smooth, contraction mapping such as the EM algorithm. It can be used to accelerate any smooth, linearly convergent acceleration scheme. A tutorial style introduction to this package is available in a vignette on the CRAN download page or, when the package is loaded in an R session, with vignette(\"SQUAREM\"). Refer to the J Stat Software article: <doi:10.18637/jss.v092.i07>.",
"Depends": [
"R (>= 3.0)"
],
"Suggests": [
"setRNG"
],
"LazyLoad": "yes",
"License": "GPL (>= 2)",
"Author": "Ravi Varadhan",
"Maintainer": "Ravi Varadhan <[email protected]>",
"URL": "https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html",
"Repository": "CRAN",
"NeedsCompilation": "no"
},
"arules": {
"Package": "arules",
"Version": "1.7-8",
"Source": "Repository",
"Title": "Mining Association Rules and Frequent Itemsets",
"Date": "2024-08-21",
"Authors@R": "c( person(\"Michael\", \"Hahsler\", , \"[email protected]\", role = c(\"aut\", \"cre\", \"cph\"), comment = c(ORCID = \"0000-0003-2716-1405\")), person(\"Christian\", \"Buchta\", role = c(\"aut\", \"cph\")), person(\"Bettina\", \"Gruen\", role = c(\"aut\", \"cph\")), person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cph\"), comment = c(ORCID = \"0000-0003-4198-9911\")), person(\"Christian\", \"Borgelt\", role = c(\"ctb\", \"cph\")), person(\"Ian\", \"Johnson\", role = \"ctb\"), person(\"Makhlouf\", \"Ledmi\", role = \"ctb\") )",
"Description": "Provides the infrastructure for representing, manipulating and analyzing transaction data and patterns (frequent itemsets and association rules). Also provides C implementations of the association mining algorithms Apriori and Eclat. Hahsler, Gruen and Hornik (2005) <doi:10.18637/jss.v014.i15>.",
"License": "GPL-3",
"URL": "https://github.com/mhahsler/arules",
"BugReports": "https://github.com/mhahsler/arules/issues",
"Depends": [
"Matrix (>= 1.4-0)",
"R (>= 4.0.0)"
],
"Imports": [
"generics",
"graphics",
"methods",
"stats",
"utils"
],
"Suggests": [
"arulesCBA",
"arulesViz",
"pmml",
"proxy",
"testthat",
"XML"
],
"Classification/ACM": "G.4, H.2.8, I.5.1",
"Copyright": "The source code for Apriori and Eclat was obtained from http://www.borgelt.net/ and is Copyright (C) 1996-2003 Christian Borgelt. All other code is Copyright (C) Michael Hahsler, Christian Buchta, Bettina Gruen and Kurt Hornik.",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"Collate": "'AAADefs.R' 'AAA_arules-package.R' 'Adult.R' 'itemMatrix.R' 'associations.R' 'transactions.R' 'tidLists.R' 'itemsets.R' 'rules.R' 'DATAFRAME.R' 'Epub.R' 'Groceries.R' 'Income.R' 'LIST.R' 'Matrix.R' 'Mushroom.R' 'SunBai.R' 'abbreviate.R' 'addComplement.R' 'appearance.R' 'apriori.R' 'c.R' 'check_installed.R' 'confint.R' 'control.R' 'coverage.R' 'crossTable.R' 'discretize.R' 'dissimilarity.R' 'duplicated.R' 'eclat.R' 'extract.R' 'fim4r.R' 'hierarchy.R' 'image.R' 'inspect.R' 'interestMeasures.R' 'is.closed.R' 'is.generator.R' 'is.maximal.R' 'is.redundant.R' 'is.significant.R' 'is.superset.R' 'itemCoding.R' 'itemFrequency.R' 'match.R' 'merge.R' 'parameter.R' 'plot.R' 'pmml.R' 'predict.R' 'random.transactions.R' 'read_write.R' 'ruleInduction.R' 'sample.R' 'sets.R' 'setsItemwise.R' 'size.R' 'sort.R' 'subset.R' 'support.R' 'supportingTransactions.R' 'unique.R' 'warm.R'",
"NeedsCompilation": "yes",
"Author": "Michael Hahsler [aut, cre, cph] (<https://orcid.org/0000-0003-2716-1405>), Christian Buchta [aut, cph], Bettina Gruen [aut, cph], Kurt Hornik [aut, cph] (<https://orcid.org/0000-0003-4198-9911>), Christian Borgelt [ctb, cph], Ian Johnson [ctb], Makhlouf Ledmi [ctb]",
"Maintainer": "Michael Hahsler <[email protected]>",
"Repository": "CRAN"
},
"backports": {
"Package": "backports",
"Version": "1.5.0",
"Source": "Repository",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Authors@R": "c( person(\"Michel\", \"Lang\", NULL, \"[email protected]\", role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")), person(\"Duncan\", \"Murdoch\", NULL, \"[email protected]\", role = c(\"aut\")), person(\"R Core Team\", role = \"aut\"))",
"Maintainer": "Michel Lang <[email protected]>",
"Description": "Functions introduced or changed since R v3.0.0 are re-implemented in this package. The backports are conditionally exported in order to let R resolve the function name to either the implemented backport, or the respective base version, if available. Package developers can make use of new functions or arguments by selectively importing specific backports to 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",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>), Duncan Murdoch [aut], R Core Team [aut]",
"Repository": "CRAN"
},
"base64enc": {
"Package": "base64enc",
"Version": "0.1-3",
"Source": "Repository",
"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",
"Repository": "CRAN"
},
"broom": {
"Package": "broom",
"Version": "1.0.7",
"Source": "Repository",
"Type": "Package",
"Title": "Convert Statistical Objects into Tidy Tibbles",
"Authors@R": "c(person(given = \"David\", family = \"Robinson\", role = \"aut\", email = \"[email protected]\"), person(given = \"Alex\", family = \"Hayes\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4985-5160\")), person(given = \"Simon\", family = \"Couch\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0001-5676-5107\")), person(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(given = \"Indrajeet\", family = \"Patil\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0003-1995-6531\")), person(given = \"Derek\", family = \"Chiu\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Matthieu\", family = \"Gomez\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Boris\", family = \"Demeshev\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Dieter\", family = \"Menne\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Benjamin\", family = \"Nutter\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Luke\", family = \"Johnston\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Ben\", family = \"Bolker\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Francois\", family = \"Briatte\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jeffrey\", family = \"Arnold\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jonah\", family = \"Gabry\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Luciano\", family = \"Selzer\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Gavin\", family = \"Simpson\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jens\", family = \"Preussner\", role = \"ctb\", email = \" [email protected]\"), person(given = \"Jay\", family = \"Hesselberth\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Hadley\", family = \"Wickham\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Matthew\", family = \"Lincoln\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Alessandro\", family = \"Gasparini\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Lukasz\", family = \"Komsta\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Frederick\", family = \"Novometsky\", role = \"ctb\"), person(given = \"Wilson\", family = \"Freitas\", role = \"ctb\"), person(given = \"Michelle\", family = \"Evans\", role = \"ctb\"), person(given = \"Jason Cory\", family = \"Brunson\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Simon\", family = \"Jackson\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Ben\", family = \"Whalley\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Karissa\", family = \"Whiting\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Yves\", family = \"Rosseel\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Michael\", family = \"Kuehn\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jorge\", family = \"Cimentada\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Erle\", family = \"Holgersen\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Karl\", family = \"Dunkle Werner\", role = \"ctb\", comment = c(ORCID = \"0000-0003-0523-7309\")), person(given = \"Ethan\", family = \"Christensen\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Steven\", family = \"Pav\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Paul\", family = \"PJ\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Ben\", family = \"Schneider\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Patrick\", family = \"Kennedy\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Lily\", family = \"Medina\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Brian\", family = \"Fannin\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jason\", family = \"Muhlenkamp\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Matt\", family = \"Lehman\", role = \"ctb\"), person(given = \"Bill\", family = \"Denney\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-5759-428X\")), person(given = \"Nic\", family = \"Crane\", role = \"ctb\"), person(given = \"Andrew\", family = \"Bates\", role = \"ctb\"), person(given = \"Vincent\", family = \"Arel-Bundock\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0003-2042-7063\")), person(given = \"Hideaki\", family = \"Hayashi\", role = \"ctb\"), person(given = \"Luis\", family = \"Tobalina\", role = \"ctb\"), person(given = \"Annie\", family = \"Wang\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Wei Yang\", family = \"Tham\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Clara\", family = \"Wang\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Abby\", family = \"Smith\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-3207-0375\")), person(given = \"Jasper\", family = \"Cooper\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-8639-3188\")), person(given = \"E Auden\", family = \"Krauska\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1466-5850\")), person(given = \"Alex\", family = \"Wang\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Malcolm\", family = \"Barrett\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0299-5825\")), person(given = \"Charles\", family = \"Gray\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-9978-011X\")), person(given = \"Jared\", family = \"Wilber\", role = \"ctb\"), person(given = \"Vilmantas\", family = \"Gegzna\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-9500-5167\")), person(given = \"Eduard\", family = \"Szoecs\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Frederik\", family = \"Aust\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4900-788X\")), person(given = \"Angus\", family = \"Moore\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Nick\", family = \"Williams\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Marius\", family = \"Barth\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-3421-6665\")), person(given = \"Bruna\", family = \"Wundervald\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-8163-220X\")), person(given = \"Joyce\", family = \"Cahoon\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-7217-4702\")), person(given = \"Grant\", family = \"McDermott\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-7883-8573\")), person(given = \"Kevin\", family = \"Zarca\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Shiro\", family = \"Kuriwaki\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-5687-2647\")), person(given = \"Lukas\", family = \"Wallrich\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0003-2121-5177\")), person(given = \"James\", family = \"Martherus\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-8285-3300\")), person(given = \"Chuliang\", family = \"Xiao\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-8466-9398\")), person(given = \"Joseph\", family = \"Larmarange\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Max\", family = \"Kuhn\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Michal\", family = \"Bojanowski\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Hakon\", family = \"Malmedal\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Clara\", family = \"Wang\", role = \"ctb\"), person(given = \"Sergio\", family = \"Oller\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Luke\", family = \"Sonnet\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jim\", family = \"Hester\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Ben\", family = \"Schneider\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Bernie\", family = \"Gray\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-9190-6032\")), person(given = \"Mara\", family = \"Averick\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Aaron\", family = \"Jacobs\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Andreas\", family = \"Bender\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Sven\", family = \"Templer\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Paul-Christian\", family = \"Buerkner\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Matthew\", family = \"Kay\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Erwan\", family = \"Le Pennec\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Johan\", family = \"Junkka\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Hao\", family = \"Zhu\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Benjamin\", family = \"Soltoff\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Zoe\", family = \"Wilkinson Saldana\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Tyler\", family = \"Littlefield\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Charles T.\", family = \"Gray\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Shabbh E.\", family = \"Banks\", role = \"ctb\"), person(given = \"Serina\", family = \"Robinson\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Roger\", family = \"Bivand\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Riinu\", family = \"Ots\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Nicholas\", family = \"Williams\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Nina\", family = \"Jakobsen\", role = \"ctb\"), person(given = \"Michael\", family = \"Weylandt\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Lisa\", family = \"Lendway\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Karl\", family = \"Hailperin\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Josue\", family = \"Rodriguez\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jenny\", family = \"Bryan\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Chris\", family = \"Jarvis\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Greg\", family = \"Macfarlane\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Brian\", family = \"Mannakee\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Drew\", family = \"Tyre\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Shreyas\", family = \"Singh\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Laurens\", family = \"Geffert\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Hong\", family = \"Ooi\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Henrik\", family = \"Bengtsson\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Eduard\", family = \"Szocs\", role = \"ctb\", email = \"[email protected]\"), person(given = \"David\", family = \"Hugh-Jones\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Matthieu\", family = \"Stigler\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Hugo\", family = \"Tavares\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-9373-2726\")), person(given = \"R. Willem\", family = \"Vervoort\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Brenton M.\", family = \"Wiernik\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Josh\", family = \"Yamamoto\", role = \"ctb\", email = \"[email protected]\"), person(given = \"Jasme\", family = \"Lee\", role = \"ctb\"), person(given = \"Taren\", family = \"Sanders\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4504-6008\")), person(given = \"Ilaria\", family = \"Prosdocimi\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-8565-094X\")), person(given = \"Daniel D.\", family = \"Sjoberg\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0862-2018\")), person(given = \"Alex\", family = \"Reinhart\", role = \"ctb\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-6658-514X\")))",
"Description": "Summarizes key information about statistical objects in tidy tibbles. This makes it easy to report results, create plots and consistently work with large numbers of models at once. Broom provides three verbs that each provide different types of information about a model. tidy() summarizes information about model components such as coefficients of a regression. glance() reports information about an entire model, such as goodness of fit measures like AIC and BIC. augment() adds information about individual observations to a dataset, such as fitted values or influence 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",
"lifecycle",
"purrr",
"rlang",
"stringr",
"tibble (>= 3.0.0)",
"tidyr (>= 1.0.0)"
],
"Suggests": [
"AER",
"AUC",
"bbmle",
"betareg (>= 3.2-1)",
"biglm",
"binGroup",
"boot",
"btergm (>= 1.10.6)",
"car (>= 3.1-2)",
"carData",
"caret",
"cluster",
"cmprsk",
"coda",
"covr",
"drc",
"e1071",
"emmeans",
"epiR",
"ergm (>= 3.10.4)",
"fixest (>= 0.9.0)",
"gam (>= 1.15)",
"gee",
"geepack",
"ggplot2",
"glmnet",
"glmnetUtils",
"gmm",
"Hmisc",
"irlba",
"interp",
"joineRML",
"Kendall",
"knitr",
"ks",
"Lahman",
"lavaan (>= 0.6.18)",
"leaps",
"lfe",
"lm.beta",
"lme4",
"lmodel2",
"lmtest (>= 0.9.38)",
"lsmeans",
"maps",
"margins",
"MASS",
"mclust",
"mediation",
"metafor",
"mfx",
"mgcv",
"mlogit",
"modeldata",
"modeltests (>= 0.1.6)",
"muhaz",
"multcomp",
"network",
"nnet",
"orcutt (>= 2.2)",
"ordinal",
"plm",
"poLCA",
"psych",
"quantreg",
"rmarkdown",
"robust",
"robustbase",
"rsample",
"sandwich",
"spdep (>= 1.1)",
"spatialreg",
"speedglm",
"spelling",
"survey",
"survival (>= 3.6-4)",
"systemfit",
"testthat (>= 2.1.0)",
"tseries",
"vars",
"zoo"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"Language": "en-US",
"Collate": "'aaa-documentation-helper.R' 'null-and-default-tidiers.R' 'aer-tidiers.R' 'auc-tidiers.R' 'base-tidiers.R' 'bbmle-tidiers.R' 'betareg-tidiers.R' 'biglm-tidiers.R' 'bingroup-tidiers.R' 'boot-tidiers.R' 'broom-package.R' 'broom.R' 'btergm-tidiers.R' 'car-tidiers.R' 'caret-tidiers.R' 'cluster-tidiers.R' 'cmprsk-tidiers.R' 'data-frame-tidiers.R' 'deprecated-0-7-0.R' 'drc-tidiers.R' 'emmeans-tidiers.R' 'epiR-tidiers.R' 'ergm-tidiers.R' 'fixest-tidiers.R' 'gam-tidiers.R' 'geepack-tidiers.R' 'glmnet-cv-glmnet-tidiers.R' 'glmnet-glmnet-tidiers.R' 'gmm-tidiers.R' 'hmisc-tidiers.R' 'joinerml-tidiers.R' 'kendall-tidiers.R' 'ks-tidiers.R' 'lavaan-tidiers.R' 'leaps-tidiers.R' 'lfe-tidiers.R' 'list-irlba.R' 'list-optim-tidiers.R' 'list-svd-tidiers.R' 'list-tidiers.R' 'list-xyz-tidiers.R' 'lm-beta-tidiers.R' 'lmodel2-tidiers.R' 'lmtest-tidiers.R' 'maps-tidiers.R' 'margins-tidiers.R' 'mass-fitdistr-tidiers.R' 'mass-negbin-tidiers.R' 'mass-polr-tidiers.R' 'mass-ridgelm-tidiers.R' 'stats-lm-tidiers.R' 'mass-rlm-tidiers.R' 'mclust-tidiers.R' 'mediation-tidiers.R' 'metafor-tidiers.R' 'mfx-tidiers.R' 'mgcv-tidiers.R' 'mlogit-tidiers.R' 'muhaz-tidiers.R' 'multcomp-tidiers.R' 'nnet-tidiers.R' 'nobs.R' 'orcutt-tidiers.R' 'ordinal-clm-tidiers.R' 'ordinal-clmm-tidiers.R' 'plm-tidiers.R' 'polca-tidiers.R' 'psych-tidiers.R' 'stats-nls-tidiers.R' 'quantreg-nlrq-tidiers.R' 'quantreg-rq-tidiers.R' 'quantreg-rqs-tidiers.R' 'robust-glmrob-tidiers.R' 'robust-lmrob-tidiers.R' 'robustbase-glmrob-tidiers.R' 'robustbase-lmrob-tidiers.R' 'sp-tidiers.R' 'spdep-tidiers.R' 'speedglm-speedglm-tidiers.R' 'speedglm-speedlm-tidiers.R' 'stats-anova-tidiers.R' 'stats-arima-tidiers.R' 'stats-decompose-tidiers.R' 'stats-factanal-tidiers.R' 'stats-glm-tidiers.R' 'stats-htest-tidiers.R' 'stats-kmeans-tidiers.R' 'stats-loess-tidiers.R' 'stats-mlm-tidiers.R' 'stats-prcomp-tidiers.R' 'stats-smooth.spline-tidiers.R' 'stats-summary-lm-tidiers.R' 'stats-time-series-tidiers.R' 'survey-tidiers.R' 'survival-aareg-tidiers.R' 'survival-cch-tidiers.R' 'survival-coxph-tidiers.R' 'survival-pyears-tidiers.R' 'survival-survdiff-tidiers.R' 'survival-survexp-tidiers.R' 'survival-survfit-tidiers.R' 'survival-survreg-tidiers.R' 'systemfit-tidiers.R' 'tseries-tidiers.R' 'utilities.R' 'vars-tidiers.R' 'zoo-tidiers.R' 'zzz.R'",
"NeedsCompilation": "no",
"Author": "David Robinson [aut], Alex Hayes [aut] (<https://orcid.org/0000-0002-4985-5160>), Simon Couch [aut, cre] (<https://orcid.org/0000-0001-5676-5107>), Posit Software, PBC [cph, fnd], Indrajeet Patil [ctb] (<https://orcid.org/0000-0003-1995-6531>), Derek Chiu [ctb], Matthieu Gomez [ctb], Boris Demeshev [ctb], Dieter Menne [ctb], Benjamin Nutter [ctb], Luke Johnston [ctb], Ben Bolker [ctb], Francois Briatte [ctb], Jeffrey Arnold [ctb], Jonah Gabry [ctb], Luciano Selzer [ctb], Gavin Simpson [ctb], Jens Preussner [ctb], Jay Hesselberth [ctb], Hadley Wickham [ctb], Matthew Lincoln [ctb], Alessandro Gasparini [ctb], Lukasz Komsta [ctb], Frederick Novometsky [ctb], Wilson Freitas [ctb], Michelle Evans [ctb], Jason Cory Brunson [ctb], Simon Jackson [ctb], Ben Whalley [ctb], Karissa Whiting [ctb], Yves Rosseel [ctb], Michael Kuehn [ctb], Jorge Cimentada [ctb], Erle Holgersen [ctb], Karl Dunkle Werner [ctb] (<https://orcid.org/0000-0003-0523-7309>), Ethan Christensen [ctb], Steven Pav [ctb], Paul PJ [ctb], Ben Schneider [ctb], Patrick Kennedy [ctb], Lily Medina [ctb], Brian Fannin [ctb], Jason Muhlenkamp [ctb], Matt Lehman [ctb], Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>), Nic Crane [ctb], Andrew Bates [ctb], Vincent Arel-Bundock [ctb] (<https://orcid.org/0000-0003-2042-7063>), Hideaki Hayashi [ctb], Luis Tobalina [ctb], Annie Wang [ctb], Wei Yang Tham [ctb], Clara Wang [ctb], Abby Smith [ctb] (<https://orcid.org/0000-0002-3207-0375>), Jasper Cooper [ctb] (<https://orcid.org/0000-0002-8639-3188>), E Auden Krauska [ctb] (<https://orcid.org/0000-0002-1466-5850>), Alex Wang [ctb], Malcolm Barrett [ctb] (<https://orcid.org/0000-0003-0299-5825>), Charles Gray [ctb] (<https://orcid.org/0000-0002-9978-011X>), Jared Wilber [ctb], Vilmantas Gegzna [ctb] (<https://orcid.org/0000-0002-9500-5167>), Eduard Szoecs [ctb], Frederik Aust [ctb] (<https://orcid.org/0000-0003-4900-788X>), Angus Moore [ctb], Nick Williams [ctb], Marius Barth [ctb] (<https://orcid.org/0000-0002-3421-6665>), Bruna Wundervald [ctb] (<https://orcid.org/0000-0001-8163-220X>), Joyce Cahoon [ctb] (<https://orcid.org/0000-0001-7217-4702>), Grant McDermott [ctb] (<https://orcid.org/0000-0001-7883-8573>), Kevin Zarca [ctb], Shiro Kuriwaki [ctb] (<https://orcid.org/0000-0002-5687-2647>), Lukas Wallrich [ctb] (<https://orcid.org/0000-0003-2121-5177>), James Martherus [ctb] (<https://orcid.org/0000-0002-8285-3300>), Chuliang Xiao [ctb] (<https://orcid.org/0000-0002-8466-9398>), Joseph Larmarange [ctb], Max Kuhn [ctb], Michal Bojanowski [ctb], Hakon Malmedal [ctb], Clara Wang [ctb], Sergio Oller [ctb], Luke Sonnet [ctb], Jim Hester [ctb], Ben Schneider [ctb], Bernie Gray [ctb] (<https://orcid.org/0000-0001-9190-6032>), Mara Averick [ctb], Aaron Jacobs [ctb], Andreas Bender [ctb], Sven Templer [ctb], Paul-Christian Buerkner [ctb], Matthew Kay [ctb], Erwan Le Pennec [ctb], Johan Junkka [ctb], Hao Zhu [ctb], Benjamin Soltoff [ctb], Zoe Wilkinson Saldana [ctb], Tyler Littlefield [ctb], Charles T. Gray [ctb], Shabbh E. Banks [ctb], Serina Robinson [ctb], Roger Bivand [ctb], Riinu Ots [ctb], Nicholas Williams [ctb], Nina Jakobsen [ctb], Michael Weylandt [ctb], Lisa Lendway [ctb], Karl Hailperin [ctb], Josue Rodriguez [ctb], Jenny Bryan [ctb], Chris Jarvis [ctb], Greg Macfarlane [ctb], Brian Mannakee [ctb], Drew Tyre [ctb], Shreyas Singh [ctb], Laurens Geffert [ctb], Hong Ooi [ctb], Henrik Bengtsson [ctb], Eduard Szocs [ctb], David Hugh-Jones [ctb], Matthieu Stigler [ctb], Hugo Tavares [ctb] (<https://orcid.org/0000-0001-9373-2726>), R. Willem Vervoort [ctb], Brenton M. Wiernik [ctb], Josh Yamamoto [ctb], Jasme Lee [ctb], Taren Sanders [ctb] (<https://orcid.org/0000-0002-4504-6008>), Ilaria Prosdocimi [ctb] (<https://orcid.org/0000-0001-8565-094X>), Daniel D. Sjoberg [ctb] (<https://orcid.org/0000-0003-0862-2018>), Alex Reinhart [ctb] (<https://orcid.org/0000-0002-6658-514X>)",
"Maintainer": "Simon Couch <[email protected]>",
"Repository": "CRAN"
},
"broom.mixed": {
"Package": "broom.mixed",
"Version": "0.2.9.6",
"Source": "Repository",
"Type": "Package",
"Title": "Tidying Methods for Mixed Models",
"Authors@R": "c( person(\"Ben\", \"Bolker\", email = \"[email protected]\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0002-2127-0443\")), person(\"David\", \"Robinson\", email = \"[email protected]\", role = \"aut\"), person(\"Dieter\", \"Menne\", role = \"ctb\"), person(\"Jonah\", \"Gabry\", role = \"ctb\"), person(\"Paul\", \"Buerkner\", role = \"ctb\"), person(\"Christopher\", \"Hua\", role = \"ctb\"), person(\"William\", \"Petry\", role = \"ctb\", comment=c(ORCID=\"0000-0002-5230-5987\")), person(\"Joshua\", \"Wiley\", role = \"ctb\", comment=c(ORCID=\"0000-0002-0271-6702\")), person(\"Patrick\", \"Kennedy\", role = \"ctb\"), person(\"Eduard\", \"Szöcs\", role = \"ctb\", comment=c(ORCID = \"0000-0001-5376-1194\", sponsor = \"BASF SE\")), person(\"Indrajeet\", \"Patil\", role=\"ctb\"), person(\"Vincent\", \"Arel-Bundock\", email = \"[email protected]\", role = \"ctb\", comment = c(ORCID = \"0000-0003-2042-7063\")), person(\"Bill\", \"Denney\", role = \"ctb\"), person(\"Cory\", \"Brunson\", role = \"ctb\"), person(\"Joe\", \"Wasserman\", role = \"ctb\", comment = c(ORCID = \"0000-0002-9705-1853\")), person(\"Alexey\", \"Stukalov\", role = \"ctb\"), person(\"Matthieu\", \"Bruneaux\", role = \"ctb\") )",
"Maintainer": "Ben Bolker <[email protected]>",
"Description": "Convert fitted objects from various R mixed-model packages into tidy data frames along the lines of the 'broom' package. The package provides three S3 generics for each model: tidy(), which summarizes a model's statistical findings such as coefficients of a regression; augment(), which adds columns to the original data such as predictions, residuals and cluster assignments; and glance(), which provides a one-row summary of model-level statistics.",
"Imports": [
"broom",
"coda",
"dplyr",
"forcats",
"methods",
"nlme",
"purrr",
"stringr",
"tibble",
"tidyr",
"furrr"
],
"Suggests": [
"brms",
"dotwhisker",
"knitr",
"testthat",
"gamlss",
"gamlss.data",
"ggplot2",
"GLMMadaptive",
"glmmADMB",
"glmmTMB",
"lmerTest",
"lme4",
"Matrix",
"MCMCglmm",
"mediation",
"mgcv",
"ordinal",
"pander",
"pbkrtest",
"posterior",
"rstan",
"rstanarm",
"rstantools",
"R2jags",
"TMB",
"rmarkdown"
],
"URL": "https://github.com/bbolker/broom.mixed",
"BugReports": "https://github.com/bbolker/broom.mixed/issues",
"License": "GPL-3",
"Encoding": "UTF-8",
"Additional_repositories": "http://bbolker.github.io/drat",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.3.2",
"NeedsCompilation": "no",
"Author": "Ben Bolker [aut, cre] (<https://orcid.org/0000-0002-2127-0443>), David Robinson [aut], Dieter Menne [ctb], Jonah Gabry [ctb], Paul Buerkner [ctb], Christopher Hua [ctb], William Petry [ctb] (<https://orcid.org/0000-0002-5230-5987>), Joshua Wiley [ctb] (<https://orcid.org/0000-0002-0271-6702>), Patrick Kennedy [ctb], Eduard Szöcs [ctb] (<https://orcid.org/0000-0001-5376-1194>, BASF SE), Indrajeet Patil [ctb], Vincent Arel-Bundock [ctb] (<https://orcid.org/0000-0003-2042-7063>), Bill Denney [ctb], Cory Brunson [ctb], Joe Wasserman [ctb] (<https://orcid.org/0000-0002-9705-1853>), Alexey Stukalov [ctb], Matthieu Bruneaux [ctb]",
"Repository": "CRAN"
},
"bslib": {
"Package": "bslib",
"Version": "0.8.0",
"Source": "Repository",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Authors@R": "c( person(\"Carson\", \"Sievert\", , \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-4958-2844\")), person(\"Joe\", \"Cheng\", , \"[email protected]\", role = \"aut\"), person(\"Garrick\", \"Aden-Buie\", , \"[email protected]\", role = \"aut\", comment = c(ORCID = \"0000-0002-7111-0077\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")), person(, \"Bootstrap contributors\", role = \"ctb\", comment = \"Bootstrap library\"), person(, \"Twitter, Inc\", role = \"cph\", comment = \"Bootstrap library\"), person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap colorpicker library\"), person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"), comment = \"Bootswatch library\"), person(, \"PayPal\", role = c(\"ctb\", \"cph\"), comment = \"Bootstrap accessibility plugin\") )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and 'rmarkdown' via 'Bootstrap' 'Sass'. Supports 'Bootstrap' 3, 4 and 5 as well as their various 'Bootswatch' themes. An interactive widget is also provided for previewing themes in real time.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"Depends": [
"R (>= 2.10)"
],
"Imports": [
"base64enc",
"cachem",
"fastmap (>= 1.1.1)",
"grDevices",
"htmltools (>= 0.5.8)",
"jquerylib (>= 0.1.3)",
"jsonlite",
"lifecycle",
"memoise (>= 2.0.1)",
"mime",
"rlang",
"sass (>= 0.4.9)"
],
"Suggests": [
"bsicons",
"curl",
"fontawesome",
"future",
"ggplot2",
"knitr",
"magrittr",
"rappdirs",
"rmarkdown (>= 2.7)",
"shiny (> 1.8.1)",
"testthat",
"thematic",
"withr"
],
"Config/Needs/deploy": "BH, chiflights22, colourpicker, commonmark, cpp11, cpsievert/chiflights22, cpsievert/histoslider, dplyr, DT, ggplot2, ggridges, gt, hexbin, histoslider, htmlwidgets, lattice, leaflet, lubridate, modelr, plotly, reactable, reshape2, rprojroot, rsconnect, rstudio/shiny, scales, styler, tibble",
"Config/Needs/routine": "chromote, desc, renv",
"Config/Needs/website": "brio, crosstalk, dplyr, DT, ggplot2, glue, htmlwidgets, leaflet, lorem, palmerpenguins, plotly, purrr, rprojroot, rstudio/htmltools, scales, stringr, tidyr, webshot2",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "zzzz-bs-sass, fonts, zzz-precompile, theme-*, rmd-*",
"Encoding": "UTF-8",
"RoxygenNote": "7.3.2",
"Collate": "'accordion.R' 'breakpoints.R' 'bs-current-theme.R' 'bs-dependencies.R' 'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'bs-theme-preset-bootswatch.R' 'bs-theme-preset-builtin.R' 'bs-theme-preset.R' 'utils.R' 'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R' 'bslib-package.R' 'buttons.R' 'card.R' 'deprecated.R' 'files.R' 'fill.R' 'imports.R' 'input-dark-mode.R' 'input-switch.R' 'layout.R' 'nav-items.R' 'nav-update.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R' 'popover.R' 'precompiled.R' 'print.R' 'shiny-devmode.R' 'sidebar.R' 'staticimports.R' 'tooltip.R' 'utils-deps.R' 'utils-shiny.R' 'utils-tags.R' 'value-box.R' 'version-default.R' 'versions.R'",
"NeedsCompilation": "no",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>), Joe Cheng [aut], Garrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>), Posit Software, PBC [cph, fnd], Bootstrap contributors [ctb] (Bootstrap library), Twitter, Inc [cph] (Bootstrap library), Javi Aguilar [ctb, cph] (Bootstrap colorpicker library), Thomas Park [ctb, cph] (Bootswatch library), PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN"
},
"cachem": {
"Package": "cachem",
"Version": "1.1.0",
"Source": "Repository",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit either their total size or the age of the oldest object (or both), automatically pruning objects to maintain the constraints.",
"Authors@R": "c( person(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")), person(family = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": [
"rlang",
"fastmap (>= 1.2.0)"
],
"Suggests": [
"testthat"
],
"RoxygenNote": "7.2.3",
"Config/Needs/routine": "lobstr",
"Config/Needs/website": "pkgdown",
"NeedsCompilation": "yes",
"Author": "Winston Chang [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN"
},
"caret": {
"Package": "caret",
"Version": "6.0-94",
"Source": "Repository",
"Title": "Classification and Regression Training",
"Authors@R": "c(person(given = \"Max\", family = \"Kuhn\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-2402-136X\")), person(given = \"Jed\", family = \"Wing\", role = \"ctb\"), person(given = \"Steve\", family = \"Weston\", role = \"ctb\"), person(given = \"Andre\", family = \"Williams\", role = \"ctb\"), person(given = \"Chris\", family = \"Keefer\", role = \"ctb\"), person(given = \"Allan\", family = \"Engelhardt\", role = \"ctb\"), person(given = \"Tony\", family = \"Cooper\", role = \"ctb\"), person(given = \"Zachary\", family = \"Mayer\", role = \"ctb\"), person(given = \"Brenton\", family = \"Kenkel\", role = \"ctb\"), person(given = \"R Core Team\", role = \"ctb\"), person(given = \"Michael\", family = \"Benesty\", role = \"ctb\"), person(given = \"Reynald\", family = \"Lescarbeau\", role = \"ctb\"), person(given = \"Andrew\", family = \"Ziem\", role = \"ctb\"), person(given = \"Luca\", family = \"Scrucca\", role = \"ctb\"), person(given = \"Yuan\", family = \"Tang\", role = \"ctb\"), person(given = \"Can\", family = \"Candan\", role = \"ctb\"), person(given = \"Tyler\", family = \"Hunt\", role = \"ctb\"))",
"Description": "Misc functions for training and plotting classification and regression models.",
"License": "GPL (>= 2)",
"URL": "https://github.com/topepo/caret/",
"BugReports": "https://github.com/topepo/caret/issues",
"Depends": [
"ggplot2",
"lattice (>= 0.20)",
"R (>= 3.2.0)"
],
"Imports": [
"e1071",
"foreach",
"grDevices",
"methods",
"ModelMetrics (>= 1.2.2.2)",
"nlme",
"plyr",
"pROC",
"recipes (>= 0.1.10)",
"reshape2",
"stats",
"stats4",
"utils",
"withr (>= 2.0.0)"
],
"Suggests": [
"BradleyTerry2",
"covr",
"Cubist",
"dplyr",
"earth (>= 2.2-3)",
"ellipse",
"fastICA",
"gam (>= 1.15)",
"ipred",
"kernlab",
"klaR",
"knitr",
"MASS",
"Matrix",
"mda",
"mgcv",
"mlbench",
"MLmetrics",
"nnet",
"pamr",
"party (>= 0.9-99992)",
"pls",
"proxy",
"randomForest",
"RANN",
"rmarkdown",
"rpart",
"spls",
"subselect",
"superpc",
"testthat (>= 0.9.1)",
"themis (>= 0.1.3)"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Max Kuhn [aut, cre] (<https://orcid.org/0000-0003-2402-136X>), Jed Wing [ctb], Steve Weston [ctb], Andre Williams [ctb], Chris Keefer [ctb], Allan Engelhardt [ctb], Tony Cooper [ctb], Zachary Mayer [ctb], Brenton Kenkel [ctb], R Core Team [ctb], Michael Benesty [ctb], Reynald Lescarbeau [ctb], Andrew Ziem [ctb], Luca Scrucca [ctb], Yuan Tang [ctb], Can Candan [ctb], Tyler Hunt [ctb]",
"Maintainer": "Max Kuhn <[email protected]>",
"Repository": "CRAN"
},
"ceterisParibus": {
"Package": "ceterisParibus",
"Version": "0.4.2",
"Source": "Repository",
"Title": "Ceteris Paribus Profiles",
"Authors@R": "person(\"Przemyslaw\", \"Biecek\", email = \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0001-8423-1823\"))",
"Description": "Ceteris Paribus Profiles (What-If Plots) are designed to present model responses around selected points in a feature space. For example around a single prediction for an interesting observation. Plots are designed to work in a model-agnostic fashion, they are working for any predictive Machine Learning model and allow for model comparisons. Ceteris Paribus Plots supplement the Break Down Plots from 'breakDown' package.",
"Depends": [
"R (>= 3.3)",
"ggplot2",
"gower"
],
"Suggests": [
"randomForest",
"ggiraph",
"e1071",
"testthat",
"rpart"
],
"Imports": [
"DALEX",
"knitr"
],
"License": "GPL-2",
"Encoding": "UTF-8",
"LazyData": "true",
"URL": "https://pbiecek.github.io/ceterisParibus/",
"BugReports": "https://github.com/pbiecek/ceterisParibus/issues",
"RoxygenNote": "7.1.0",