forked from response4venezuelans/R4VRMRP2022SP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
4618 lines (4618 loc) · 366 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_GB",
"platform": "4.1.1",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"AsioHeaders": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "AsioHeaders",
"Type": "Package",
"Title": "'Asio' C++ Header Files",
"Version": "1.16.1-1",
"Date": "2020-06-28",
"Author": "Dirk Eddelbuettel",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "'Asio' is a cross-platform C++ library for network and low-level\n I/O programming that provides developers with a consistent asynchronous model\n using a modern C++ approach. It is also included in Boost but requires linking\n when used with Boost. Standalone it can be used header-only (provided a recent\n compiler). 'Asio' is written and maintained by Christopher M. Kohlhoff, and\n released under the 'Boost Software License', Version 1.0.",
"Copyright": "file inst/COPYRIGHTS",
"License": "BSL-1.0",
"BugReports": "https://github.com/eddelbuettel/asioheaders/issues",
"NeedsCompilation": "no",
"Packaged": "2020-06-28 20:05:24.317308 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2020-07-07 09:30:05 UTC",
"Built": "R 4.1.1; ; 2021-09-10 16:00:50 UTC; windows"
}
},
"DBI": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "DBI",
"Title": "R Database Interface",
"Version": "1.1.2",
"Date": "2021-12-19",
"Authors@R": "c(\n person(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Kirill\", \"Müller\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"R Consortium\", role = \"fnd\")\n )",
"Description": "A database interface definition for communication between R\n and relational database management systems. All classes in this\n package are virtual and need to be extended by the various R/DBMS\n implementations.",
"License": "LGPL (>= 2.1)",
"URL": "https://dbi.r-dbi.org, https://github.com/r-dbi/DBI",
"BugReports": "https://github.com/r-dbi/DBI/issues",
"Depends": "methods, R (>= 3.0.0)",
"Suggests": "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.1.2",
"Config/Needs/website": "r-dbi/DBItest, AzureKusto, bigrquery,\nDatabaseConnector, dittodb, duckdb, implyr, lazysf, odbc, pool,\nRAthena, RClickhouse, RH2, RJDBC, RMariaDB, RMySQL, RPostgres,\nRPostgreSQL, RPresto, RSQLite, sergeant, sparklyr",
"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": "2021-12-19 20:43:28 UTC; kirill",
"Author": "R Special Interest Group on Databases (R-SIG-DB) [aut],\n Hadley Wickham [aut],\n Kirill Müller [aut, cre] (<https://orcid.org/0000-0002-1416-3412>),\n R Consortium [fnd]",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-12-20 08:32:06 UTC",
"Built": "R 4.1.3; ; 2022-03-10 18:23:55 UTC; windows"
}
},
"DT": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "DT",
"Type": "Package",
"Title": "A Wrapper of the JavaScript Library 'DataTables'",
"Version": "0.21",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Joe\", \"Cheng\", role = \"aut\"),\n person(\"Xianying\", \"Tan\", role = \"aut\"),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Maximilian\", \"Girlich\", role = \"ctb\"),\n person(\"Greg\", \"Freedman Ellis\", role = \"ctb\"),\n person(\"Johannes\", \"Rauh\", role = \"ctb\"),\n person(\"SpryMedia Limited\", role = c(\"ctb\", \"cph\"), comment = \"DataTables in htmlwidgets/lib\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"), comment = \"selectize.js in htmlwidgets/lib\"),\n person(\"Leon\", \"Gersen\", role = c(\"ctb\", \"cph\"), comment = \"noUiSlider in htmlwidgets/lib\"),\n person(\"Bartek\", \"Szopka\", role = c(\"ctb\", \"cph\"), comment = \"jquery.highlight.js in htmlwidgets/lib\"),\n person(\"Alex\", \"Pickering\", role = c(\"ctb\")),\n person(\"William\", \"Holmes\", role = c(\"ctb\")),\n person(\"RStudio, PBC\", role = \"cph\")\n )",
"Maintainer": "Yihui Xie <[email protected]>",
"Description": "Data objects in R can be rendered as HTML tables using the\n JavaScript library 'DataTables' (typically via R Markdown or Shiny). The\n 'DataTables' library has been included in this R package. The package name\n 'DT' is an abbreviation of 'DataTables'.",
"URL": "https://github.com/rstudio/DT",
"BugReports": "https://github.com/rstudio/DT/issues",
"License": "GPL-3 | file LICENSE",
"Imports": "htmltools (>= 0.3.6), htmlwidgets (>= 1.3), jsonlite (>=\n0.9.16), magrittr, crosstalk, jquerylib, promises",
"Suggests": "knitr (>= 1.8), rmarkdown, shiny (>= 1.6), bslib, testit",
"VignetteBuilder": "knitr",
"RoxygenNote": "7.1.2",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2022-02-26 03:47:41 UTC; yihui",
"Author": "Yihui Xie [aut, cre],\n Joe Cheng [aut],\n Xianying Tan [aut],\n JJ Allaire [ctb],\n Maximilian Girlich [ctb],\n Greg Freedman Ellis [ctb],\n Johannes Rauh [ctb],\n SpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),\n Brian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),\n Leon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),\n Bartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),\n Alex Pickering [ctb],\n William Holmes [ctb],\n RStudio, PBC [cph]",
"Repository": "CRAN",
"Date/Publication": "2022-02-26 11:10:02 UTC",
"Built": "R 4.1.3; ; 2022-03-10 22:40:28 UTC; windows"
}
},
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-54",
"Date": "2021-04-17",
"Revision": "$Rev: 3542 $",
"Depends": "R (>= 3.3.0), grDevices, graphics, stats, utils",
"Imports": "methods",
"Suggests": "lattice, nlme, nnet, survival",
"Authors@R": "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"),\n\t person(\"Bill\", \"Venables\", role = \"ctb\"),\n\t person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\n\t person(\"Kurt\", \"Hornik\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"Albrecht\", \"Gebhardt\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"David\", \"Firth\", role = \"ctb\"))",
"Description": "Functions and datasets to support Venables and Ripley,\n \"Modern Applied Statistics with S\" (4th edition, 2002).",
"Title": "Support Functions and Datasets for Venables and Ripley's MASS",
"LazyData": "yes",
"ByteCompile": "yes",
"License": "GPL-2 | GPL-3",
"URL": "http://www.stats.ox.ac.uk/pub/MASS4/",
"Contact": "<[email protected]>",
"NeedsCompilation": "yes",
"Packaged": "2021-05-03 08:31:21 UTC; ripley",
"Author": "Brian Ripley [aut, cre, cph],\n Bill Venables [ctb],\n Douglas M. Bates [ctb],\n Kurt Hornik [trl] (partial port ca 1998),\n Albrecht Gebhardt [trl] (partial port ca 1998),\n David Firth [ctb]",
"Maintainer": "Brian Ripley <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-05-03 09:03:25 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-08-10 08:04:00 UTC; windows"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "Matrix",
"Version": "1.3-4",
"Date": "2021-05-24",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Contact": "Doug and Martin <[email protected]>",
"Maintainer": "Martin Maechler <[email protected]>",
"Authors@R": "c(person(\"Douglas\",\"Bates\", role=\"aut\")\n , person(\"Martin\",\"Maechler\", role = c(\"aut\",\"cre\"), email=\"[email protected]\",\n comment = c(ORCID = \"0000-0002-8685-9910\"))\n , person(\"Timothy A.\", \"Davis\", role=\"ctb\",\n comment = c(\"SuiteSparse and 'cs' C libraries, notably CHOLMOD, AMD;\n\t\t collaborators listed in\n\t\t\tdir(pattern = '^[A-Z]+[.]txt$', full.names=TRUE,\n\t\t\t system.file('doc', 'SuiteSparse', package='Matrix'))\"))\n , person(\"Jens\", \"Oehlschlägel\", role=\"ctb\", comment=\"initial nearPD()\")\n , person(\"Jason\", \"Riedy\", role=\"ctb\",\n comment = c(\"condest() and onenormest() for octave\",\n \t \t \"Copyright: Regents of the University of California\"))\n , person(\"R Core Team\", role = \"ctb\", comment=\"base R matrix implementation\")\n )",
"Description": "A rich hierarchy of matrix classes, including triangular,\n symmetric, and diagonal matrices, both dense and sparse and with\n pattern, logical and numeric entries. Numerous methods for and\n operations on these matrices, using 'LAPACK' and 'SuiteSparse' libraries.",
"Depends": "R (>= 3.5.0)",
"Imports": "methods, graphics, grid, stats, utils, lattice",
"Suggests": "expm, MASS",
"Enhances": "MatrixModels, graph, SparseM, sfsmisc, igraph, maptools, sp,\nspdep",
"EnhancesNote": "line 2: for \"Rd xrefs\"",
"Encoding": "UTF-8",
"LazyData": "no",
"LazyDataNote": "not possible, since we use data/*.R *and* our classes",
"BuildResaveData": "no",
"License": "GPL (>= 2) | file LICENCE",
"URL": "http://Matrix.R-forge.R-project.org/",
"BugReports": "https://r-forge.r-project.org/tracker/?group_id=61",
"NeedsCompilation": "yes",
"Packaged": "2021-05-29 14:45:57 UTC; maechler",
"Author": "Douglas Bates [aut],\n Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\n Timothy A. Davis [ctb] (SuiteSparse and 'cs' C libraries, notably\n CHOLMOD, AMD; collaborators listed in dir(pattern =\n '^[A-Z]+[.]txt$', full.names=TRUE, system.file('doc',\n 'SuiteSparse', package='Matrix'))),\n Jens Oehlschlägel [ctb] (initial nearPD()),\n Jason Riedy [ctb] (condest() and onenormest() for octave, Copyright:\n Regents of the University of California),\n R Core Team [ctb] (base R matrix implementation)",
"Repository": "CRAN",
"Date/Publication": "2021-06-01 06:10:06 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-08-10 08:04:29 UTC; windows"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.5.1",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different packages.",
"Depends": "R (>= 3.0)",
"Suggests": "testthat, pryr",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-08-06 20:18:46 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.1.1; ; 2021-09-03 13:08:02 UTC; windows"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "RColorBrewer",
"Version": "1.1-2",
"Date": "2014-12-07",
"Title": "ColorBrewer Palettes",
"Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n \"cre\"), email = \"[email protected]\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <[email protected]>",
"Depends": "R (>= 2.0.0)",
"Description": "Provides color schemes for maps (and other graphics)\n designed by Cynthia Brewer as described at http://colorbrewer2.org",
"License": "Apache License 2.0",
"Packaged": "2014-12-06 23:59:42 UTC; neuwirth",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2014-12-07 08:28:55",
"Built": "R 4.1.0; ; 2021-05-17 03:39:01 UTC; windows"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.8",
"Date": "2022-01-11",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,\n Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "The 'Rcpp' package provides R functions as well as C++ classes which\n offer a seamless integration of R and C++. Many R data types and objects can be\n mapped back and forth to C++ equivalents which facilitates both writing of new\n code as well as easier integration of third-party libraries. Documentation\n about 'Rcpp' is provided by several vignettes included in this package, via the\n 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and\n Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,\n <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018,\n <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Imports": "methods, utils",
"Suggests": "tinytest, inline, rbenchmark, pkgKitten (>= 0.1.2)",
"URL": "http://www.rcpp.org, https://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",
"NeedsCompilation": "yes",
"Packaged": "2022-01-11 15:50:42 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2022-01-13 21:22:42 UTC",
"Built": "R 4.1.3; x86_64-w64-mingw32; 2022-03-10 18:22:03 UTC; windows"
}
},
"Rttf2pt1": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "Rttf2pt1",
"Title": "'ttf2pt1' Program",
"Version": "1.3.10",
"Author": "Winston Chang,\n Andrew Weeks,\n Frank M. Siegert,\n Mark Heath,\n Thomas Henlick,\n Sergey Babkin,\n Turgut Uyar,\n Rihardas Hepas,\n Szalay Tamas,\n Johan Vromans,\n Petr Titera,\n Lei Wang,\n Chen Xiangyang,\n Zvezdan Petkovic,\n Rigel,\n I. Lee Hetherington",
"Maintainer": "Winston Chang <[email protected]>",
"Description": "Contains the program 'ttf2pt1', for use with the\n 'extrafont' package. This product includes software developed by the 'TTF2PT1'\n Project and its contributors.",
"Depends": "R (>= 2.15)",
"License": "file LICENSE",
"URL": "https://github.com/wch/Rttf2pt1",
"Encoding": "UTF-8",
"RoxygenNote": "6.0.1.9000",
"NeedsCompilation": "yes",
"Packaged": "2022-02-05 15:32:18 UTC; winston",
"License_is_FOSS": "yes",
"Repository": "CRAN",
"Date/Publication": "2022-02-07 03:10:02 UTC",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2022-02-07 12:00:24 UTC; windows"
}
},
"activityinfo": {
"Source": "github",
"Repository": null,
"GithubRepo": "activityinfo-R",
"GithubUsername": "bedatadriven",
"GithubRef": "HEAD",
"GithubSha1": "6da42c1e8892eff27409e53b1a120643c6123595",
"description": {
"Package": "activityinfo",
"Type": "Package",
"Title": "Query and update datasets from ActivityInfo.org",
"Version": "4.14",
"Date": "2021-03-30",
"Author": "Alex Bertram <[email protected]>",
"Maintainer": "Alex Bertram <[email protected]>",
"Description": "Interface to ActivityInfo.org",
"License": "GPL-3",
"Imports": "httr, rjson, reshape2",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"Suggests": "knitr, rmarkdown",
"VignetteBuilder": "knitr",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "activityinfo-R",
"RemoteUsername": "bedatadriven",
"RemoteRef": "HEAD",
"RemoteSha": "6da42c1e8892eff27409e53b1a120643c6123595",
"GithubRepo": "activityinfo-R",
"GithubUsername": "bedatadriven",
"GithubRef": "HEAD",
"GithubSHA1": "6da42c1e8892eff27409e53b1a120643c6123595",
"NeedsCompilation": "no",
"Packaged": "2021-09-09 22:26:53 UTC; FAYOLLE",
"Built": "R 4.1.1; ; 2021-09-09 22:26:55 UTC; windows"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"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\"), \n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\"))",
"Description": "Cross-platform utilities for prompting the user for credentials or a \n passphrase, for example to authenticate with a server or read a protected key.\n Includes native programs for MacOS and Windows, hence no 'tcltk' is required. \n Password entry can be invoked in two different ways: directly from R via the \n askpass() function, or indirectly as password-entry back-end for 'ssh-agent' \n or 'git-credential' via the SSH_ASKPASS and GIT_ASKPASS environment variables.\n Thereby the user can be prompted for credentials or a passphrase if needed \n when R calls out to git or ssh.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/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": "CRAN",
"Date/Publication": "2019-01-13 12:50:03 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-03 14:52:25 UTC; windows"
}
},
"assertthat": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "assertthat",
"Title": "Easy Pre and Post Assertions",
"Version": "0.2.1",
"Authors@R": "\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\"))",
"Description": "An extension to stopifnot() that makes it easy to declare \n the pre and post conditions that you code should satisfy, while also \n producing friendly error messages so that your users know what's gone\n wrong.",
"License": "GPL-3",
"Imports": "tools",
"Suggests": "testthat, covr",
"RoxygenNote": "6.0.1",
"Collate": "'assert-that.r' 'on-failure.r' 'assertions-file.r'\n'assertions-scalar.R' 'assertions.r' 'base.r'\n'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r'\n'utils.r' 'validate-that.R'",
"NeedsCompilation": "no",
"Packaged": "2019-03-21 13:11:01 UTC; hadley",
"Author": "Hadley Wickham [aut, cre]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-21 14:53:46 UTC",
"Built": "R 4.1.1; ; 2021-09-03 13:08:09 UTC; windows"
}
},
"backports": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "backports",
"Type": "Package",
"Title": "Reimplementations of Functions Introduced Since R-3.0.0",
"Version": "1.4.1",
"Authors@R": "c(\n person(\"Michel\", \"Lang\", NULL, \"[email protected]\",\n role = c(\"cre\", \"aut\"), comment = c(ORCID = \"0000-0001-9754-0393\")),\n person(\"R Core Team\", role = \"aut\"))",
"Maintainer": "Michel Lang <[email protected]>",
"Description": "\n Functions introduced or changed since R v3.0.0 are re-implemented in this\n package. The backports are conditionally exported in order to let R resolve\n the function name to either the implemented backport, or the respective base\n version, if available. Package developers can make use of new functions or\n arguments by selectively importing specific backports to\n support older installations.",
"URL": "https://github.com/r-lib/backports",
"BugReports": "https://github.com/r-lib/backports/issues",
"License": "GPL-2 | GPL-3",
"NeedsCompilation": "yes",
"ByteCompile": "yes",
"Depends": "R (>= 3.0.0)",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Packaged": "2021-12-13 10:49:30 UTC; michel",
"Author": "Michel Lang [cre, aut] (<https://orcid.org/0000-0001-9754-0393>),\n R Core Team [aut]",
"Repository": "CRAN",
"Date/Publication": "2021-12-13 11:30:02 UTC",
"Built": "R 4.1.2; x86_64-w64-mingw32; 2021-12-15 00:12:34 UTC; windows"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"Depends": "R (>= 2.9.0)",
"Enhances": "png",
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Packaged": "2015-02-04 20:31:00 UTC; svnuser",
"Repository": "CRAN",
"Date/Publication": "2015-07-28 08:03:37",
"Built": "R 4.1.0; x86_64-w64-mingw32; 2021-05-17 03:39:06 UTC; windows"
}
},
"bit": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "bit",
"Type": "Package",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Version": "4.0.4",
"Date": "2020-08-03",
"Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 2.9.2)",
"Suggests": "testthat (>= 0.11.0), roxygen2, knitr, rmarkdown,\nmicrobenchmark, bit64 (>= 4.0.0), ff (>= 4.0.0)",
"Description": "Provided are classes for boolean and skewed boolean vectors,\n fast boolean methods, fast unique and non-unique integer sorting,\n fast set operations on sorted and unsorted sets of integers, and\n foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/truecluster/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.1.0.9000",
"NeedsCompilation": "yes",
"Packaged": "2020-08-03 12:14:34 UTC; jo",
"Repository": "CRAN",
"Date/Publication": "2020-08-04 04:20:08 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-03 13:08:24 UTC; windows"
}
},
"bit64": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "bit64",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Version": "4.0.5",
"Date": "2020-08-29",
"Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": "R (>= 3.0.1), bit (>= 4.0.0), utils, methods, stats",
"Description": "\n Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. \n These are useful for handling database keys and exact counting in +-2^63.\n WARNING: do not use them as replacement for 32bit integers, integer64 are not\n supported for subscripting by R-core and they have different semantics when \n combined with double, e.g. integer64 + double => integer64. \n Class integer64 can be used in vectors, matrices, arrays and data.frames. \n Methods are available for coercion from and to logicals, integers, doubles, \n characters and factors as well as many elementwise and summary functions. \n Many fast algorithmic operations such as 'match' and 'order' support inter-\n active data exploration and manipulation and optionally leverage caching.",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"URL": "https://github.com/truecluster/bit64",
"Encoding": "UTF-8",
"Repository": "CRAN",
"Repository/R-Forge/Project": "ff",
"Repository/R-Forge/Revision": "177",
"Repository/R-Forge/DateTimeStamp": "2018-08-17 17:45:18",
"Date/Publication": "2020-08-30 07:20:02 UTC",
"NeedsCompilation": "yes",
"Packaged": "2020-08-29 10:56:45 UTC; jo",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-03 14:51:24 UTC; windows"
}
},
"blob": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "blob",
"Title": "A Simple S3 Class for Representing Vectors of Binary Data\n('BLOBS')",
"Version": "1.2.2",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"aut\"),\n person(given = \"Kirill\",\n family = \"Müller\",\n role = \"cre\",\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "R's raw vector is useful for storing a single\n binary object. What if you want to put a vector of them in a data\n frame? The 'blob' package provides the blob object, a list of raw\n vectors, suitable for use 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",
"Encoding": "UTF-8",
"RoxygenNote": "7.0.2",
"NeedsCompilation": "no",
"Packaged": "2021-07-23 02:39:55 UTC; kirill",
"Author": "Hadley Wickham [aut],\n Kirill Müller [cre],\n RStudio [cph]",
"Maintainer": "Kirill Müller <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-07-23 05:20:08 UTC",
"Built": "R 4.1.1; ; 2021-09-03 16:45:00 UTC; windows"
}
},
"bookdown": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "bookdown",
"Type": "Package",
"Title": "Authoring Books and Technical Documents with R Markdown",
"Version": "0.25",
"Authors@R": "c(\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-0645-5666\")),\n person(\"JJ\", \"Allaire\", role = \"ctb\"),\n person(\"Albert\", \"Kim\", role = \"ctb\"),\n person(\"Alessandro\", \"Samuel-Rosa\", role = \"ctb\"),\n person(\"Andrzej\", \"Oles\", role = \"ctb\"),\n person(\"Atsushi\", \"Yasumoto\", role = \"ctb\", comment = c(ORCID = \"0000-0002-8335-495X\")),\n person(\"Aust\", \"Frederik\", role = \"ctb\", comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(\"Bastiaan\", \"Quast\", role = \"ctb\"),\n person(\"Ben\", \"Marwick\", role = \"ctb\"),\n person(\"Chester\", \"Ismay\", role = \"ctb\"),\n person(\"Christophe\", \"Dervieux\", role = \"ctb\"),\n person(\"Clifton\", \"Franklund\", role = \"ctb\"),\n person(\"Daniel\", \"Emaasit\", role = \"ctb\"),\n person(\"David\", \"Shuman\", role = \"ctb\"),\n person(\"Dean\", \"Attali\", role = \"ctb\"),\n person(\"Drew\", \"Tyre\", role = \"ctb\"),\n person(\"Ellis\", \"Valentiner\", role = \"ctb\"),\n person(\"Frans\", \"van Dunne\", role = \"ctb\"),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Jeff\", \"Allen\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\"),\n person(\"Jonathan\", \"McPhers\", role = \"ctb\"),\n person(\"JooYoung\", \"Seo\", role=\"ctb\", comment = c(ORCID = \"0000-0002-4064-6012\")),\n person(\"Joyce\", \"Robbins\", role = \"ctb\"),\n person(\"Junwen\", \"Huang\", role = \"ctb\"),\n person(\"Kevin\", \"Cheung\", role = \"ctb\"),\n person(\"Kevin\", \"Ushey\", role = \"ctb\"),\n person(\"Kim\", \"Seonghyun\", role = \"ctb\"),\n person(\"Kirill\", \"Muller\", role = \"ctb\"),\n person(\"Luciano\", \"Selzer\", role = \"ctb\"),\n person(\"Matthew\", \"Lincoln\", role = \"ctb\"),\n person(\"Maximilian\", \"Held\", role = \"ctb\"),\n person(\"Michael\", \"Sachs\", role = \"ctb\"),\n person(\"Michal\", \"Bojanowski\", role = \"ctb\"),\n person(\"Nathan\", \"Werth\", role = \"ctb\"),\n person(\"Noam\", \"Ross\", role = \"ctb\"),\n person(\"Peter\", \"Hickey\", role = \"ctb\"),\n person(\"Pedro Rafael D.\", \"Marinho\", role=\"ctb\", comment = c(ORCID = \"0000-0003-1591-8300\")),\n person(\"Romain\", \"Lesur\", role = \"ctb\", comment = c(ORCID = \"0000-0002-0721-5595\")),\n person(\"Sahir\", \"Bhatnagar\", role = \"ctb\"),\n person(\"Shir\", \"Dekel\", role = \"ctb\", comment = c(ORCID = \"0000-0003-1773-2446\")),\n person(\"Steve\", \"Simpson\", role = \"ctb\"),\n person(\"Thierry\", \"Onkelinx\", role = \"ctb\", comment = c(ORCID = \"0000-0001-8804-4216\")),\n person(\"Vincent\", \"Fulco\", role = \"ctb\"),\n person(\"Yixuan\", \"Qiu\", role = \"ctb\"),\n person(\"Zhuoer\", \"Dong\", role = \"ctb\"),\n person(family = \"RStudio, PBC\", role = \"cph\"),\n person(\"Bartek\", \"Szopka\", role = \"ctb\", comment = \"The jQuery Highlight plugin\"),\n person(\"Zeno\", \"Rocha\", role = \"cph\", comment = \"clipboard.js library\"),\n person(family = \"MathQuill contributors\", role = \"ctb\", comment = \"The MathQuill library; authors listed in inst/resources/AUTHORS\"),\n person(family = \"FriendCode Inc\", role = c(\"cph\", \"ctb\"), comment = \"The gitbook style, with modifications\")\n )",
"Maintainer": "Yihui Xie <[email protected]>",
"Description": "Output formats and utilities for authoring books and technical documents with R Markdown.",
"License": "GPL-3",
"Imports": "htmltools (>= 0.3.6), knitr (>= 1.31), rmarkdown (>= 2.13),\njquerylib, xfun (>= 0.29), tinytex (>= 0.12), yaml (>= 2.1.19)",
"Suggests": "bslib (>= 0.2.4), downlit (>= 0.4.0), htmlwidgets, jsonlite,\nrstudioapi, miniUI, rsconnect (>= 0.4.3), servr (>= 0.13),\nshiny, tibble, testit (>= 0.9), tufte, xml2, webshot, testthat\n(>= 3.1.0), withr (>= 2.3.0)",
"URL": "https://github.com/rstudio/bookdown,\nhttps://pkgs.rstudio.com/bookdown/",
"BugReports": "https://github.com/rstudio/bookdown/issues",
"SystemRequirements": "Pandoc (>= 1.17.2)",
"RoxygenNote": "7.1.2",
"Encoding": "UTF-8",
"Config/Needs/book": "remotes, webshot",
"Config/Needs/website": "pkgdown, tidyverse/tidytemplate, rstudio/quillt",
"Config/testthat/edition": "3",
"VignetteBuilder": "knitr",
"NeedsCompilation": "no",
"Packaged": "2022-03-16 03:12:36 UTC; yihui",
"Author": "Yihui Xie [aut, cre] (<https://orcid.org/0000-0003-0645-5666>),\n JJ Allaire [ctb],\n Albert Kim [ctb],\n Alessandro Samuel-Rosa [ctb],\n Andrzej Oles [ctb],\n Atsushi Yasumoto [ctb] (<https://orcid.org/0000-0002-8335-495X>),\n Aust Frederik [ctb] (<https://orcid.org/0000-0003-4900-788X>),\n Bastiaan Quast [ctb],\n Ben Marwick [ctb],\n Chester Ismay [ctb],\n Christophe Dervieux [ctb],\n Clifton Franklund [ctb],\n Daniel Emaasit [ctb],\n David Shuman [ctb],\n Dean Attali [ctb],\n Drew Tyre [ctb],\n Ellis Valentiner [ctb],\n Frans van Dunne [ctb],\n Hadley Wickham [ctb],\n Jeff Allen [ctb],\n Jennifer Bryan [ctb],\n Jonathan McPhers [ctb],\n JooYoung Seo [ctb] (<https://orcid.org/0000-0002-4064-6012>),\n Joyce Robbins [ctb],\n Junwen Huang [ctb],\n Kevin Cheung [ctb],\n Kevin Ushey [ctb],\n Kim Seonghyun [ctb],\n Kirill Muller [ctb],\n Luciano Selzer [ctb],\n Matthew Lincoln [ctb],\n Maximilian Held [ctb],\n Michael Sachs [ctb],\n Michal Bojanowski [ctb],\n Nathan Werth [ctb],\n Noam Ross [ctb],\n Peter Hickey [ctb],\n Pedro Rafael D. Marinho [ctb] (<https://orcid.org/0000-0003-1591-8300>),\n Romain Lesur [ctb] (<https://orcid.org/0000-0002-0721-5595>),\n Sahir Bhatnagar [ctb],\n Shir Dekel [ctb] (<https://orcid.org/0000-0003-1773-2446>),\n Steve Simpson [ctb],\n Thierry Onkelinx [ctb] (<https://orcid.org/0000-0001-8804-4216>),\n Vincent Fulco [ctb],\n Yixuan Qiu [ctb],\n Zhuoer Dong [ctb],\n RStudio, PBC [cph],\n Bartek Szopka [ctb] (The jQuery Highlight plugin),\n Zeno Rocha [cph] (clipboard.js library),\n MathQuill contributors [ctb] (The MathQuill library; authors listed in\n inst/resources/AUTHORS),\n FriendCode Inc [cph, ctb] (The gitbook style, with modifications)",
"Repository": "CRAN",
"Date/Publication": "2022-03-16 10:20:08 UTC",
"Built": "R 4.1.1; ; 2022-03-16 21:59:52 UTC; windows"
}
},
"broom": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Type": "Package",
"Package": "broom",
"Title": "Convert Statistical Objects into Tidy Tibbles",
"Version": "0.7.12",
"Authors@R": "\n c(person(given = \"David\",\n family = \"Robinson\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Alex\",\n family = \"Hayes\",\n role = \"aut\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4985-5160\")),\n person(given = \"Simon\",\n family = \"Couch\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-5676-5107\")),\n person(given = \"Indrajeet\",\n family = \"Patil\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-1995-6531\")),\n person(given = \"Derek\",\n family = \"Chiu\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthieu\",\n family = \"Gomez\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Boris\",\n family = \"Demeshev\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Dieter\",\n family = \"Menne\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Benjamin\",\n family = \"Nutter\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luke\",\n family = \"Johnston\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Bolker\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Francois\",\n family = \"Briatte\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jeffrey\",\n family = \"Arnold\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jonah\",\n family = \"Gabry\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luciano\",\n family = \"Selzer\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Gavin\",\n family = \"Simpson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jens\",\n family = \"Preussner\",\n role = \"ctb\",\n email = \" [email protected]\"),\n person(given = \"Jay\",\n family = \"Hesselberth\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hadley\",\n family = \"Wickham\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthew\",\n family = \"Lincoln\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Alessandro\",\n family = \"Gasparini\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Lukasz\",\n family = \"Komsta\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Frederick\",\n family = \"Novometsky\",\n role = \"ctb\"),\n person(given = \"Wilson\",\n family = \"Freitas\",\n role = \"ctb\"),\n person(given = \"Michelle\",\n family = \"Evans\",\n role = \"ctb\"),\n person(given = \"Jason Cory\",\n family = \"Brunson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Simon\",\n family = \"Jackson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Whalley\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Karissa\",\n family = \"Whiting\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Yves\",\n family = \"Rosseel\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Michael\",\n family = \"Kuehn\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jorge\",\n family = \"Cimentada\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Erle\",\n family = \"Holgersen\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Karl\",\n family = \"Dunkle Werner\",\n role = \"ctb\",\n comment = c(ORCID = \"0000-0003-0523-7309\")),\n person(given = \"Ethan\",\n family = \"Christensen\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Steven\",\n family = \"Pav\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Paul\",\n family = \"PJ\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Patrick\",\n family = \"Kennedy\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Lily\",\n family = \"Medina\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Brian\",\n family = \"Fannin\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jason\",\n family = \"Muhlenkamp\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matt\",\n family = \"Lehman\",\n role = \"ctb\"),\n person(given = \"Bill\",\n family = \"Denney\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-5759-428X\")),\n person(given = \"Nic\",\n family = \"Crane\",\n role = \"ctb\"),\n person(given = \"Andrew\",\n family = \"Bates\",\n role = \"ctb\"),\n person(given = \"Vincent\",\n family = \"Arel-Bundock\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-2042-7063\")),\n person(given = \"Hideaki\",\n family = \"Hayashi\",\n role = \"ctb\"),\n person(given = \"Luis\",\n family = \"Tobalina\",\n role = \"ctb\"),\n person(given = \"Annie\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Wei Yang\",\n family = \"Tham\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Abby\",\n family = \"Smith\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3207-0375\")),\n person(given = \"Jasper\",\n family = \"Cooper\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-8639-3188\")),\n person(given = \"E Auden\",\n family = \"Krauska\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-1466-5850\")),\n person(given = \"Alex\",\n family = \"Wang\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Malcolm\",\n family = \"Barrett\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0299-5825\")),\n person(given = \"Charles\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-9978-011X\")),\n person(given = \"Jared\",\n family = \"Wilber\",\n role = \"ctb\"),\n person(given = \"Vilmantas\",\n family = \"Gegzna\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-9500-5167\")),\n person(given = \"Eduard\",\n family = \"Szoecs\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Frederik\",\n family = \"Aust\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-4900-788X\")),\n person(given = \"Angus\",\n family = \"Moore\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Nick\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Marius\",\n family = \"Barth\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3421-6665\")),\n person(given = \"Bruna\",\n family = \"Wundervald\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-8163-220X\")),\n person(given = \"Joyce\",\n family = \"Cahoon\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7217-4702\")),\n person(given = \"Grant\",\n family = \"McDermott\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7883-8573\")),\n person(given = \"Kevin\",\n family = \"Zarca\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Shiro\",\n family = \"Kuriwaki\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-5687-2647\")),\n person(given = \"Lukas\",\n family = \"Wallrich\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-2121-5177\")),\n person(given = \"James\",\n family = \"Martherus\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-8285-3300\")),\n person(given = \"Chuliang\",\n family = \"Xiao\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-8466-9398\")),\n person(given = \"Joseph\",\n family = \"Larmarange\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Max\",\n family = \"Kuhn\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Michal\",\n family = \"Bojanowski\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hakon\",\n family = \"Malmedal\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Clara\",\n family = \"Wang\",\n role = \"ctb\"),\n person(given = \"Sergio\",\n family = \"Oller\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Luke\",\n family = \"Sonnet\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jim\",\n family = \"Hester\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Cory\",\n family = \"Brunson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Ben\",\n family = \"Schneider\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Bernie\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9190-6032\")),\n person(given = \"Mara\",\n family = \"Averick\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Aaron\",\n family = \"Jacobs\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Andreas\",\n family = \"Bender\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Sven\",\n family = \"Templer\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Paul-Christian\",\n family = \"Buerkner\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthew\",\n family = \"Kay\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Erwan\",\n family = \"Le Pennec\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Johan\",\n family = \"Junkka\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hao\",\n family = \"Zhu\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Benjamin\",\n family = \"Soltoff\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Zoe\",\n family = \"Wilkinson Saldana\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Tyler\",\n family = \"Littlefield\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Charles T.\",\n family = \"Gray\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Shabbh E.\",\n family = \"Banks\",\n role = \"ctb\"),\n person(given = \"Serina\",\n family = \"Robinson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Roger\",\n family = \"Bivand\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Riinu\",\n family = \"Ots\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Nicholas\",\n family = \"Williams\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Nina\",\n family = \"Jakobsen\",\n role = \"ctb\"),\n person(given = \"Michael\",\n family = \"Weylandt\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Lisa\",\n family = \"Lendway\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Karl\",\n family = \"Hailperin\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Josue\",\n family = \"Rodriguez\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jenny\",\n family = \"Bryan\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Chris\",\n family = \"Jarvis\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Greg\",\n family = \"Macfarlane\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Brian\",\n family = \"Mannakee\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Drew\",\n family = \"Tyre\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Shreyas\",\n family = \"Singh\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Laurens\",\n family = \"Geffert\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hong\",\n family = \"Ooi\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Henrik\",\n family = \"Bengtsson\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Eduard\",\n family = \"Szocs\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"David\",\n family = \"Hugh-Jones\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Matthieu\",\n family = \"Stigler\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Hugo\",\n family = \"Tavares\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9373-2726\")),\n\t person(given = \"R. Willem\",\n family = \"Vervoort\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Brenton M.\",\n family = \"Wiernik\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Josh\",\n family = \"Yamamoto\",\n role = \"ctb\",\n email = \"[email protected]\"),\n person(given = \"Jasme\",\n family = \"Lee\",\n role = \"ctb\"),\n person(given = \"Taren\",\n family = \"Sanders\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4504-6008\")),\n person(given = \"Ilaria\",\n family = \"Prosdocimi\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-8565-094X\")),\n person(given = \"Daniel D.\",\n family = \"Sjoberg\",\n role = \"ctb\",\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0862-2018\")))",
"Description": "Summarizes key information about statistical\n objects in tidy tibbles. This makes it easy to report results, create\n plots and consistently work with large numbers of models at once.\n Broom provides three verbs that each provide different types of\n information about a model. tidy() summarizes information about model\n components such as coefficients of a regression. glance() reports\n information about an entire model, such as goodness of fit measures\n like AIC and BIC. augment() adds information about individual\n observations to a dataset, such as fitted values or influence\n measures.",
"License": "MIT + file LICENSE",
"URL": "https://broom.tidymodels.org/, https://github.com/tidymodels/broom",
"BugReports": "https://github.com/tidymodels/broom/issues",
"Depends": "R (>= 3.1)",
"Imports": "backports, dplyr (>= 1.0.0), ellipsis, generics (>= 0.0.2),\nglue, methods, purrr, rlang, stringr, tibble (>= 3.0.0), tidyr\n(>= 1.0.0), ggplot2",
"Suggests": "AER, akima, AUC, bbmle, betareg, biglm, binGroup, boot,\nbtergm, car, caret, cluster, cmprsk, coda, covr, drc, e1071,\nemmeans, epiR, ergm (>= 3.10.4), fixest (>= 0.9.0), gam (>=\n1.15), gee, geepack, glmnet, glmnetUtils, gmm, Hmisc, irlba,\njoineRML, Kendall, knitr, ks, Lahman, lavaan, leaps, lfe,\nlm.beta, lme4, lmodel2, lmtest (>= 0.9.38), lsmeans, maps,\nmaptools, margins, MASS, Matrix, mclust, mediation, metafor,\nmfx, mgcv, mlogit, modeldata, modeltests, muhaz, multcomp,\nnetwork, nnet, orcutt (>= 2.2), ordinal, plm, poLCA, psych,\nquantreg, rgeos, rmarkdown, robust, robustbase, rsample,\nsandwich, sp, spdep (>= 1.1), spatialreg, speedglm, spelling,\nsurvey, survival, systemfit, testthat (>= 2.1.0), tseries,\nvars, zoo",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"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'cmprsk-tidiers.R' 'data-frame-tidiers.R' 'deprecated-0-7-0.R'\n'drc-tidiers.R' 'emmeans-tidiers.R' 'epiR-tidiers.R'\n'ergm-tidiers.R' 'fixest-tidiers.R' 'gam-tidiers.R'\n'geepack-tidiers.R' 'glmnet-cv-glmnet-tidiers.R'\n'glmnet-glmnet-tidiers.R' 'gmm-tidiers.R' 'hmisc-tidiers.R'\n'joinerml-tidiers.R' 'kendall-tidiers.R' 'ks-tidiers.R'\n'lavaan-tidiers.R' 'leaps.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' 'matrix-tidiers.R'\n'mclust-tidiers.R' 'mediate-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' 'pam-tidiers.R' 'plm-tidiers.R'\n'polca-tidiers.R' 'psych-tidiers.R' 'stats-nls-tidiers.R'\n'quantreg-nlrq-tidiers.R' 'quantreg-rq-tidiers.R'\n'quantreg-rqs-tidiers.R' 'rma-tidiers.R'\n'robust-glmrob-tidiers.R' 'robust-lmrob-tidiers.R'\n'robustbase-glmrob-tidiers.R' 'robustbase-lmrob-tidiers.R'\n'sp-tidiers.R' 'spdep-tidiers.R' 'speedglm-speedglm-tidiers.R'\n'speedglm-speedlm-tidiers.R' 'stats-anova-tidiers.R'\n'stats-arima-tidiers.R' 'stats-decompose-tidiers.R'\n'stats-factanal-tidiers.R' 'stats-glm-tidiers.R'\n'stats-htest-tidiers.R' 'stats-kmeans-tidiers.R'\n'stats-loess-tidiers.R' 'stats-mlm-tidiers.R'\n'stats-prcomp-tidiers.R' 'stats-smooth.spline-tidiers.R'\n'stats-summary-lm-tidiers.R' 'stats-time-series-tidiers.R'\n'survey-tidiers.R' 'survival-aareg-tidiers.R'\n'survival-cch-tidiers.R' 'survival-coxph-tidiers.R'\n'survival-pyears-tidiers.R' 'survival-survdiff-tidiers.R'\n'survival-survexp-tidiers.R' 'survival-survfit-tidiers.R'\n'survival-survreg-tidiers.R' 'systemfit-tidiers.R'\n'tseries-tidiers.R' 'utilities.R' 'vars-tidiers.R'\n'zoo-tidiers.R' 'zzz.R'",
"NeedsCompilation": "no",
"Packaged": "2022-01-28 19:57:56 UTC; simonpcouch",
"Author": "David Robinson [aut],\n Alex Hayes [aut] (<https://orcid.org/0000-0002-4985-5160>),\n Simon Couch [aut, cre] (<https://orcid.org/0000-0001-5676-5107>),\n Indrajeet Patil [ctb] (<https://orcid.org/0000-0003-1995-6531>),\n Derek Chiu [ctb],\n Matthieu Gomez [ctb],\n Boris Demeshev [ctb],\n Dieter Menne [ctb],\n Benjamin Nutter [ctb],\n Luke Johnston [ctb],\n Ben Bolker [ctb],\n Francois Briatte [ctb],\n Jeffrey Arnold [ctb],\n Jonah Gabry [ctb],\n Luciano Selzer [ctb],\n Gavin Simpson [ctb],\n Jens Preussner [ctb],\n Jay Hesselberth [ctb],\n Hadley Wickham [ctb],\n Matthew Lincoln [ctb],\n Alessandro Gasparini [ctb],\n Lukasz Komsta [ctb],\n Frederick Novometsky [ctb],\n Wilson Freitas [ctb],\n Michelle Evans [ctb],\n Jason Cory Brunson [ctb],\n Simon Jackson [ctb],\n Ben Whalley [ctb],\n Karissa Whiting [ctb],\n Yves Rosseel [ctb],\n Michael Kuehn [ctb],\n Jorge Cimentada [ctb],\n Erle Holgersen [ctb],\n Karl Dunkle Werner [ctb] (<https://orcid.org/0000-0003-0523-7309>),\n Ethan Christensen [ctb],\n Steven Pav [ctb],\n Paul PJ [ctb],\n Ben Schneider [ctb],\n Patrick Kennedy [ctb],\n Lily Medina [ctb],\n Brian Fannin [ctb],\n Jason Muhlenkamp [ctb],\n Matt Lehman [ctb],\n Bill Denney [ctb] (<https://orcid.org/0000-0002-5759-428X>),\n Nic Crane [ctb],\n Andrew Bates [ctb],\n Vincent Arel-Bundock [ctb] (<https://orcid.org/0000-0003-2042-7063>),\n Hideaki Hayashi [ctb],\n Luis Tobalina [ctb],\n Annie Wang [ctb],\n Wei Yang Tham [ctb],\n Clara Wang [ctb],\n Abby Smith [ctb] (<https://orcid.org/0000-0002-3207-0375>),\n Jasper Cooper [ctb] (<https://orcid.org/0000-0002-8639-3188>),\n E Auden Krauska [ctb] (<https://orcid.org/0000-0002-1466-5850>),\n Alex Wang [ctb],\n Malcolm Barrett [ctb] (<https://orcid.org/0000-0003-0299-5825>),\n Charles Gray [ctb] (<https://orcid.org/0000-0002-9978-011X>),\n Jared Wilber [ctb],\n Vilmantas Gegzna [ctb] (<https://orcid.org/0000-0002-9500-5167>),\n Eduard Szoecs [ctb],\n Frederik Aust [ctb] (<https://orcid.org/0000-0003-4900-788X>),\n Angus Moore [ctb],\n Nick Williams [ctb],\n Marius Barth [ctb] (<https://orcid.org/0000-0002-3421-6665>),\n Bruna Wundervald [ctb] (<https://orcid.org/0000-0001-8163-220X>),\n Joyce Cahoon [ctb] (<https://orcid.org/0000-0001-7217-4702>),\n Grant McDermott [ctb] (<https://orcid.org/0000-0001-7883-8573>),\n Kevin Zarca [ctb],\n Shiro Kuriwaki [ctb] (<https://orcid.org/0000-0002-5687-2647>),\n Lukas Wallrich [ctb] (<https://orcid.org/0000-0003-2121-5177>),\n James Martherus [ctb] (<https://orcid.org/0000-0002-8285-3300>),\n Chuliang Xiao [ctb] (<https://orcid.org/0000-0002-8466-9398>),\n Joseph Larmarange [ctb],\n Max Kuhn [ctb],\n Michal Bojanowski [ctb],\n Hakon Malmedal [ctb],\n Clara Wang [ctb],\n Sergio Oller [ctb],\n Luke Sonnet [ctb],\n Jim Hester [ctb],\n Cory Brunson [ctb],\n Ben Schneider [ctb],\n Bernie Gray [ctb] (<https://orcid.org/0000-0001-9190-6032>),\n Mara Averick [ctb],\n Aaron Jacobs [ctb],\n Andreas Bender [ctb],\n Sven Templer [ctb],\n Paul-Christian Buerkner [ctb],\n Matthew Kay [ctb],\n Erwan Le Pennec [ctb],\n Johan Junkka [ctb],\n Hao Zhu [ctb],\n Benjamin Soltoff [ctb],\n Zoe Wilkinson Saldana [ctb],\n Tyler Littlefield [ctb],\n Charles T. Gray [ctb],\n Shabbh E. Banks [ctb],\n Serina Robinson [ctb],\n Roger Bivand [ctb],\n Riinu Ots [ctb],\n Nicholas Williams [ctb],\n Nina Jakobsen [ctb],\n Michael Weylandt [ctb],\n Lisa Lendway [ctb],\n Karl Hailperin [ctb],\n Josue Rodriguez [ctb],\n Jenny Bryan [ctb],\n Chris Jarvis [ctb],\n Greg Macfarlane [ctb],\n Brian Mannakee [ctb],\n Drew Tyre [ctb],\n Shreyas Singh [ctb],\n Laurens Geffert [ctb],\n Hong Ooi [ctb],\n Henrik Bengtsson [ctb],\n Eduard Szocs [ctb],\n David Hugh-Jones [ctb],\n Matthieu Stigler [ctb],\n Hugo Tavares [ctb] (<https://orcid.org/0000-0001-9373-2726>),\n R. Willem Vervoort [ctb],\n Brenton M. Wiernik [ctb],\n Josh Yamamoto [ctb],\n Jasme Lee [ctb],\n Taren Sanders [ctb] (<https://orcid.org/0000-0002-4504-6008>),\n Ilaria Prosdocimi [ctb] (<https://orcid.org/0000-0001-8565-094X>),\n Daniel D. Sjoberg [ctb] (<https://orcid.org/0000-0003-0862-2018>)",
"Maintainer": "Simon Couch <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-01-28 23:30:05 UTC",
"Built": "R 4.1.3; ; 2022-03-11 03:15:40 UTC; windows"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "bslib",
"Title": "Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'",
"Version": "0.3.1",
"Authors@R": "c(\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Javi\", \"Aguilar\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap colorpicker library\"),\n person(\"Thomas\", \"Park\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootswatch library\"),\n person(family = \"PayPal\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap accessibility plugin\")\n )",
"Description": "Simplifies custom 'CSS' styling of both 'shiny' and 'rmarkdown' via 'Bootstrap' 'Sass'. Supports both 'Bootstrap' 3 and 4 as well as their various 'Bootswatch' themes. An interactive widget is also provided for previewing themes in real time.",
"Depends": "R (>= 2.10)",
"Imports": "grDevices, htmltools (>= 0.5.2), jsonlite, sass (>= 0.4.0),\njquerylib (>= 0.1.3), rlang",
"Suggests": "shiny (>= 1.6.0), rmarkdown (>= 2.7), thematic, knitr,\ntestthat, withr, rappdirs, curl, magrittr",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"Config/testthat/edition": "3",
"Collate": "'bootswatch.R' 'bs-current-theme.R' 'bs-dependencies.R'\n'bs-global.R' 'bs-remove.R' 'bs-theme-layers.R' 'utils.R'\n'bs-theme-preview.R' 'bs-theme-update.R' 'bs-theme.R'\n'deprecated.R' 'files.R' 'imports.R' 'nav-items.R'\n'nav-update.R' 'navs-legacy.R' 'navs.R' 'onLoad.R' 'page.R'\n'precompiled.R' 'print.R' 'shiny-devmode.R' 'utils-shiny.R'\n'utils-tags.R' 'version-default.R' 'versions.R'",
"URL": "https://rstudio.github.io/bslib/, https://github.com/rstudio/bslib",
"BugReports": "https://github.com/rstudio/bslib/issues",
"Config/Needs/website": "rsconnect, renv, r-lib/pkgdown, apreshill/quillt",
"NeedsCompilation": "no",
"Packaged": "2021-10-06 14:12:58 UTC; cpsievert",
"Author": "Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Joe Cheng [aut],\n RStudio [cph],\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Javi Aguilar [ctb, cph] (Bootstrap colorpicker library),\n Thomas Park [ctb, cph] (Bootswatch library),\n PayPal [ctb, cph] (Bootstrap accessibility plugin)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-10-06 15:10:05 UTC",
"Built": "R 4.1.3; ; 2022-03-10 23:58:50 UTC; windows"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "cachem",
"Version": "1.0.6",
"Title": "Cache R Objects with Automatic Pruning",
"Description": "Key-value stores with automatic pruning. Caches can limit\n either their total size or the age of the oldest object (or both),\n automatically pruning objects to maintain the constraints.",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(family = \"RStudio\", role = c(\"cph\", \"fnd\")))",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"URL": "https://cachem.r-lib.org/, https://github.com/r-lib/cachem",
"Imports": "rlang, fastmap",
"Suggests": "testthat",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "yes",
"Packaged": "2021-08-19 21:07:46 UTC; barret",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 21:30:02 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-03 13:09:34 UTC; windows"
}
},
"callr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "callr",
"Title": "Call R from R",
"Version": "3.7.0",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\",\n\t comment = c(ORCID = \"0000-0001-7098-9676\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\")),\n person(\"Mango Solutions\", role = c(\"cph\", \"fnd\")))",
"Description": "It is sometimes useful to perform a computation in a\n separate R process, without affecting the current R process at all.\n This packages 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",
"RoxygenNote": "7.1.1.9001",
"Imports": "processx (>= 3.5.0), R6, utils",
"Suggests": "cli, covr, ps, rprojroot, spelling, testthat, withr (>=\n2.3.0)",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "no",
"Packaged": "2021-04-20 12:39:23 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre, cph] (<https://orcid.org/0000-0001-7098-9676>),\n Winston Chang [aut],\n RStudio [cph, fnd],\n Mango Solutions [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-20 14:20:10 UTC",
"Built": "R 4.1.1; ; 2021-09-03 16:45:15 UTC; windows"
}
},
"cellranger": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "cellranger",
"Title": "Translate Spreadsheet Cell Ranges to Rows and Columns",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Jennifer\", \"Bryan\", , \"[email protected]\", c(\"cre\", \"aut\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", \"ctb\")\n )",
"Description": "Helper functions to work with spreadsheets and the \"A1:D10\" style\n of cell range specification.",
"Depends": "R (>= 3.0.0)",
"License": "MIT + file LICENSE",
"LazyData": "true",
"URL": "https://github.com/rsheets/cellranger",
"BugReports": "https://github.com/rsheets/cellranger/issues",
"Suggests": "covr, testthat (>= 1.0.0), knitr, rmarkdown",
"RoxygenNote": "5.0.1.9000",
"VignetteBuilder": "knitr",
"Imports": "rematch, tibble",
"NeedsCompilation": "no",
"Packaged": "2016-07-26 06:50:00 UTC; jenny",
"Author": "Jennifer Bryan [cre, aut],\n Hadley Wickham [ctb]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2016-07-27 03:17:48",
"Built": "R 4.1.1; ; 2021-09-03 19:12:36 UTC; windows"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.2.0",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = c(\"ctb\")),\n person(\"Kirill\", \"Müller\", role = c(\"ctb\")),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "A suite of tools to build attractive command line interfaces\n ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\n etc. Supports custom themes via a 'CSS'-like language. It also contains a\n number of lower level 'CLI' elements: rules, boxes, trees, and\n 'Unicode' symbols with 'ASCII' alternatives. It support ANSI colors and\n 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",
"RoxygenNote": "7.1.2.9000",
"Depends": "R (>= 2.10)",
"Imports": "glue (>= 1.6.0), utils",
"Suggests": "asciicast, callr, covr, digest, grDevices, htmltools,\nhtmlwidgets, knitr, methods, mockery, processx, ps (>=\n1.3.4.9000), rlang, rmarkdown, rstudioapi, shiny, testthat,\ntibble, whoami, withr",
"Config/testthat/edition": "3",
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc,\nfansi, sessioninfo, usethis, vctrs",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2022-02-10 17:53:58 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n RStudio [cph]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-14 10:10:11 UTC",
"Built": "R 4.1.3; x86_64-w64-mingw32; 2022-03-10 20:37:45 UTC; windows"
}
},
"clipr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Type": "Package",
"Package": "clipr",
"Title": "Read and Write from the System Clipboard",
"Version": "0.8.0",
"Authors@R": "c(\n person(\"Matthew\", \"Lincoln\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4387-3384\")),\n person(\"Louis\", \"Maddox\", role = \"ctb\"),\n person(\"Steve\", \"Simpson\", role = \"ctb\"),\n person(\"Jennifer\", \"Bryan\", role = \"ctb\")\n )",
"Description": "Simple utility functions to read from and write to\n the 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>),\n Louis Maddox [ctb],\n Steve Simpson [ctb],\n Jennifer Bryan [ctb]",
"Maintainer": "Matthew Lincoln <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-22 00:58:45 UTC",
"Built": "R 4.1.3; ; 2022-03-10 18:22:57 UTC; windows"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "colorspace",
"Version": "2.0-3",
"Date": "2022-02-19",
"Title": "A Toolbox for Manipulating and Assessing Colors and Palettes",
"Authors@R": "c(person(given = \"Ross\", family = \"Ihaka\", role = \"aut\", email = \"[email protected]\"),\n person(given = \"Paul\", family = \"Murrell\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3224-8858\")),\n person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"[email protected]\",\n\t\t comment = c(ORCID = \"0000-0003-4198-9911\")),\n person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-9032-8912\")),\n person(given = \"Reto\", family = \"Stauffer\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-3798-5507\")),\n person(given = c(\"Claus\", \"O.\"), family = \"Wilke\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(given = c(\"Claire\", \"D.\"), family = \"McWhite\", role = \"aut\", email = \"[email protected]\",\n comment = c(ORCID = \"0000-0001-7346-3047\")),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0003-0918-3766\")))",
"Description": "Carries out mapping between assorted color spaces including RGB, HSV, HLS,\n CIEXYZ, CIELUV, HCL (polar CIELUV), CIELAB, and polar CIELAB.\n\t Qualitative, sequential, and diverging color palettes based on HCL colors\n\t are provided along with corresponding ggplot2 color scales.\n\t Color palette choice is aided by an interactive app (with either a Tcl/Tk\n\t or a shiny graphical user interface) and shiny apps with an HCL color picker and a\n\t color vision deficiency emulator. Plotting functions for displaying\n\t and assessing palettes include color swatches, visualizations of the\n\t HCL space, and trajectories in HCL and/or RGB spectrum. Color manipulation\n\t functions include: desaturation, lightening/darkening, mixing, and\n\t simulation of color vision deficiencies (deutanomaly, protanomaly, tritanomaly).\n\t Details can be found on the project web page at <https://colorspace.R-Forge.R-project.org/>\n\t and in the accompanying scientific paper: Zeileis et al. (2020, Journal of Statistical\n\t Software, <doi:10.18637/jss.v096.i01>).",
"Depends": "R (>= 3.0.0), methods",
"Imports": "graphics, grDevices, stats",
"Suggests": "datasets, utils, KernSmooth, MASS, kernlab, mvtnorm, vcd,\ntcltk, shiny, shinyjs, ggplot2, dplyr, scales, grid, png, jpeg,\nknitr, rmarkdown, RColorBrewer, rcartocolor, scico, viridis,\nwesanderson",
"VignetteBuilder": "knitr",
"License": "BSD_3_clause + file LICENSE",
"URL": "https://colorspace.R-Forge.R-project.org/, https://hclwizard.org/",
"BugReports": "https://colorspace.R-Forge.R-project.org/contact.html",
"LazyData": "yes",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Packaged": "2022-02-19 11:47:52 UTC; zeileis",
"Author": "Ross Ihaka [aut],\n Paul Murrell [aut] (<https://orcid.org/0000-0002-3224-8858>),\n Kurt Hornik [aut] (<https://orcid.org/0000-0003-4198-9911>),\n Jason C. Fisher [aut] (<https://orcid.org/0000-0001-9032-8912>),\n Reto Stauffer [aut] (<https://orcid.org/0000-0002-3798-5507>),\n Claus O. Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\n Claire D. McWhite [aut] (<https://orcid.org/0000-0001-7346-3047>),\n Achim Zeileis [aut, cre] (<https://orcid.org/0000-0003-0918-3766>)",
"Maintainer": "Achim Zeileis <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-21 09:50:02 UTC",
"Built": "R 4.1.3; x86_64-w64-mingw32; 2022-03-10 18:21:57 UTC; windows"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "commonmark",
"Type": "Package",
"Title": "High Performance CommonMark and Github Markdown Rendering in R",
"Version": "1.8.0",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", ,\"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"John MacFarlane\", role = \"cph\", comment = \"Author of cmark\"))",
"URL": "https://docs.ropensci.org/commonmark/ (docs)\nhttps://github.com/r-lib/commonmark (devel)\nhttps://github.github.com/gfm/ (spec)",
"BugReports": "https://github.com/r-lib/commonmark/issues",
"Description": "The CommonMark specification defines a rationalized version of markdown\n syntax. This package uses the 'cmark' reference implementation for converting\n markdown text into various formats including html, latex and groff man. In\n addition it exposes the markdown parse tree in xml format. Also includes opt-in\n support for GFM extensions including tables, autolinks, and strikethrough text.",
"License": "BSD_2_clause + file LICENSE",
"Suggests": "curl, testthat, xml2",
"RoxygenNote": "7.1.2",
"Language": "en-US",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Packaged": "2022-03-09 14:29:25 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n John MacFarlane [cph] (Author of cmark)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-03-09 15:40:07 UTC",
"Built": "R 4.1.3; x86_64-w64-mingw32; 2022-03-10 13:02:18 UTC; windows"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "cpp11",
"Title": "A C++11 Interface for R's C Interface",
"Version": "0.4.2",
"Authors@R": "\n c(person(given = \"Jim\",\n family = \"Hester\",\n role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(given = \"Romain\",\n family = \"François\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Benjamin\",\n family = \"Kietzman\",\n role = \"ctb\"),\n person(given = \"RStudio\",\n role = c(\"cph\", \"fnd\")))",
"Description": "Provides a header only, C++11 interface to R's C\n interface. Compared to other approaches 'cpp11' strives to be safe\n against long jumps from the C API as well as C++ exceptions, conform\n to normal R function semantics and supports interaction with 'ALTREP'\n vectors.",
"License": "MIT + file LICENSE",
"URL": "https://cpp11.r-lib.org, https://github.com/r-lib/cpp11",
"BugReports": "https://github.com/r-lib/cpp11/issues",
"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/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble,\nvctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"SystemRequirements": "C++11",
"NeedsCompilation": "no",
"Packaged": "2021-11-29 17:26:06 UTC; jhester",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Romain François [aut, cre],\n Benjamin Kietzman [ctb],\n RStudio [cph, fnd]",
"Maintainer": "Romain François <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-11-30 09:10:04 UTC",
"Built": "R 4.1.3; ; 2022-03-10 18:22:22 UTC; windows"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.0",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\",\n role = c(\"aut\", \"cre\")),\n person(\n \"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"ctb\"))\n )",
"Description": "Colored terminal output on terminals that support 'ANSI'\n color and highlight codes. It also works in 'Emacs' 'ESS'. 'ANSI'\n color support is automatically detected. Colors and highlighting can\n be combined and nested. New styles can also be created easily.\n This 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' 'has_ansi.r' 'has_color.r'\n'link.R' 'styles.r' 'machinery.r' 'parts.r' 'print.r'\n'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-02-10 17:53:01 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Brodie Gaslam [ctb]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-14 10:30:02 UTC",
"Built": "R 4.1.3; ; 2022-03-10 18:21:56 UTC; windows"
}
},
"crosstalk": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "crosstalk",
"Type": "Package",
"Title": "Inter-Widget Interactivity for HTML Widgets",
"Version": "1.2.0",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"),\n email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(family = \"RStudio\", role = \"cph\"),\n person(family = \"jQuery Foundation\", role = \"cph\",\n comment = \"jQuery library and jQuery UI library\"),\n person(family = \"jQuery contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt\"),\n person(\"Mark\", \"Otto\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(\"Jacob\", \"Thornton\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Bootstrap contributors\", role = \"ctb\",\n comment = \"Bootstrap library\"),\n person(family = \"Twitter, Inc\", role = \"cph\",\n comment = \"Bootstrap library\"),\n person(\"Brian\", \"Reavis\", role = c(\"ctb\", \"cph\"),\n comment = \"selectize.js library\"),\n person(\"Kristopher Michael\", \"Kowal\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(family = \"es5-shim contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"es5-shim library\"),\n person(\"Denis\", \"Ineshin\", role = c(\"ctb\", \"cph\"),\n comment = \"ion.rangeSlider library\"),\n person(\"Sami\", \"Samhuri\", role = c(\"ctb\", \"cph\"),\n comment = \"Javascript strftime library\")\n )",
"Description": "Provides building blocks for allowing HTML widgets to communicate\n with each other, with Shiny or without (i.e. static .html files). Currently\n supports linked brushing and filtering.",
"License": "MIT + file LICENSE",
"Imports": "htmltools (>= 0.3.6), jsonlite, lazyeval, R6",
"Suggests": "shiny, ggplot2, testthat (>= 2.1.0), sass, bslib",
"URL": "https://rstudio.github.io/crosstalk/",
"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],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n RStudio [cph],\n jQuery Foundation [cph] (jQuery library and jQuery UI library),\n jQuery contributors [ctb, cph] (jQuery library; authors listed in\n inst/www/shared/jquery-AUTHORS.txt),\n Mark Otto [ctb] (Bootstrap library),\n Jacob Thornton [ctb] (Bootstrap library),\n Bootstrap contributors [ctb] (Bootstrap library),\n Twitter, Inc [cph] (Bootstrap library),\n Brian Reavis [ctb, cph] (selectize.js library),\n Kristopher Michael Kowal [ctb, cph] (es5-shim library),\n es5-shim contributors [ctb, cph] (es5-shim library),\n Denis Ineshin [ctb, cph] (ion.rangeSlider library),\n Sami Samhuri [ctb, cph] (Javascript strftime library)",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-11-04 16:30:02 UTC",
"Built": "R 4.1.3; ; 2022-03-10 20:39:49 UTC; windows"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "curl",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Version": "4.3.2",
"Authors@R": "c(\n person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-4035-0289\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"),\n person(\"RStudio\", role = \"cph\")\n )",
"Description": "The curl() and curl_download() functions provide highly\n configurable drop-in replacements for base url() and download.file() with\n better performance, support for encryption (https, ftps), gzip compression,\n authentication, and other 'libcurl' goodies. The core of the package implements a\n framework for performing fully customized requests where data can be processed\n either in memory, on disk, or streaming via the callback or connection\n interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly\n web client see the 'httr' package which builds on this package with http\n specific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).",
"URL": "https://github.com/jeroen/curl (devel) https://curl.se/libcurl/\n(upstream)",
"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.1.1",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2021-06-22 11:39:40 UTC; jeroen",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>),\n Hadley Wickham [ctb],\n RStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-06-23 07:00:06 UTC",
"Built": "R 4.1.1; x86_64-w64-mingw32; 2021-09-03 13:08:10 UTC; windows"
}
},
"data.table": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"GithubRepo": null,
"GithubUsername": null,
"GithubRef": null,
"GithubSha1": null,
"description": {
"Package": "data.table",
"Version": "1.14.2",
"Title": "Extension of `data.frame`",
"Authors@R": "c(\n person(\"Matt\",\"Dowle\", role=c(\"aut\",\"cre\"), email=\"[email protected]\"),\n person(\"Arun\",\"Srinivasan\", role=\"aut\", email=\"[email protected]\"),\n person(\"Jan\",\"Gorecki\", role=\"ctb\"),\n person(\"Michael\",\"Chirico\", role=\"ctb\"),\n person(\"Pasha\",\"Stetsenko\", role=\"ctb\"),\n person(\"Tom\",\"Short\", role=\"ctb\"),\n person(\"Steve\",\"Lianoglou\", role=\"ctb\"),\n person(\"Eduard\",\"Antonyan\", role=\"ctb\"),\n person(\"Markus\",\"Bonsch\", role=\"ctb\"),\n person(\"Hugh\",\"Parsonage\", role=\"ctb\"),\n person(\"Scott\",\"Ritchie\", role=\"ctb\"),\n person(\"Kun\",\"Ren\", role=\"ctb\"),\n person(\"Xianying\",\"Tan\", role=\"ctb\"),\n person(\"Rick\",\"Saporta\", role=\"ctb\"),\n person(\"Otto\",\"Seiskari\", role=\"ctb\"),\n person(\"Xianghui\",\"Dong\", role=\"ctb\"),\n person(\"Michel\",\"Lang\", role=\"ctb\"),\n person(\"Watal\",\"Iwasaki\", role=\"ctb\"),\n person(\"Seth\",\"Wenchel\", role=\"ctb\"),\n person(\"Karl\",\"Broman\", role=\"ctb\"),\n person(\"Tobias\",\"Schmidt\", role=\"ctb\"),\n person(\"David\",\"Arenburg\", role=\"ctb\"),\n person(\"Ethan\",\"Smith\", role=\"ctb\"),\n person(\"Francois\",\"Cocquemas\", role=\"ctb\"),\n person(\"Matthieu\",\"Gomez\", role=\"ctb\"),\n person(\"Philippe\",\"Chataignon\", role=\"ctb\"),\n person(\"Nello\",\"Blaser\", role=\"ctb\"),\n person(\"Dmitry\",\"Selivanov\", role=\"ctb\"),\n person(\"Andrey\",\"Riabushenko\", role=\"ctb\"),\n person(\"Cheng\",\"Lee\", role=\"ctb\"),\n person(\"Declan\",\"Groves\", role=\"ctb\"),\n person(\"Daniel\",\"Possenriede\", role=\"ctb\"),\n person(\"Felipe\",\"Parages\", role=\"ctb\"),\n person(\"Denes\",\"Toth\", role=\"ctb\"),\n person(\"Mus\",\"Yaramaz-David\", role=\"ctb\"),\n person(\"Ayappan\",\"Perumal\", role=\"ctb\"),\n person(\"James\",\"Sams\", role=\"ctb\"),\n person(\"Martin\",\"Morgan\", role=\"ctb\"),\n person(\"Michael\",\"Quinn\", role=\"ctb\"),\n person(\"@javrucebo\",\"\", role=\"ctb\"),\n person(\"@marc-outins\",\"\", role=\"ctb\"),\n person(\"Roy\",\"Storey\", role=\"ctb\"),\n person(\"Manish\",\"Saraswat\", role=\"ctb\"),\n person(\"Morgan\",\"Jacob\", role=\"ctb\"),\n person(\"Michael\",\"Schubmehl\", role=\"ctb\"),\n person(\"Davis\",\"Vaughan\", role=\"ctb\"),\n person(\"Toby\",\"Hocking\", role=\"ctb\"),\n person(\"Leonardo\",\"Silvestri\", role=\"ctb\"),\n person(\"Tyson\",\"Barrett\", role=\"ctb\"),\n person(\"Jim\",\"Hester\", role=\"ctb\"),\n person(\"Anthony\",\"Damico\", role=\"ctb\"),\n person(\"Sebastian\",\"Freundt\", role=\"ctb\"),\n person(\"David\",\"Simons\", role=\"ctb\"),\n person(\"Elliott\",\"Sales de Andrade\", role=\"ctb\"),\n person(\"Cole\",\"Miller\", role=\"ctb\"),\n person(\"Jens Peder\",\"Meldgaard\", role=\"ctb\"),\n person(\"Vaclav\",\"Tlapak\", role=\"ctb\"),\n person(\"Kevin\",\"Ushey\", role=\"ctb\"),\n person(\"Dirk\",\"Eddelbuettel\", role=\"ctb\"),\n person(\"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": "2021-09-23 03:10:37 UTC; mdowle",
"Author": "Matt Dowle [aut, cre],\n Arun Srinivasan [aut],\n Jan Gorecki [ctb],\n Michael Chirico [ctb],\n Pasha Stetsenko [ctb],\n Tom Short [ctb],\n Steve Lianoglou [ctb],\n Eduard Antonyan [ctb],\n Markus Bonsch [ctb],\n Hugh Parsonage [ctb],\n Scott Ritchie [ctb],\n Kun Ren [ctb],\n Xianying Tan [ctb],\n Rick Saporta [ctb],\n Otto Seiskari [ctb],\n Xianghui Dong [ctb],\n Michel Lang [ctb],\n Watal Iwasaki [ctb],\n Seth Wenchel [ctb],\n Karl Broman [ctb],\n Tobias Schmidt [ctb],\n David Arenburg [ctb],\n Ethan Smith [ctb],\n Francois Cocquemas [ctb],\n Matthieu Gomez [ctb],\n Philippe Chataignon [ctb],\n Nello Blaser [ctb],\n Dmitry Selivanov [ctb],\n Andrey Riabushenko [ctb],\n Cheng Lee [ctb],\n Declan Groves [ctb],\n Daniel Possenriede [ctb],\n Felipe Parages [ctb],\n Denes Toth [ctb],\n Mus Yaramaz-David [ctb],\n Ayappan Perumal [ctb],\n James Sams [ctb],\n Martin Morgan [ctb],\n Michael Quinn [ctb],\n @javrucebo [ctb],\n @marc-outins [ctb],\n Roy Storey [ctb],\n Manish Saraswat [ctb],\n Morgan Jacob [ctb],\n Michael Schubmehl [ctb],\n Davis Vaughan [ctb],\n Toby Hocking [ctb],\n Leonardo Silvestri [ctb],\n Tyson Barrett [ctb],\n Jim Hester [ctb],\n Anthony Damico [ctb],\n Sebastian Freundt [ctb],\n David Simons [ctb],\n Elliott Sales de Andrade [ctb],\n Cole Miller [ctb],\n Jens Peder Meldgaard [ctb],\n Vaclav Tlapak [ctb],\n Kevin Ushey [ctb],\n Dirk Eddelbuettel [ctb],\n Ben Schwen [ctb]",
"Maintainer": "Matt Dowle <[email protected]>",
"Repository": "CRAN",