-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
3947 lines (3946 loc) · 338 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.3.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"BH": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "BH",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Version": "1.81.0-1",
"Date": "2023-01-17",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "Boost provides free peer-reviewed portable C++ source\nlibraries. A large part of Boost is provided as C++ template code\nwhich is resolved entirely at compile-time without linking. This\npackage aims to provide the most useful subset of Boost libraries\nfor template use among CRAN packages. By placing these libraries in\nthis package, we offer a more efficient distribution system for CRAN\nas replication of this code in the sources of other packages is\navoided. As of release 1.81.0-0, the following Boost libraries are\nincluded: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast'\n'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config'\n'container' 'date_time' 'detail' 'dynamic_bitset' 'exception'\n'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap'\n'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams'\n'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision'\n'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process'\n'propery_tree' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort'\n'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' '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": "2023-01-17 22:52:33 UTC; edd",
"Repository": "RSPM",
"Date/Publication": "2023-01-22 08:20:02 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; ; 2023-04-21 22:20:51 UTC; unix"
}
},
"DBI": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "DBI",
"Title": "R Database Interface",
"Version": "1.1.3",
"Date": "2022-06-18",
"Authors@R": "c(\nperson(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"),\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Kirill\", \"Müller\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-1416-3412\")),\nperson(\"R Consortium\", role = \"fnd\")\n)",
"Description": "A database interface definition for communication between R\nand relational database management systems. All classes in this\npackage are virtual and need to be extended by the various R/DBMS\nimplementations.",
"License": "LGPL (>= 2.1)",
"URL": "https://dbi.r-dbi.org, https://github.com/r-dbi/DBI",
"BugReports": "https://github.com/r-dbi/DBI/issues",
"Depends": "methods, R (>= 3.0.0)",
"Suggests": "blob, covr, DBItest, dbplyr, downlit, dplyr, glue, hms,\nknitr, magrittr, RMariaDB, rmarkdown, rprojroot, RSQLite (>=\n1.1-2), testthat, xml2",
"VignetteBuilder": "knitr",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"Config/Needs/check": "r-dbi/DBItest",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.0",
"Config/Needs/website": "r-dbi/DBItest, AzureKusto, bigrquery,\nDatabaseConnector, dittodb, duckdb, implyr, lazysf, odbc, pool,\nRAthena, IMSMWU/RClickhouse, RH2, RJDBC, RMariaDB, RMySQL,\nRPostgres, RPostgreSQL, RPresto, RSQLite, sergeant, sparklyr,\nwithr",
"Collate": "'DBIObject.R' 'DBIDriver.R' 'Id.R' 'DBIConnection.R' 'ANSI.R'\n'DBI-package.R' 'DBIConnector.R' 'DBIResult.R' 'SQL.R'\n'SQLKeywords.R' 'SQLKeywords_DBIObject.R'\n'SQLKeywords_missing.R' 'data-types.R' 'data.R'\n'dbAppendTable.R' 'dbAppendTable_DBIConnection.R' 'dbBegin.R'\n'dbBind.R' 'dbCallProc.R' 'dbCanConnect.R'\n'dbCanConnect_DBIDriver.R' 'dbClearResult.R' 'dbColumnInfo.R'\n'dbCommit.R' 'dbConnect.R' 'dbConnect_DBIConnector.R'\n'dbCreateTable.R' 'dbCreateTable_DBIConnection.R'\n'dbDataType.R' 'dbDataType_DBIConnector.R'\n'dbDataType_DBIObject.R' 'dbDisconnect.R' 'dbDriver.R'\n'dbDriver_character.R' 'dbExecute.R'\n'dbExecute_DBIConnection_character.R' 'dbExistsTable.R'\n'dbExistsTable_DBIConnection_Id.R' 'dbFetch.R'\n'dbFetch_DBIResult.R' 'dbGetConnectArgs.R'\n'dbGetConnectArgs_DBIConnector.R' 'dbGetException.R'\n'dbGetInfo.R' 'dbGetInfo_DBIResult.R' 'dbGetQuery.R'\n'dbGetQuery_DBIConnection_character.R' 'dbGetRowCount.R'\n'dbGetRowsAffected.R' 'dbGetStatement.R' 'dbHasCompleted.R'\n'dbIsReadOnly.R' 'dbIsReadOnly_DBIConnector.R'\n'dbIsReadOnly_DBIObject.R' 'dbIsValid.R' 'dbListConnections.R'\n'dbListFields.R' 'dbListFields_DBIConnection_Id.R'\n'dbListFields_DBIConnection_character.R' 'dbListObjects.R'\n'dbListObjects_DBIConnection_ANY.R' 'dbListResults.R'\n'dbListTables.R' 'dbQuoteIdentifier.R'\n'dbQuoteIdentifier_DBIConnection.R' 'dbQuoteLiteral.R'\n'dbQuoteLiteral_DBIConnection.R' 'dbQuoteString.R'\n'dbQuoteString_DBIConnection.R' 'dbReadTable.R'\n'dbReadTable_DBIConnection_Id.R'\n'dbReadTable_DBIConnection_character.R' 'dbRemoveTable.R'\n'dbRemoveTable_DBIConnection_Id.R' 'dbRollback.R'\n'dbSendQuery.R' 'dbSendStatement.R'\n'dbSendStatement_DBIConnection_character.R'\n'dbSetDataMappings.R' 'dbUnloadDriver.R'\n'dbUnquoteIdentifier.R' 'dbUnquoteIdentifier_DBIConnection.R'\n'dbWithTransaction.R' 'dbWithTransaction_DBIConnection.R'\n'dbWriteTable.R' 'dbWriteTable_DBIConnection_Id_ANY.R'\n'dbiDataType.R' 'dbiDataType_AsIs.R' 'dbiDataType_Date.R'\n'dbiDataType_POSIXct.R' 'dbiDataType_character.R'\n'dbiDataType_data.frame.R' 'dbiDataType_difftime.R'\n'dbiDataType_integer.R' 'dbiDataType_list.R'\n'dbiDataType_logical.R' 'dbiDataType_numeric.R' 'deprecated.R'\n'fetch.R' 'hms.R' 'interpolate.R' 'isSQLKeyword.R'\n'isSQLKeyword_DBIObject_character.R' 'make.db.names.R'\n'make.db.names_DBIObject_character.R' 'methods_as_rd.R'\n'rownames.R' 'show_AnsiConnection.R' 'show_DBIConnection.R'\n'show_DBIConnector.R' 'show_DBIDriver.R' 'show_DBIResult.R'\n'show_Id.R' 'show_SQL.R' 'sqlAppendTable.R'\n'sqlAppendTableTemplate.R' 'sqlAppendTable_DBIConnection.R'\n'sqlCreateTable.R' 'sqlCreateTable_DBIConnection.R' 'sqlData.R'\n'sqlData_DBIConnection.R' 'sqlInterpolate.R'\n'sqlInterpolate_DBIConnection.R' 'sqlParseVariables.R'\n'sqlParseVariables_DBIConnection.R' 'summary.R'\n'summary_DBIObject.R' 'transactions.R'",
"NeedsCompilation": "no",
"Packaged": "2022-06-18 01:24:38 UTC; kirill",
"Author": "R Special Interest Group on Databases (R-SIG-DB) [aut],\nHadley Wickham [aut],\nKirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\nR Consortium [fnd]",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2022-06-18 07:10:15 UTC",
"Built": "R 4.3.0; ; 2023-04-21 21:46:30 UTC; unix"
}
},
"DT": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.29",
"Authors@R": "c(\nperson(\"Yihui\", \"Xie\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\"),\nperson(\"Xianying\", \"Tan\", role = \"aut\"),\nperson(\"JJ\", \"Allaire\", role = \"ctb\"),\nperson(\"Maximilian\", \"Girlich\", role = \"ctb\"),\nperson(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\nperson(\"Johannes\", \"Rauh\", role = \"ctb\"),\nperson(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\nperson(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\nperson(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\nperson(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\nperson(\"Alex\", \"Pickering\", role = c(\"ctb\")),\nperson(\"William\", \"Holmes\", role = c(\"ctb\")),\nperson(\"Mikko\", \"Marttila\", role = c(\"ctb\")),\nperson(\"Andres\", \"Quintero\", role = c(\"ctb\")),\nperson(\"Stéphane\", \"Laurent\", role = c(\"ctb\")),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)",
"Maintainer": "Yihui Xie <[email protected]>",
"Description": "Data objects in R can be rendered as HTML tables using the\nJavaScript 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.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2023-08-29 14:02:15 UTC; yihui",
"Author": "Yihui Xie [aut, cre],\nJoe Cheng [aut],\nXianying Tan [aut],\nJJ Allaire [ctb],\nMaximilian Girlich [ctb],\nGreg Freedman Ellis [ctb],\nJohannes Rauh [ctb],\nSpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\nBrian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\nLeon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\nBartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\nAlex Pickering [ctb],\nWilliam Holmes [ctb],\nMikko Marttila [ctb],\nAndres Quintero [ctb],\nStéphane Laurent [ctb],\nPosit Software, PBC [cph, fnd]",
"Repository": "RSPM",
"Date/Publication": "2023-08-29 18:00:02 UTC",
"Built": "R 4.3.0; ; 2023-08-30 23:37:16 UTC; unix"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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\"),\nemail = \"[email protected]\"),\nperson(\"Bill\", \"Venables\", role = \"ctb\"),\nperson(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\nperson(\"Kurt\", \"Hornik\", role = \"trl\",\ncomment = \"partial port ca 1998\"),\nperson(\"Albrecht\", \"Gebhardt\", role = \"trl\",\ncomment = \"partial port ca 1998\"),\nperson(\"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],\nBill Venables [ctb],\nDouglas M. Bates [ctb],\nKurt Hornik [trl] (partial port ca 1998),\nAlbrecht Gebhardt [trl] (partial port ca 1998),\nDavid Firth [ctb]",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-05-04 07:32:21 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-17 16:36:14 UTC; unix"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "Matrix",
"Version": "1.5-4.1",
"Date": "2023-05-16",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Description": "A rich hierarchy of sparse and dense matrix classes,\nincluding general, triangular, symmetric, and diagonal matrices\nwith numeric, logical, or pattern entries. Efficient methods for\noperating on such matrices, often wrapping the 'BLAS', 'LAPACK',\nand '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\",\ncomment = c(ORCID = \"0000-0001-8316-9503\"))\n, person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"),\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-8685-9910\"))\n, person(\"Mikael\", \"Jagan\", role = \"aut\",\ncomment = c(ORCID = \"0000-0002-3542-2938\"))\n, person(\"Timothy A.\", \"Davis\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0001-7614-6899\",\n\"SuiteSparse libraries, notably CHOLMOD and AMD\",\n\"collaborators listed in dir(pattern=\\\"^[A-Z]+[.]txt$\\\", full.names=TRUE, system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"))\"))\n, person(\"Jens\", \"Oehlschlägel\", role = \"ctb\",\ncomment = \"initial nearPD()\")\n, person(\"Jason\", \"Riedy\", role = \"ctb\",\ncomment = c(ORCID = \"0000-0002-4345-4200\",\n\"GNU Octave's condest() and onenormest()\",\n\"Copyright: Regents of the University of California\"))\n, person(\"R Core Team\", role = \"ctb\",\ncomment = \"base R's matrix implementation\"))",
"Depends": "R (>= 3.5.0), methods",
"Imports": "graphics, grid, lattice, stats, utils",
"Suggests": "MASS, expm",
"Enhances": "MatrixModels, SparseM, graph, igraph, maptools, sfsmisc, sp,\nspdep",
"EnhancesNote": "igraph, maptools, sp, spdep for Rd xrefs",
"LazyData": "no",
"LazyDataNote": "not possible, since we use data/*.R and our S4 classes",
"BuildResaveData": "no",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-05-17 11:35:52 UTC; maechler",
"Author": "Douglas Bates [aut] (<https://orcid.org/0000-0001-8316-9503>),\nMartin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\nMikael Jagan [aut] (<https://orcid.org/0000-0002-3542-2938>),\nTimothy A. Davis [ctb] (<https://orcid.org/0000-0001-7614-6899>,\nSuiteSparse libraries, notably CHOLMOD and AMD, collaborators\nlisted in dir(pattern=\"^[A-Z]+[.]txt$\", full.names=TRUE,\nsystem.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"))),\nJens Oehlschlägel [ctb] (initial nearPD()),\nJason Riedy [ctb] (<https://orcid.org/0000-0002-4345-4200>, GNU\nOctave's condest() and onenormest(), Copyright: Regents of the\nUniversity of California),\nR Core Team [ctb] (base R's matrix implementation)",
"Maintainer": "Martin Maechler <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-05-18 08:02:19 UTC",
"Built": "R 4.3.1; x86_64-pc-linux-gnu; 2023-08-17 16:36:39 UTC; unix"
}
},
"R.methodsS3": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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\"),\nemail = \"[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": "RSPM",
"Date/Publication": "2022-06-13 22:00:14 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; ; 2023-05-30 12:53:15 UTC; unix"
}
},
"R.oo": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "R.oo",
"Version": "1.25.0",
"Depends": "R (>= 2.13.0), R.methodsS3 (>= 1.8.1)",
"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\"),\nemail = \"[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": "2022-06-12 00:26:52 UTC; hb",
"Repository": "RSPM",
"Date/Publication": "2022-06-12 02:20:02 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; ; 2023-04-21 23:17:21 UTC; unix"
}
},
"R.utils": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "R.utils",
"Version": "2.12.2",
"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\"),\nemail = \"[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": "2022-11-11 18:51:45 UTC; hb",
"Repository": "RSPM",
"Date/Publication": "2022-11-11 22:00:03 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; ; 2023-04-21 23:19:45 UTC; unix"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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\nreference classes. Compared to reference classes, R6 classes are simpler\nand lighter-weight, and they are not built on S4 classes so they do not\nrequire the methods package. These classes allow public and private\nmembers, and they support inheritance, even when the classes are defined in\ndifferent 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": "RSPM",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; ; 2023-04-21 21:51:10 UTC; unix"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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)\ndesigned 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": "RSPM",
"Date/Publication": "2022-04-03 19:20:13 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; ; 2023-04-21 21:44:53 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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,\nNathan 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\noffer a seamless integration of R and C++. Many R data types and objects can be\nmapped back and forth to C++ equivalents which facilitates both writing of new\ncode as well as easier integration of third-party libraries. Documentation\nabout '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\nFrancois (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": "RSPM",
"Date/Publication": "2023-07-06 07:33:14 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:13:44 UTC; unix"
}
},
"XML": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "XML",
"Version": "3.99-0.14",
"Authors@R": "c(person(\"CRAN Team\", role = c('ctb', 'cre'),\nemail = \"[email protected]\",\ncomment = \"de facto maintainer since 2013\"),\nperson(\"Duncan\", \"Temple Lang\", role = c(\"aut\"),\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-0159-1546\")),\nperson(\"Tomas\", \"Kalibera\", role = \"ctb\"))",
"Title": "Tools for Parsing and Generating XML Within R and S-Plus",
"Depends": "R (>= 4.0.0), methods, utils",
"Suggests": "bitops, RCurl",
"SystemRequirements": "libxml2 (>= 2.6.3)",
"Description": "Many approaches for both reading and\ncreating XML (and HTML) documents (including DTDs), both local\nand accessible via HTTP or FTP. Also offers access to an\n'XPath' \"interpreter\".",
"URL": "https://www.omegahat.net/RSXML/",
"License": "BSD_3_clause + file LICENSE",
"Collate": "AAA.R DTD.R DTDClasses.R DTDRef.R SAXMethods.R XMLClasses.R\napplyDOM.R assignChild.R catalog.R createNode.R dynSupports.R\nerror.R flatTree.R nodeAccessors.R parseDTD.R schema.R\nsummary.R tangle.R toString.R tree.R version.R xmlErrorEnums.R\nxmlEventHandler.R xmlEventParse.R xmlHandler.R\nxmlInternalSource.R xmlOutputDOM.R xmlNodes.R xmlOutputBuffer.R\nxmlTree.R xmlTreeParse.R htmlParse.R hashTree.R zzz.R\nsupports.R parser.R libxmlFeatures.R xmlString.R saveXML.R\nnamespaces.R readHTMLTable.R reflection.R xmlToDataFrame.R\nbitList.R compare.R encoding.R fixNS.R xmlRoot.R serialize.R\nxmlMemoryMgmt.R keyValueDB.R solrDocs.R XMLRErrorInfo.R\nxincludes.R namespaceHandlers.R tangle1.R htmlLinks.R\nhtmlLists.R getDependencies.R getRelativeURL.R xmlIncludes.R\nsimplifyPath.R",
"NeedsCompilation": "yes",
"Packaged": "2023-03-19 10:59:44 UTC; ripley",
"Author": "CRAN Team [ctb, cre] (de facto maintainer since 2013),\nDuncan Temple Lang [aut] (<https://orcid.org/0000-0003-0159-1546>),\nTomas Kalibera [ctb]",
"Maintainer": "CRAN Team <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-03-19 11:04:35 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-06-21 01:15:33 UTC; unix"
}
},
"anytime": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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,\nor ordered type into 'POSIXct' (or 'Date') objects, using one of a number of\npredefined 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": "RSPM",
"Date/Publication": "2020-08-27 11:40:21 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-07-10 02:22:34 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "askpass",
"Type": "Package",
"Title": "Safe Password Entry for R, Git, and SSH",
"Version": "1.1",
"Authors@R": "person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"),\nemail = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a\npassphrase, for example to authenticate with a server or read a protected key.\nIncludes native programs for MacOS and Windows, hence no 'tcltk' is required.\nPassword entry can be invoked in two different ways: directly from R via the\naskpass() function, or indirectly as password-entry back-end for 'ssh-agent'\nor 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\nThereby the user can be prompted for credentials or a passphrase if needed\nwhen R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/jeroen/askpass#readme",
"BugReports": "https://github.com/jeroen/askpass/issues",
"Encoding": "UTF-8",
"LazyData": "true",
"Imports": "sys (>= 2.1)",
"RoxygenNote": "6.1.1",
"Suggests": "testthat",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2019-01-13 12:08:17 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2019-01-13 12:50:03 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:18 UTC; unix"
}
},
"backports": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "backports",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Version": "1.4.1",
"Authors@R": "c(\nperson(\"Michel\", \"Lang\", NULL, \"[email protected]\",\nrole = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\nperson(\"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\npackage. The backports are conditionally exported in order to let R resolve\nthe function name to either the implemented backport, or the respective base\nversion, if available. Package developers can make use of new functions or\narguments by selectively importing specific backports to\nsupport 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>),\nR Core Team [aut]",
"Repository": "RSPM",
"Date/Publication": "2021-12-13 11:30:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:51:08 UTC; unix"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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": "RSPM",
"Date/Publication": "2015-07-28 08:03:37",
"Encoding": "UTF-8",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-11 13:38:05 UTC; unix"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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,\nfast boolean methods, fast unique and non-unique integer sorting,\nfast set operations on sorted and unsorted sets of integers, and\nfoundations 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": "RSPM",
"Date/Publication": "2022-11-15 21:20:16 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:43 UTC; unix"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"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": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers.\nThese are useful for handling database keys and exact counting in +-2^63.\nWARNING: do not use them as replacement for 32bit integers, integer64 are not\nsupported for subscripting by R-core and they have different semantics when\ncombined with double, e.g. integer64 + double => integer64.\nClass integer64 can be used in vectors, matrices, arrays and data.frames.\nMethods are available for coercion from and to logicals, integers, doubles,\ncharacters and factors as well as many elementwise and summary functions.\nMany fast algorithmic operations such as 'match' and 'order' support inter-\nactive 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": "RSPM",
"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.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:57 UTC; unix"
}
},
"blob": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "blob",
"Title": "A Simple S3 Class for Representing Vectors of Binary Data\n('BLOBS')",
"Version": "1.2.4",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", role = \"aut\"),\nperson(\"Kirill\", \"Müller\", , \"[email protected]\", role = \"cre\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "R's raw vector is useful for storing a single binary object.\nWhat if you want to put a vector of them in a data frame? The 'blob'\npackage provides the blob object, a list of raw vectors, suitable for\nuse as a column in data frame.",
"License": "MIT + file LICENSE",
"URL": "https://blob.tidyverse.org, https://github.com/tidyverse/blob",
"BugReports": "https://github.com/tidyverse/blob/issues",
"Imports": "methods, rlang, vctrs (>= 0.2.1)",
"Suggests": "covr, crayon, pillar (>= 1.2.1), testthat",
"Config/autostyle/scope": "line_breaks",
"Config/autostyle/strict": "false",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2023-03-17 09:42:50 UTC; kirill",
"Author": "Hadley Wickham [aut],\nKirill Müller [cre],\nRStudio [cph, fnd]",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-03-17 12:00:06 UTC",
"Built": "R 4.3.0; ; 2023-04-21 21:47:56 UTC; unix"
}
},
"boot": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "boot",
"Priority": "recommended",
"Version": "1.3-28.1",
"Date": "2022-11-21",
"Authors@R": "c(person(\"Angelo\", \"Canty\", role = \"aut\",\nemail = \"[email protected]\"),\nperson(\"Brian\", \"Ripley\", role = c(\"aut\", \"trl\", \"cre\"),\nemail = \"[email protected]\",\ncomment = \"author of parallel support\"))",
"Maintainer": "Brian Ripley <[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\nbook \"Bootstrap Methods and Their Application\" by A. C. Davison and\nD. V. Hinkley (1997, CUP), originally written by Angelo Canty for S.",
"Title": "Bootstrap Functions (Originally by Angelo Canty for S)",
"Depends": "R (>= 3.0.0), graphics, stats",
"Suggests": "MASS, survival",
"LazyData": "yes",
"ByteCompile": "yes",
"License": "Unlimited",
"NeedsCompilation": "no",
"Packaged": "2022-11-21 22:19:52 UTC; ripley",
"Author": "Angelo Canty [aut],\nBrian Ripley [aut, trl, cre] (author of parallel support)",
"Repository": "CRAN",
"Date/Publication": "2022-11-22 07:05:25 UTC",
"Built": "R 4.3.1; ; 2023-08-17 16:40:22 UTC; unix"
}
},
"broom": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Type": "Package",
"Package": "broom",
"Title": "Convert Statistical Objects into Tidy Tibbles",
"Version": "1.0.5",
"Authors@R": "c(person(given = \"David\",\nfamily = \"Robinson\",\nrole = \"aut\",\nemail = \"[email protected]\"),\nperson(given = \"Alex\",\nfamily = \"Hayes\",\nrole = \"aut\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-4985-5160\")),\nperson(given = \"Simon\",\nfamily = \"Couch\",\nrole = c(\"aut\", \"cre\"),\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-5676-5107\")),\nperson(given = \"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(given = \"Indrajeet\",\nfamily = \"Patil\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-1995-6531\")),\nperson(given = \"Derek\",\nfamily = \"Chiu\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Matthieu\",\nfamily = \"Gomez\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Boris\",\nfamily = \"Demeshev\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Dieter\",\nfamily = \"Menne\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Benjamin\",\nfamily = \"Nutter\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Luke\",\nfamily = \"Johnston\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Ben\",\nfamily = \"Bolker\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Francois\",\nfamily = \"Briatte\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jeffrey\",\nfamily = \"Arnold\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jonah\",\nfamily = \"Gabry\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Luciano\",\nfamily = \"Selzer\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Gavin\",\nfamily = \"Simpson\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jens\",\nfamily = \"Preussner\",\nrole = \"ctb\",\nemail = \" [email protected]\"),\nperson(given = \"Jay\",\nfamily = \"Hesselberth\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Hadley\",\nfamily = \"Wickham\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Matthew\",\nfamily = \"Lincoln\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Alessandro\",\nfamily = \"Gasparini\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Lukasz\",\nfamily = \"Komsta\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Frederick\",\nfamily = \"Novometsky\",\nrole = \"ctb\"),\nperson(given = \"Wilson\",\nfamily = \"Freitas\",\nrole = \"ctb\"),\nperson(given = \"Michelle\",\nfamily = \"Evans\",\nrole = \"ctb\"),\nperson(given = \"Jason Cory\",\nfamily = \"Brunson\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Simon\",\nfamily = \"Jackson\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Ben\",\nfamily = \"Whalley\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Karissa\",\nfamily = \"Whiting\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Yves\",\nfamily = \"Rosseel\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Michael\",\nfamily = \"Kuehn\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jorge\",\nfamily = \"Cimentada\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Erle\",\nfamily = \"Holgersen\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Karl\",\nfamily = \"Dunkle Werner\",\nrole = \"ctb\",\ncomment = c(ORCID = \"0000-0003-0523-7309\")),\nperson(given = \"Ethan\",\nfamily = \"Christensen\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Steven\",\nfamily = \"Pav\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Paul\",\nfamily = \"PJ\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Ben\",\nfamily = \"Schneider\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Patrick\",\nfamily = \"Kennedy\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Lily\",\nfamily = \"Medina\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Brian\",\nfamily = \"Fannin\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jason\",\nfamily = \"Muhlenkamp\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Matt\",\nfamily = \"Lehman\",\nrole = \"ctb\"),\nperson(given = \"Bill\",\nfamily = \"Denney\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-5759-428X\")),\nperson(given = \"Nic\",\nfamily = \"Crane\",\nrole = \"ctb\"),\nperson(given = \"Andrew\",\nfamily = \"Bates\",\nrole = \"ctb\"),\nperson(given = \"Vincent\",\nfamily = \"Arel-Bundock\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-2042-7063\")),\nperson(given = \"Hideaki\",\nfamily = \"Hayashi\",\nrole = \"ctb\"),\nperson(given = \"Luis\",\nfamily = \"Tobalina\",\nrole = \"ctb\"),\nperson(given = \"Annie\",\nfamily = \"Wang\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Wei Yang\",\nfamily = \"Tham\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Clara\",\nfamily = \"Wang\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Abby\",\nfamily = \"Smith\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-3207-0375\")),\nperson(given = \"Jasper\",\nfamily = \"Cooper\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-8639-3188\")),\nperson(given = \"E Auden\",\nfamily = \"Krauska\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-1466-5850\")),\nperson(given = \"Alex\",\nfamily = \"Wang\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Malcolm\",\nfamily = \"Barrett\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-0299-5825\")),\nperson(given = \"Charles\",\nfamily = \"Gray\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-9978-011X\")),\nperson(given = \"Jared\",\nfamily = \"Wilber\",\nrole = \"ctb\"),\nperson(given = \"Vilmantas\",\nfamily = \"Gegzna\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-9500-5167\")),\nperson(given = \"Eduard\",\nfamily = \"Szoecs\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Frederik\",\nfamily = \"Aust\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-4900-788X\")),\nperson(given = \"Angus\",\nfamily = \"Moore\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Nick\",\nfamily = \"Williams\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Marius\",\nfamily = \"Barth\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-3421-6665\")),\nperson(given = \"Bruna\",\nfamily = \"Wundervald\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-8163-220X\")),\nperson(given = \"Joyce\",\nfamily = \"Cahoon\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-7217-4702\")),\nperson(given = \"Grant\",\nfamily = \"McDermott\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-7883-8573\")),\nperson(given = \"Kevin\",\nfamily = \"Zarca\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Shiro\",\nfamily = \"Kuriwaki\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-5687-2647\")),\nperson(given = \"Lukas\",\nfamily = \"Wallrich\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-2121-5177\")),\nperson(given = \"James\",\nfamily = \"Martherus\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-8285-3300\")),\nperson(given = \"Chuliang\",\nfamily = \"Xiao\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-8466-9398\")),\nperson(given = \"Joseph\",\nfamily = \"Larmarange\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Max\",\nfamily = \"Kuhn\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Michal\",\nfamily = \"Bojanowski\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Hakon\",\nfamily = \"Malmedal\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Clara\",\nfamily = \"Wang\",\nrole = \"ctb\"),\nperson(given = \"Sergio\",\nfamily = \"Oller\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Luke\",\nfamily = \"Sonnet\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jim\",\nfamily = \"Hester\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Ben\",\nfamily = \"Schneider\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Bernie\",\nfamily = \"Gray\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-9190-6032\")),\nperson(given = \"Mara\",\nfamily = \"Averick\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Aaron\",\nfamily = \"Jacobs\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Andreas\",\nfamily = \"Bender\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Sven\",\nfamily = \"Templer\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Paul-Christian\",\nfamily = \"Buerkner\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Matthew\",\nfamily = \"Kay\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Erwan\",\nfamily = \"Le Pennec\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Johan\",\nfamily = \"Junkka\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Hao\",\nfamily = \"Zhu\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Benjamin\",\nfamily = \"Soltoff\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Zoe\",\nfamily = \"Wilkinson Saldana\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Tyler\",\nfamily = \"Littlefield\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Charles T.\",\nfamily = \"Gray\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Shabbh E.\",\nfamily = \"Banks\",\nrole = \"ctb\"),\nperson(given = \"Serina\",\nfamily = \"Robinson\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Roger\",\nfamily = \"Bivand\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Riinu\",\nfamily = \"Ots\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Nicholas\",\nfamily = \"Williams\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Nina\",\nfamily = \"Jakobsen\",\nrole = \"ctb\"),\nperson(given = \"Michael\",\nfamily = \"Weylandt\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Lisa\",\nfamily = \"Lendway\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Karl\",\nfamily = \"Hailperin\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Josue\",\nfamily = \"Rodriguez\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jenny\",\nfamily = \"Bryan\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Chris\",\nfamily = \"Jarvis\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Greg\",\nfamily = \"Macfarlane\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Brian\",\nfamily = \"Mannakee\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Drew\",\nfamily = \"Tyre\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Shreyas\",\nfamily = \"Singh\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Laurens\",\nfamily = \"Geffert\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Hong\",\nfamily = \"Ooi\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Henrik\",\nfamily = \"Bengtsson\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Eduard\",\nfamily = \"Szocs\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"David\",\nfamily = \"Hugh-Jones\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Matthieu\",\nfamily = \"Stigler\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Hugo\",\nfamily = \"Tavares\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-9373-2726\")),\nperson(given = \"R. Willem\",\nfamily = \"Vervoort\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Brenton M.\",\nfamily = \"Wiernik\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Josh\",\nfamily = \"Yamamoto\",\nrole = \"ctb\",\nemail = \"[email protected]\"),\nperson(given = \"Jasme\",\nfamily = \"Lee\",\nrole = \"ctb\"),\nperson(given = \"Taren\",\nfamily = \"Sanders\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-4504-6008\")),\nperson(given = \"Ilaria\",\nfamily = \"Prosdocimi\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-8565-094X\")),\nperson(given = \"Daniel D.\",\nfamily = \"Sjoberg\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-0862-2018\")),\nperson(given = \"Alex\",\nfamily = \"Reinhart\",\nrole = \"ctb\",\nemail = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-6658-514X\")))",
"Description": "Summarizes key information about statistical\nobjects in tidy tibbles. This makes it easy to report results, create\nplots and consistently work with large numbers of models at once.\nBroom provides three verbs that each provide different types of\ninformation about a model. tidy() summarizes information about model\ncomponents such as coefficients of a regression. glance() reports\ninformation about an entire model, such as goodness of fit measures\nlike AIC and BIC. augment() adds information about individual\nobservations to a dataset, such as fitted values or influence\nmeasures.",
"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), ellipsis, generics (>= 0.0.2),\nglue, lifecycle, purrr, rlang, stringr, tibble (>= 3.0.0),\ntidyr (>= 1.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, margins, MASS, mclust, mediation, metafor, mfx,\nmgcv, mlogit, modeldata, modeltests, muhaz, multcomp, network,\nnnet, orcutt (>= 2.2), ordinal, plm, poLCA, psych, quantreg,\nrmarkdown, robust, robustbase, rsample, sandwich, sp, spdep (>=\n1.1), spatialreg, speedglm, spelling, survey, survival,\nsystemfit, testthat (>= 2.1.0), tseries, vars, 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": "2023-06-09 21:21:49 UTC; simoncouch",
"Author": "David Robinson [aut],\nAlex Hayes [aut] (<https://orcid.org/0000-0002-4985-5160>),\nSimon Couch [aut, cre] (<https://orcid.org/0000-0001-5676-5107>),\nPosit Software, PBC [cph, fnd],\nIndrajeet Patil [ctb] (<https://orcid.org/0000-0003-1995-6531>),\nDerek Chiu [ctb],\nMatthieu Gomez [ctb],\nBoris Demeshev [ctb],\nDieter Menne [ctb],\nBenjamin Nutter [ctb],\nLuke Johnston [ctb],\nBen Bolker [ctb],\nFrancois Briatte [ctb],\nJeffrey Arnold [ctb],\nJonah Gabry [ctb],\nLuciano Selzer [ctb],\nGavin Simpson [ctb],\nJens Preussner [ctb],\nJay Hesselberth [ctb],\nHadley Wickham [ctb],\nMatthew Lincoln [ctb],\nAlessandro Gasparini [ctb],\nLukasz Komsta [ctb],\nFrederick Novometsky [ctb],\nWilson Freitas [ctb],\nMichelle Evans [ctb],\nJason Cory Brunson [ctb],\nSimon Jackson [ctb],\nBen Whalley [ctb],\nKarissa Whiting [ctb],\nYves Rosseel [ctb],\nMichael Kuehn [ctb],\nJorge Cimentada [ctb],\nErle Holgersen [ctb],\nKarl Dunkle Werner [ctb] (<https://orcid.org/0000-0003-0523-7309>),\nEthan Christensen [ctb],\nSteven Pav [ctb],\nPaul PJ [ctb],\nBen Schneider [ctb],\nPatrick Kennedy [ctb],\nLily Medina [ctb],\nBrian Fannin [ctb],\nJason Muhlenkamp [ctb],\nMatt Lehman [ctb],\nBill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>),\nNic Crane [ctb],\nAndrew Bates [ctb],\nVincent Arel-Bundock [ctb] (<https://orcid.org/0000-0003-2042-7063>),\nHideaki Hayashi [ctb],\nLuis Tobalina [ctb],\nAnnie Wang [ctb],\nWei Yang Tham [ctb],\nClara Wang [ctb],\nAbby Smith [ctb] (<https://orcid.org/0000-0002-3207-0375>),\nJasper Cooper [ctb] (<https://orcid.org/0000-0002-8639-3188>),\nE Auden Krauska [ctb] (<https://orcid.org/0000-0002-1466-5850>),\nAlex Wang [ctb],\nMalcolm Barrett [ctb] (<https://orcid.org/0000-0003-0299-5825>),\nCharles Gray [ctb] (<https://orcid.org/0000-0002-9978-011X>),\nJared Wilber [ctb],\nVilmantas Gegzna [ctb] (<https://orcid.org/0000-0002-9500-5167>),\nEduard Szoecs [ctb],\nFrederik Aust [ctb] (<https://orcid.org/0000-0003-4900-788X>),\nAngus Moore [ctb],\nNick Williams [ctb],\nMarius Barth [ctb] (<https://orcid.org/0000-0002-3421-6665>),\nBruna Wundervald [ctb] (<https://orcid.org/0000-0001-8163-220X>),\nJoyce Cahoon [ctb] (<https://orcid.org/0000-0001-7217-4702>),\nGrant McDermott [ctb] (<https://orcid.org/0000-0001-7883-8573>),\nKevin Zarca [ctb],\nShiro Kuriwaki [ctb] (<https://orcid.org/0000-0002-5687-2647>),\nLukas Wallrich [ctb] (<https://orcid.org/0000-0003-2121-5177>),\nJames Martherus [ctb] (<https://orcid.org/0000-0002-8285-3300>),\nChuliang Xiao [ctb] (<https://orcid.org/0000-0002-8466-9398>),\nJoseph Larmarange [ctb],\nMax Kuhn [ctb],\nMichal Bojanowski [ctb],\nHakon Malmedal [ctb],\nClara Wang [ctb],\nSergio Oller [ctb],\nLuke Sonnet [ctb],\nJim Hester [ctb],\nBen Schneider [ctb],\nBernie Gray [ctb] (<https://orcid.org/0000-0001-9190-6032>),\nMara Averick [ctb],\nAaron Jacobs [ctb],\nAndreas Bender [ctb],\nSven Templer [ctb],\nPaul-Christian Buerkner [ctb],\nMatthew Kay [ctb],\nErwan Le Pennec [ctb],\nJohan Junkka [ctb],\nHao Zhu [ctb],\nBenjamin Soltoff [ctb],\nZoe Wilkinson Saldana [ctb],\nTyler Littlefield [ctb],\nCharles T. Gray [ctb],\nShabbh E. Banks [ctb],\nSerina Robinson [ctb],\nRoger Bivand [ctb],\nRiinu Ots [ctb],\nNicholas Williams [ctb],\nNina Jakobsen [ctb],\nMichael Weylandt [ctb],\nLisa Lendway [ctb],\nKarl Hailperin [ctb],\nJosue Rodriguez [ctb],\nJenny Bryan [ctb],\nChris Jarvis [ctb],\nGreg Macfarlane [ctb],\nBrian Mannakee [ctb],\nDrew Tyre [ctb],\nShreyas Singh [ctb],\nLaurens Geffert [ctb],\nHong Ooi [ctb],\nHenrik Bengtsson [ctb],\nEduard Szocs [ctb],\nDavid Hugh-Jones [ctb],\nMatthieu Stigler [ctb],\nHugo Tavares [ctb] (<https://orcid.org/0000-0001-9373-2726>),\nR. Willem Vervoort [ctb],\nBrenton M. Wiernik [ctb],\nJosh Yamamoto [ctb],\nJasme Lee [ctb],\nTaren Sanders [ctb] (<https://orcid.org/0000-0002-4504-6008>),\nIlaria Prosdocimi [ctb] (<https://orcid.org/0000-0001-8565-094X>),\nDaniel D. Sjoberg [ctb] (<https://orcid.org/0000-0003-0862-2018>),\nAlex Reinhart [ctb] (<https://orcid.org/0000-0002-6658-514X>)",
"Maintainer": "Simon Couch <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-06-09 22:50:02 UTC",
"Built": "R 4.3.0; ; 2023-06-12 11:47:13 UTC; unix"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.5.1",
"Authors@R": "c(\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\nperson(\"Garrick\", \"Aden-Buie\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-7111-0077\")),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")),\nperson(family = \"Bootstrap contributors\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Twitter, Inc\", role = \"cph\",\ncomment = \"Bootstrap library\"),\nperson(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootstrap colorpicker library\"),\nperson(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\ncomment = \"Bootswatch library\"),\nperson(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\ncomment = \"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\nwell as their various 'Bootswatch' themes. An interactive widget is\nalso 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>),\nJoe Cheng [aut],\nGarrick Aden-Buie [aut] (<https://orcid.org/0000-0002-7111-0077>),\nPosit Software, PBC [cph, fnd],\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nJavi Aguilar [ctb, cph] (Bootstrap colorpicker library),\nThomas Park [ctb, cph] (Bootswatch library),\nPayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-08-11 16:53:52 UTC",
"Built": "R 4.3.0; ; 2023-08-14 11:21:31 UTC; unix"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "cachem",
"Version": "1.0.8",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\neither their total size or the age of the oldest object (or both),\nautomatically pruning objects to maintain the constraints.",
"Authors@R": "c(\nperson(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")),\nperson(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],\nRStudio [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-05-01 16:40:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-03 00:20:55 UTC; unix"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.7.3",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\", \"cph\"),\ncomment = c(ORCID = \"0000-0001-7098-9676\")),\nperson(\"Winston\", \"Chang\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\")),\nperson(\"Mango Solutions\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "It is sometimes useful to perform a computation in a separate\nR process, without affecting the current R process at all. This\npackages does exactly that.",
"License": "MIT + file LICENSE",
"URL": "https://callr.r-lib.org, https://github.com/r-lib/callr#readme",
"BugReports": "https://github.com/r-lib/callr/issues",
"Depends": "R (>= 3.4)",
"Imports": "processx (>= 3.6.1), R6, utils",
"Suggests": "asciicast, cli (>= 1.1.0), covr, mockery, ps, rprojroot,\nspelling, testthat (>= 3.0.0), withr (>= 2.3.0)",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.1.9000",
"Config/testthat/edition": "3",
"Config/Needs/website": "r-lib/asciicast, glue, htmlwidgets, igraph,\ntibble, tidyverse/tidytemplate",
"NeedsCompilation": "no",
"Packaged": "2022-11-02 15:17:20 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>),\nWinston Chang [aut],\nRStudio [cph, fnd],\nMango Solutions [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2022-11-02 16:40:11 UTC",
"Built": "R 4.3.0; ; 2023-04-21 21:53:50 UTC; unix"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\nperson(\"Jennifer\", \"Bryan\", , \"[email protected]\", c(\"cre\", \"aut\")),\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", \"ctb\")\n)",
"Description": "Helper functions to work with spreadsheets and the \"A1:D10\" style\nof 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],\nHadley Wickham [ctb]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2016-07-27 03:17:48",
"Encoding": "UTF-8",
"Built": "R 4.3.0; ; 2023-08-11 13:58:08 UTC; unix"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.1",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\nperson(\"Hadley\", \"Wickham\", role = \"ctb\"),\nperson(\"Kirill\", \"Müller\", role = \"ctb\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "A suite of tools to build attractive command line interfaces\n('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\netc. Supports custom themes via a 'CSS'-like language. It also\ncontains a number of lower level 'CLI' elements: rules, boxes, trees,\nand 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\ncolors and text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"Depends": "R (>= 3.4)",
"Imports": "utils",
"Suggests": "callr, covr, crayon, digest, glue (>= 1.6.0), grDevices,\nhtmltools, htmlwidgets, knitr, methods, mockery, processx, ps\n(>= 1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,\nrstudioapi, testthat, tibble, whoami, withr",
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc,\nfansi, prettyunits, sessioninfo, tidyverse/tidytemplate,\nusethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"NeedsCompilation": "yes",
"Packaged": "2023-03-22 13:59:32 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\nHadley Wickham [ctb],\nKirill Müller [ctb],\nRStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-03-23 12:52:05 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-05-30 12:26:27 UTC; unix"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.8.0",
"Authors@R": "c(\nperson(\"Matthew\", \"Lincoln\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-4387-3384\")),\nperson(\"Louis\", \"Maddox\", role = \"ctb\"),\nperson(\"Steve\", \"Simpson\", role = \"ctb\"),\nperson(\"Jennifer\", \"Bryan\", role = \"ctb\")\n)",
"Description": "Simple utility functions to read from and write to\nthe Windows, OS X, and X11 clipboards.",
"License": "GPL-3",
"URL": "https://github.com/mdlincoln/clipr,\nhttp://matthewlincoln.net/clipr/",
"BugReports": "https://github.com/mdlincoln/clipr/issues",
"Imports": "utils",
"Suggests": "covr, knitr, rmarkdown, rstudioapi (>= 0.5), testthat (>=\n2.0.0)",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.1.2",
"SystemRequirements": "xclip (https://github.com/astrand/xclip) or xsel\n(http://www.vergenet.net/~conrad/software/xsel/) for accessing\nthe X11 clipboard, or wl-clipboard\n(https://github.com/bugaevc/wl-clipboard) for systems using\nWayland.",
"NeedsCompilation": "no",
"Packaged": "2022-02-19 02:20:21 UTC; mlincoln",
"Author": "Matthew Lincoln [aut, cre] (<https://orcid.org/0000-0002-4387-3384>),\nLouis Maddox [ctb],\nSteve Simpson [ctb],\nJennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2022-02-22 00:58:45 UTC",
"Built": "R 4.3.0; ; 2023-04-21 21:44:55 UTC; unix"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "colorspace",
"Version": "2.1-0",
"Date": "2023-01-23",
"Title": "A Toolbox for Manipulating and Assessing Colors and Palettes",
"Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"[email protected]\"),\nperson(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-3224-8858\")),\nperson(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-4198-9911\")),\nperson(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-9032-8912\")),\nperson(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-3798-5507\")),\nperson(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-7470-9261\")),\nperson(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0001-7346-3047\")),\nperson(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0003-0918-3766\")))",
"Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\nCIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.\nQualitative, sequential, and diverging color palettes based on HCL colors\nare provided along with corresponding ggplot2 color scales.\nColor palette choice is aided by an interactive app (with either a Tcl/Tk\nor a shiny graphical user interface) and shiny apps with an HCL color picker and a\ncolor vision deficiency emulator. Plotting functions for displaying\nand assessing palettes include color swatches, visualizations of the\nHCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\nfunctions include: desaturation, lightening/darkening, mixing, and\nsimulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).\nDetails can be found on the project web page at <https://colorspace.R-Forge.R-project.org/>\nand in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\nSoftware, <doi:10.18637/jss.v096.i01>).",
"Depends": "R (>= 3.0.0), methods",
"Imports": "graphics, grDevices, stats",
"Suggests": "datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,\ntcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,\nknitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,\nwesanderson",
"VignetteBuilder": "knitr",
"License": "BSD_3_clause + file LICENSE",
"URL": "https://colorspace.R-Forge.R-project.org/, https://hclwizard.org/",
"BugReports": "https://colorspace.R-Forge.R-project.org/contact.html",
"LazyData": "yes",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-01-23 08:50:11 UTC; zeileis",
"Author": "Ross Ihaka [aut],\nPaul Murrell [aut] (<https://orcid.org/0000-0002-3224-8858>),\nKurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\nJason C. Fisher [aut] (<https://orcid.org/0000-0001-9032-8912>),\nReto Stauffer [aut] (<https://orcid.org/0000-0002-3798-5507>),\nClaus O. Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\nClaire D. McWhite [aut] (<https://orcid.org/0000-0001-7346-3047>),\nAchim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-01-23 11:40:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:54:01 UTC; unix"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "commonmark",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Version": "1.9.0",
"Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", ,\"[email protected]\", role = c(\"aut\", \"cre\"),\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"URL": "https://docs.ropensci.org/commonmark/\nhttps://r-lib.r-universe.dev/commonmark\nhttps://github.github.com/gfm/ (spec)",
"BugReports": "https://github.com/r-lib/commonmark/issues",
"Description": "The CommonMark specification defines a rationalized version of markdown\nsyntax. This package uses the 'cmark' reference implementation for converting\nmarkdown text into various formats including html, latex and groff man. In\naddition it exposes the markdown parse tree in xml format. Also includes opt-in\nsupport for GFM extensions including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"Suggests": "curl, testthat, xml2",
"RoxygenNote": "7.2.3",
"Language": "en-US",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2023-03-17 18:02:44 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\nJohn MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-03-17 18:40:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:46:32 UTC; unix"
}
},
"conflicted": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "conflicted",
"Title": "An Alternative Conflict Resolution Strategy",
"Version": "1.2.0",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "R's default conflict management system gives the most\nrecently loaded package precedence. This can make it hard to detect\nconflicts, particularly when they arise because a package update\ncreates ambiguity that did not previously exist. 'conflicted' takes a\ndifferent approach, making every conflict an error and forcing you to\nchoose which function to use.",
"License": "MIT + file LICENSE",
"URL": "https://conflicted.r-lib.org/, https://github.com/r-lib/conflicted",
"BugReports": "https://github.com/r-lib/conflicted/issues",
"Depends": "R (>= 3.2)",
"Imports": "cli (>= 3.4.0), memoise, rlang (>= 1.0.0)",
"Suggests": "callr, covr, dplyr, Matrix, methods, pkgload, testthat (>=\n3.0.0), withr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2023-01-31 19:50:23 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre],\nRStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-02-01 08:20:06 UTC",
"Built": "R 4.3.0; ; 2023-04-21 21:46:42 UTC; unix"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.4.6",
"Authors@R": "c(\nperson(\"Davis\", \"Vaughan\", email = \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")),\nperson(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")),\nperson(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")),\nperson(\"Benjamin\", \"Kietzman\", role = \"ctb\"),\nperson(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "Provides a header only, C++11 interface to R's C\ninterface. Compared to other approaches 'cpp11' strives to be safe\nagainst long jumps from the C API as well as C++ exceptions, conform\nto normal R function semantics and supports interaction with 'ALTREP'\nvectors.",
"License": "MIT + file LICENSE",
"URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"Depends": "R (>= 3.5.0)",
"Suggests": "bench, brio, callr, cli, covr, decor, desc, ggplot2, glue,\nknitr, lobstr, mockery, progress, rmarkdown, scales, Rcpp,\ntestthat, tibble, utils, vctrs, withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Packaged": "2023-08-08 21:27:43 UTC; davis",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>),\nJim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\nRomain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\nBenjamin Kietzman [ctb],\nPosit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-08-10 06:50:07 UTC",
"Built": "R 4.3.0; ; 2023-08-11 13:04:02 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.2",
"Authors@R": "c(\nperson(\"Gábor\", \"Csárdi\", , \"[email protected]\",\nrole = c(\"aut\", \"cre\")),\nperson(\n\"Brodie\", \"Gaslam\", email=\"[email protected]\",\nrole=c(\"ctb\"))\n)",
"Description": "The crayon package is now superseded. Please use the 'cli' package\nfor new projects.\nColored terminal output on terminals that support 'ANSI'\ncolor and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI'\ncolor support is automatically detected. Colors and highlighting can\nbe combined and nested. New styles can also be created easily.\nThis package was inspired by the 'chalk' 'JavaScript' project.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/r-lib/crayon#readme",
"BugReports": "https://github.com/r-lib/crayon/issues",
"Collate": "'aaa-rstudio-detect.R' 'aaaa-rematch2.R'\n'aab-num-ansi-colors.R' 'aac-num-ansi-colors.R' 'ansi-256.r'\n'ansi-palette.R' 'combine.r' 'string.r' 'utils.r'\n'crayon-package.r' 'disposable.r' 'enc-utils.R' 'has_ansi.r'\n'has_color.r' 'link.R' 'styles.r' 'machinery.r' 'parts.r'\n'print.r' 'style-var.r' 'show.r' 'string_operations.r'",
"Imports": "grDevices, methods, utils",
"Suggests": "mockery, rstudioapi, testthat, withr",
"RoxygenNote": "7.1.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2022-09-29 06:24:10 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\nBrodie Gaslam [ctb]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2022-09-29 16:20:24 UTC",
"Built": "R 4.3.0; ; 2023-04-21 21:45:59 UTC; unix"
}
},
"crosstalk": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "crosstalk",
"Type": "Package",
"Title": "Inter-Widget Interactivity for HTML Widgets",
"Version": "1.2.0",
"Authors@R": "c(\nperson(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\nperson(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\nemail = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\nperson(family = \"RStudio\", role = \"cph\"),\nperson(family = \"jQuery Foundation\", role = \"cph\",\ncomment = \"jQuery library and jQuery UI library\"),\nperson(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\nperson(\"Mark\", \"Otto\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(\"Jacob\", \"Thornton\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Bootstrap contributors\", role = \"ctb\",\ncomment = \"Bootstrap library\"),\nperson(family = \"Twitter, Inc\", role = \"cph\",\ncomment = \"Bootstrap library\"),\nperson(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\ncomment = \"selectize.js library\"),\nperson(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\ncomment = \"es5-shim library\"),\nperson(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\ncomment = \"es5-shim library\"),\nperson(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\ncomment = \"ion.rangeSlider library\"),\nperson(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\ncomment = \"Javascript strftime library\")\n)",
"Description": "Provides building blocks for allowing HTML widgets to communicate\nwith each other, with Shiny or without (i.e. static .html files). Currently\nsupports linked brushing and filtering.",
"License": "MIT + file LICENSE",
"Imports": "htmltools (>= 0.3.6), jsonlite, lazyeval, R6",
"Suggests": "shiny, ggplot2, testthat (>= 2.1.0), sass, bslib",
"URL": "https://rstudio.github.io/crosstalk/",
"BugReports": "https://github.com/rstudio/crosstalk/issues",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2021-11-04 15:35:47 UTC; cpsievert",
"Author": "Joe Cheng [aut],\nCarson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\nRStudio [cph],\njQuery Foundation [cph] (jQuery library and jQuery UI library),\njQuery contributors [ctb, cph] (jQuery library; authors listed in\ninst/www/shared/jquery-AUTHORS.txt),\nMark Otto [ctb] (Bootstrap library),\nJacob Thornton [ctb] (Bootstrap library),\nBootstrap contributors [ctb] (Bootstrap library),\nTwitter, Inc [cph] (Bootstrap library),\nBrian Reavis [ctb, cph] (selectize.js library),\nKristopher Michael Kowal [ctb, cph] (es5-shim library),\nes5-shim contributors [ctb, cph] (es5-shim library),\nDenis Ineshin [ctb, cph] (ion.rangeSlider library),\nSami Samhuri [ctb, cph] (Javascript strftime library)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2021-11-04 16:30:02 UTC",
"Built": "R 4.3.0; ; 2023-04-21 22:20:39 UTC; unix"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "5.0.2",
"Authors@R": "c(\nperson(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\ncomment = c(ORCID = \"0000-0002-4035-0289\")),\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"),\nperson(\"RStudio\", role = \"cph\")\n)",
"Description": "The curl() and curl_download() functions provide highly\nconfigurable drop-in replacements for base url() and download.file() with\nbetter performance, support for encryption (https, ftps), gzip compression,\nauthentication, and other 'libcurl' goodies. The core of the package implements a\nframework for performing fully customized requests where data can be processed\neither in memory, on disk, or streaming via the callback or connection\ninterfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\nweb client see the 'httr' package which builds on this package with http\nspecific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).",
"URL": "https://jeroen.r-universe.dev/curl https://curl.se/libcurl/",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": "spelling, testthat (>= 1.0.0), knitr, jsonlite, rmarkdown,\nmagrittr, httpuv (>= 1.4.4), webutils",
"VignetteBuilder": "knitr",
"Depends": "R (>= 3.0.0)",
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2023-08-09 13:24:37 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\nHadley Wickham [ctb],\nRStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-08-14 10:40:02 UTC",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-08-15 11:24:41 UTC; unix"
}
},
"data.table": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Package": "data.table",
"Version": "1.14.8",
"Title": "Extension of `data.frame`",
"Authors@R": "c(\nperson(\"Matt\",\"Dowle\", role=c(\"aut\",\"cre\"), email=\"[email protected]\"),\nperson(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"[email protected]\"),\nperson(\"Jan\",\"Gorecki\", role=\"ctb\"),\nperson(\"Michael\",\"Chirico\", role=\"ctb\"),\nperson(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\nperson(\"Tom\",\"Short\", role=\"ctb\"),\nperson(\"Steve\",\"Lianoglou\", role=\"ctb\"),\nperson(\"Eduard\",\"Antonyan\", role=\"ctb\"),\nperson(\"Markus\",\"Bonsch\", role=\"ctb\"),\nperson(\"Hugh\",\"Parsonage\", role=\"ctb\"),\nperson(\"Scott\",\"Ritchie\", role=\"ctb\"),\nperson(\"Kun\",\"Ren\", role=\"ctb\"),\nperson(\"Xianying\",\"Tan\", role=\"ctb\"),\nperson(\"Rick\",\"Saporta\", role=\"ctb\"),\nperson(\"Otto\",\"Seiskari\", role=\"ctb\"),\nperson(\"Xianghui\",\"Dong\", role=\"ctb\"),\nperson(\"Michel\",\"Lang\", role=\"ctb\"),\nperson(\"Watal\",\"Iwasaki\", role=\"ctb\"),\nperson(\"Seth\",\"Wenchel\", role=\"ctb\"),\nperson(\"Karl\",\"Broman\", role=\"ctb\"),\nperson(\"Tobias\",\"Schmidt\", role=\"ctb\"),\nperson(\"David\",\"Arenburg\", role=\"ctb\"),\nperson(\"Ethan\",\"Smith\", role=\"ctb\"),\nperson(\"Francois\",\"Cocquemas\", role=\"ctb\"),\nperson(\"Matthieu\",\"Gomez\", role=\"ctb\"),\nperson(\"Philippe\",\"Chataignon\", role=\"ctb\"),\nperson(\"Nello\",\"Blaser\", role=\"ctb\"),\nperson(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\nperson(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\nperson(\"Cheng\",\"Lee\", role=\"ctb\"),\nperson(\"Declan\",\"Groves\", role=\"ctb\"),\nperson(\"Daniel\",\"Possenriede\", role=\"ctb\"),\nperson(\"Felipe\",\"Parages\", role=\"ctb\"),\nperson(\"Denes\",\"Toth\", role=\"ctb\"),\nperson(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\nperson(\"Ayappan\",\"Perumal\", role=\"ctb\"),\nperson(\"James\",\"Sams\", role=\"ctb\"),\nperson(\"Martin\",\"Morgan\", role=\"ctb\"),\nperson(\"Michael\",\"Quinn\", role=\"ctb\"),\nperson(\"@javrucebo\",\"\", role=\"ctb\"),\nperson(\"@marc-outins\",\"\", role=\"ctb\"),\nperson(\"Roy\",\"Storey\", role=\"ctb\"),\nperson(\"Manish\",\"Saraswat\", role=\"ctb\"),\nperson(\"Morgan\",\"Jacob\", role=\"ctb\"),\nperson(\"Michael\",\"Schubmehl\", role=\"ctb\"),\nperson(\"Davis\",\"Vaughan\", role=\"ctb\"),\nperson(\"Toby\",\"Hocking\", role=\"ctb\"),\nperson(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\nperson(\"Tyson\",\"Barrett\", role=\"ctb\"),\nperson(\"Jim\",\"Hester\", role=\"ctb\"),\nperson(\"Anthony\",\"Damico\", role=\"ctb\"),\nperson(\"Sebastian\",\"Freundt\", role=\"ctb\"),\nperson(\"David\",\"Simons\", role=\"ctb\"),\nperson(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\nperson(\"Cole\",\"Miller\", role=\"ctb\"),\nperson(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\nperson(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\nperson(\"Kevin\",\"Ushey\", role=\"ctb\"),\nperson(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\nperson(\"Ben\",\"Schwen\", role=\"ctb\"))",
"Depends": "R (>= 3.1.0)",
"Imports": "methods",
"Suggests": "bit64 (>= 4.0.0), bit (>= 4.0.4), curl, R.utils, xts,\nnanotime, zoo (>= 1.8-1), yaml, knitr, rmarkdown",
"SystemRequirements": "zlib",
"Description": "Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns, friendly and fast character-separated-value read/write. Offers a natural and flexible syntax, for faster development.",
"License": "MPL-2.0 | file LICENSE",
"URL": "https://r-datatable.com, https://Rdatatable.gitlab.io/data.table,\nhttps://github.com/Rdatatable/data.table",
"BugReports": "https://github.com/Rdatatable/data.table/issues",
"VignetteBuilder": "knitr",
"ByteCompile": "TRUE",
"NeedsCompilation": "yes",
"Packaged": "2023-02-16 16:37:18 UTC; mdowle",
"Author": "Matt Dowle [aut, cre],\nArun Srinivasan [aut],\nJan Gorecki [ctb],\nMichael Chirico [ctb],\nPasha Stetsenko [ctb],\nTom Short [ctb],\nSteve Lianoglou [ctb],\nEduard Antonyan [ctb],\nMarkus Bonsch [ctb],\nHugh Parsonage [ctb],\nScott Ritchie [ctb],\nKun Ren [ctb],\nXianying Tan [ctb],\nRick Saporta [ctb],\nOtto Seiskari [ctb],\nXianghui Dong [ctb],\nMichel Lang [ctb],\nWatal Iwasaki [ctb],\nSeth Wenchel [ctb],\nKarl Broman [ctb],\nTobias Schmidt [ctb],\nDavid Arenburg [ctb],\nEthan Smith [ctb],\nFrancois Cocquemas [ctb],\nMatthieu Gomez [ctb],\nPhilippe Chataignon [ctb],\nNello Blaser [ctb],\nDmitry Selivanov [ctb],\nAndrey Riabushenko [ctb],\nCheng Lee [ctb],\nDeclan Groves [ctb],\nDaniel Possenriede [ctb],\nFelipe Parages [ctb],\nDenes Toth [ctb],\nMus Yaramaz-David [ctb],\nAyappan Perumal [ctb],\nJames Sams [ctb],\nMartin Morgan [ctb],\nMichael Quinn [ctb],\n@javrucebo [ctb],\n@marc-outins [ctb],\nRoy Storey [ctb],\nManish Saraswat [ctb],\nMorgan Jacob [ctb],\nMichael Schubmehl [ctb],\nDavis Vaughan [ctb],\nToby Hocking [ctb],\nLeonardo Silvestri [ctb],\nTyson Barrett [ctb],\nJim Hester [ctb],\nAnthony Damico [ctb],\nSebastian Freundt [ctb],\nDavid Simons [ctb],\nElliott Sales de Andrade [ctb],\nCole Miller [ctb],\nJens Peder Meldgaard [ctb],\nVaclav Tlapak [ctb],\nKevin Ushey [ctb],\nDirk Eddelbuettel [ctb],\nBen Schwen [ctb]",
"Maintainer": "Matt Dowle <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-02-17 12:20:12 UTC",
"Encoding": "UTF-8",
"Built": "R 4.3.0; x86_64-pc-linux-gnu; 2023-04-21 21:45:39 UTC; unix"
}
},
"dbplyr": {
"Source": "CRAN",
"Repository": "https://packagemanager.posit.co/cran/latest",
"description": {
"Type": "Package",
"Package": "dbplyr",
"Title": "A 'dplyr' Back End for Databases",
"Version": "2.3.3",
"Authors@R": "c(\nperson(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\nperson(\"Maximilian\", \"Girlich\", role = \"aut\"),\nperson(\"Edgar\", \"Ruiz\", role = \"aut\"),\nperson(\"RStudio\", role = c(\"cph\", \"fnd\"))\n)",
"Description": "A 'dplyr' back end for databases that allows you to work with\nremote database tables as if they are in-memory data frames. Basic\nfeatures works with any database that has a 'DBI' back end; more\nadvanced features require 'SQL' translation to be provided by the\npackage author.",
"License": "MIT + file LICENSE",
"URL": "https://dbplyr.tidyverse.org/, https://github.com/tidyverse/dbplyr",
"BugReports": "https://github.com/tidyverse/dbplyr/issues",
"Depends": "R (>= 3.1)",
"Imports": "blob (>= 1.2.0), cli (>= 3.4.1), DBI (>= 1.0.0), dplyr (>=\n1.1.0), glue (>= 1.2.0), lifecycle (>= 1.0.3), magrittr,\nmethods, pillar (>= 1.5.0), purrr (>= 1.0.1), R6 (>= 2.2.2),\nrlang (>= 1.0.6), tibble (>= 1.4.2), tidyr (>= 1.3.0),\ntidyselect (>= 1.2.0), utils, vctrs (>= 0.5.0), withr",
"Suggests": "bit64, covr, knitr, Lahman, nycflights13, odbc, RMariaDB (>=\n1.0.2), rmarkdown, RPostgres (>= 1.1.3), RPostgreSQL, RSQLite\n(>= 2.2.15), testthat (>= 3.0.2)",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"Language": "en-gb",
"RoxygenNote": "7.2.3",
"Collate": "'compat-types-check.R' 'compat-obj-type.R' 'utils.R' 'sql.R'\n'escape.R' 'translate-sql-cut.R' 'translate-sql-quantile.R'\n'translate-sql-string.R' 'translate-sql-paste.R'\n'translate-sql-helpers.R' 'translate-sql-window.R'\n'translate-sql-conditional.R' 'backend-.R' 'backend-access.R'\n'backend-hana.R' 'backend-hive.R' 'backend-impala.R'\n'verb-copy-to.R' 'backend-mssql.R' 'backend-mysql.R'\n'backend-odbc.R' 'backend-oracle.R' 'backend-postgres.R'\n'backend-postgres-old.R' 'backend-redshift.R'\n'backend-snowflake.R' 'backend-sqlite.R' 'backend-teradata.R'\n'build-sql.R' 'data-cache.R' 'data-lahman.R'\n'data-nycflights13.R' 'db-escape.R' 'db-io.R' 'db-sql.R' 'db.R'\n'dbplyr.R' 'explain.R' 'ident.R' 'join-by-compat.R'\n'join-cols-compat.R' 'lazy-join-query.R' 'lazy-ops.R'\n'lazy-query.R' 'lazy-select-query.R' 'lazy-set-op-query.R'\n'memdb.R' 'optimise-utils.R' 'pillar.R' 'progress.R'\n'query-join.R' 'query-select.R' 'query-semi-join.R'\n'query-set-op.R' 'query.R' 'reexport.R' 'remote.R' 'rows.R'\n'schema.R' 'simulate.R' 'sql-build.R' 'sql-clause.R'\n'sql-expr.R' 'src-sql.R' 'src_dbi.R' 'tbl-lazy.R' 'tbl-sql.R'\n'test-frame.R' 'testthat.R' 'tidyeval-across.R' 'tidyeval.R'\n'translate-sql.R' 'utils-format.R' 'verb-arrange.R'\n'verb-compute.R' 'verb-count.R' 'verb-distinct.R'\n'verb-do-query.R' 'verb-do.R' 'verb-expand.R' 'verb-fill.R'\n'verb-filter.R' 'verb-group_by.R' 'verb-head.R' 'verb-joins.R'\n'verb-mutate.R' 'verb-pivot-longer.R' 'verb-pivot-wider.R'\n'verb-pull.R' 'verb-select.R' 'verb-set-ops.R' 'verb-slice.R'\n'verb-summarise.R' 'verb-uncount.R' 'verb-window.R' 'zzz.R'",
"NeedsCompilation": "no",
"Packaged": "2023-07-07 14:13:59 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre],\nMaximilian Girlich [aut],\nEdgar Ruiz [aut],\nRStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "RSPM",
"Date/Publication": "2023-07-07 15:20:02 UTC",
"Built": "R 4.3.0; ; 2023-07-10 11:40:28 UTC; unix"