-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
2745 lines (2745 loc) · 213 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"version": 1,
"locale": "en_US",
"platform": "4.2.0",
"metadata": {
"appmode": "shiny",
"primary_rmd": null,
"primary_html": null,
"content_category": null,
"has_parameters": false
},
"packages": {
"MASS": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "MASS",
"Priority": "recommended",
"Version": "7.3-57",
"Date": "2022-04-05",
"Revision": "$Rev: 3564 $",
"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": "2022-04-19 04:13:16 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": "2022-04-22 11:45:27 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:11:56 UTC; unix",
"Archs": "MASS.so.dSYM"
}
},
"Matrix": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "Matrix",
"Version": "1.4-1",
"Date": "2022-03-21",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Contact": "[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(\"Mikael\", \"Jagan\", role=\"aut\",\n comment = \"new 'packedMatrix' class plus subset/diag/.. methods in C\")\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": "https://Matrix.R-forge.R-project.org/,\nhttps://Matrix.R-forge.R-project.org/doxygen/",
"BugReports": "https://R-forge.R-project.org/tracker/?atid=294?group_id=61",
"Author": "Douglas Bates [aut],\n Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>),\n Mikael Jagan [aut] (new 'packedMatrix' class plus subset/diag/..\n methods in C),\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",
"Repository/R-Forge/Project": "matrix",
"Repository/R-Forge/Revision": "3446",
"Repository/R-Forge/DateTimeStamp": "2022-03-21 17:52:00",
"Date/Publication": "2022-03-23 16:30:08 UTC",
"NeedsCompilation": "yes",
"Packaged": "2022-03-21 18:13:03 UTC; rforge",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-23 00:04:20 UTC; unix"
}
},
"PROJ": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "PROJ",
"Title": "Generic Coordinate System Transformations Using 'PROJ'",
"Version": "0.4.0",
"Authors@R": "\n c(person(given = \"Michael D.\",\n family = \"Sumner\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2471-7511\")), \n person(\"Jeroen\", \"Ooms\", role = c(\"ctb\"), \n comment = \"provided PROJ library support on Windows, and assistance with Windows configuration\"), \n person(\"Simon\", \"Urbanek\", role = c(\"cph\", \"ctb\"), \n comment = \"wrote original code versions for PROJ version 6\"), \n person(\"Dewey\", \"Dunnington\", role = c(\"ctb\"), \n comment = \"key code contributions, and provided libproj to improve things a lot\"))",
"Description": "Currently non-operational, a harmless wrapper to allow package 'reproj' to install and \n function while relying on the 'proj4' package. ",
"Depends": "R (>= 3.0.2)",
"License": "GPL-3",
"Encoding": "UTF-8",
"LazyData": "true",
"Suggests": "testthat (>= 2.1.0), spelling, knitr, rmarkdown",
"URL": "https://github.com/hypertidy/PROJ",
"BugReports": "https://github.com/hypertidy/PROJ/issues",
"RoxygenNote": "7.1.1",
"Language": "en-US",
"VignetteBuilder": "knitr",
"NeedsCompilation": "yes",
"Packaged": "2020-10-19 11:48:28 UTC; mdsumner",
"Author": "Michael D. Sumner [aut, cre] (<https://orcid.org/0000-0002-2471-7511>),\n Jeroen Ooms [ctb] (provided PROJ library support on Windows, and\n assistance with Windows configuration),\n Simon Urbanek [cph, ctb] (wrote original code versions for PROJ version\n 6),\n Dewey Dunnington [ctb] (key code contributions, and provided libproj to\n improve things a lot)",
"Maintainer": "Michael D. Sumner <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-10-19 17:20:10 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 04:52:59 UTC; unix",
"Archs": "PROJ.so.dSYM"
}
},
"R6": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "R6",
"Title": "Encapsulated Classes with Reference Semantics",
"Version": "2.5.1",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in\n reference classes. Compared to reference classes, R6 classes are simpler\n and lighter-weight, and they are not built on S4 classes so they do not\n require the methods package. These classes allow public and private\n members, and they support inheritance, even when the classes are defined in\n different packages.",
"Depends": "R (>= 3.0)",
"Suggests": "testthat, pryr",
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-08-06 20:18:46 UTC; winston",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-19 14:00:05 UTC",
"Built": "R 4.2.0; ; 2022-04-25 03:04:56 UTC; unix"
}
},
"RColorBrewer": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "RColorBrewer",
"Version": "1.1-3",
"Date": "2022-04-03",
"Title": "ColorBrewer Palettes",
"Authors@R": "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n \"cre\"), email = \"[email protected]\"))",
"Author": "Erich Neuwirth [aut, cre]",
"Maintainer": "Erich Neuwirth <[email protected]>",
"Depends": "R (>= 2.0.0)",
"Description": "Provides color schemes for maps (and other graphics)\n designed by Cynthia Brewer as described at http://colorbrewer2.org.",
"License": "Apache License 2.0",
"Packaged": "2022-04-03 10:26:20 UTC; neuwirth",
"NeedsCompilation": "no",
"Repository": "CRAN",
"Date/Publication": "2022-04-03 19:20:13 UTC",
"Built": "R 4.2.0; ; 2022-04-25 03:14:57 UTC; unix"
}
},
"Rcpp": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "Rcpp",
"Title": "Seamless R and C++ Integration",
"Version": "1.0.8.3",
"Date": "2022-03-13",
"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-03-13 17:40:34 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2022-03-17 08:30:10 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:06:04 UTC; unix",
"Archs": "Rcpp.so.dSYM"
}
},
"RgoogleMaps": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "RgoogleMaps",
"Type": "Package",
"Title": "Overlays on Static Maps",
"Version": "1.4.5.3",
"Date": "2020-02-12",
"Depends": "R (>= 2.10)",
"Imports": "graphics, stats, utils, grDevices, methods, png,sp",
"Suggests": "PBSmapping, maptools, loa, RColorBrewer, leaflet,jpeg, RCurl",
"Author": "Markus Loecher ",
"URL": "https://github.com/markusloecher/rgooglemaps/blob/master/rgooglemaps/www/QuickTutorial.html",
"Maintainer": "Markus Loecher <[email protected]>",
"Description": "Serves two purposes: (i) Provide a\n comfortable R interface to query the Google server for static\n maps, and (ii) Use the map as a background image to overlay\n plots within R. This requires proper coordinate scaling.",
"License": "GPL",
"LazyLoad": "yes",
"Repository": "CRAN",
"NeedsCompilation": "no",
"Packaged": "2020-02-12 13:11:09 UTC; loecherm",
"Date/Publication": "2020-02-12 14:30:09 UTC",
"Built": "R 4.2.0; ; 2022-04-25 04:07:21 UTC; unix"
}
},
"askpass": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; x86_64-apple-darwin17.0; 2022-04-26 08:54:29 UTC; unix",
"Archs": "askpass.so.dSYM"
}
},
"base64enc": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "base64enc",
"Version": "0.1-3",
"Title": "Tools for base64 encoding",
"Author": "Simon Urbanek <[email protected]>",
"Maintainer": "Simon Urbanek <[email protected]>",
"Depends": "R (>= 2.9.0)",
"Enhances": "png",
"Description": "This package provides tools for handling base64 encoding. It is more flexible than the orphaned base64 package.",
"License": "GPL-2 | GPL-3",
"URL": "http://www.rforge.net/base64enc",
"NeedsCompilation": "yes",
"Packaged": "2015-02-04 20:31:00 UTC; svnuser",
"Repository": "CRAN",
"Date/Publication": "2015-07-28 08:03:37",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:02:32 UTC; unix",
"Archs": "base64enc.so.dSYM"
}
},
"bitops": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "bitops",
"Version": "1.0-7",
"Date": "2021-04-13",
"Author": "S original by Steve Dutky <[email protected]> initial R\n port and extensions by Martin Maechler; revised and modified\n by Steve Dutky",
"Maintainer": "Martin Maechler <[email protected]>",
"Title": "Bitwise Operations",
"Description": "Functions for bitwise operations on integer vectors.",
"License": "GPL (>= 2)",
"URL": "https://github.com/mmaechler/R-bitops",
"BugReports": "https://github.com/mmaechler/R-bitops/issues",
"NeedsCompilation": "yes",
"Packaged": "2021-04-13 20:50:22 UTC; maechler",
"Repository": "CRAN",
"Date/Publication": "2021-04-24 11:40:08 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 04:08:03 UTC; unix",
"Archs": "bitops.so.dSYM"
}
},
"bslib": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; ; 2022-04-27 13:58:04 UTC; unix"
}
},
"cachem": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:07:47 UTC; unix",
"Archs": "cachem.so.dSYM"
}
},
"cli": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "cli",
"Title": "Helpers for Developing Command Line Interfaces",
"Version": "3.6.0",
"Authors@R": "c(\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Hadley\", \"Wickham\", role = \"ctb\"),\n person(\"Kirill\", \"Müller\", role = \"ctb\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A suite of tools to build attractive command line interfaces\n ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs,\n etc. Supports custom themes via a 'CSS'-like language. It also\n contains a number of lower level 'CLI' elements: rules, boxes, trees,\n and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI\n colors and text styles as well.",
"License": "MIT + file LICENSE",
"URL": "https://cli.r-lib.org, https://github.com/r-lib/cli#readme",
"BugReports": "https://github.com/r-lib/cli/issues",
"Depends": "R (>= 3.4)",
"Imports": "utils",
"Suggests": "callr, covr, crayon, digest, glue (>= 1.6.0), grDevices,\nhtmltools, htmlwidgets, knitr, methods, mockery, processx, ps\n(>= 1.3.4.9000), rlang (>= 1.0.2.9003), rmarkdown, rprojroot,\nrstudioapi, testthat, tibble, whoami, withr",
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc,\nfansi, prettyunits, sessioninfo, tidyverse/tidytemplate,\nusethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"NeedsCompilation": "yes",
"Packaged": "2023-01-09 13:06:17 UTC; gaborcsardi",
"Author": "Gábor Csárdi [aut, cre],\n Hadley Wickham [ctb],\n Kirill Müller [ctb],\n RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-01-09 14:40:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2023-01-10 12:58:35 UTC; unix",
"Archs": "cli.so.dSYM"
}
},
"colorspace": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:15:36 UTC; unix",
"Archs": "colorspace.so.dSYM"
}
},
"commonmark": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:07:04 UTC; unix",
"Archs": "commonmark.so.dSYM"
}
},
"cpp11": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; ; 2022-04-25 03:18:45 UTC; unix"
}
},
"crayon": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "crayon",
"Title": "Colored Terminal Output",
"Version": "1.5.1",
"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-03-26 16:18:07 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-03-26 17:30:05 UTC",
"Built": "R 4.2.0; ; 2022-04-25 03:06:37 UTC; unix"
}
},
"crosstalk": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; ; 2022-04-26 22:34:05 UTC; unix"
}
},
"crsmeta": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "crsmeta",
"Title": "Extract Coordinate System Metadata",
"Version": "0.3.0",
"Authors@R": "\n person(given = \"Michael\",\n family = \"Sumner\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2471-7511\"))",
"Description": "Obtain coordinate system metadata from various data formats. There \n are functions to extract a 'CRS' (coordinate reference system, \n <https://en.wikipedia.org/wiki/Spatial_reference_system>) in 'EPSG' (European \n Petroleum Survey Group, <http://www.epsg.org/>), 'PROJ4' <https://proj.org/>, \n or 'WKT2' (Well-Known Text 2, \n <http://docs.opengeospatial.org/is/12-063r5/12-063r5.html>) forms. This is \n purely for getting simple metadata from in-memory formats, please use other \n tools for out of memory data sources. ",
"License": "GPL-3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.0",
"Depends": "R (>= 3.5.0)",
"Suggests": "testthat (>= 2.1.0), spelling",
"Imports": "methods",
"URL": "https://github.com/hypertidy/crsmeta",
"BugReports": "https://github.com/hypertidy/crsmeta/issues",
"Language": "en-US",
"NeedsCompilation": "no",
"Packaged": "2020-03-29 09:58:44 UTC; mdsumner",
"Author": "Michael Sumner [aut, cre] (<https://orcid.org/0000-0002-2471-7511>)",
"Maintainer": "Michael Sumner <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2020-03-29 10:10:02 UTC",
"Built": "R 4.2.0; ; 2022-04-25 04:53:26 UTC; unix"
}
},
"curl": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"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.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:18:35 UTC; unix",
"Archs": "curl.so.dSYM"
}
},
"digest": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "digest",
"Author": "Dirk Eddelbuettel <[email protected]> with contributions \n by Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\n Mario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\n Duncan Murdoch, Jim Hester, Wush Wu, Qiang Kou, Thierry Onkelinx, \n Michel Lang, Viliam Simko, Kurt Hornik, Radford Neal, Kendon Bell,\n Matthew de Queljoe, Ion Suruceanu, Bill Denney, Dirk Schumacher,\n and Winston Chang.",
"Version": "0.6.29",
"Date": "2021-11-30",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Title": "Create Compact Hash Digests of R Objects",
"Description": "Implementation of a function 'digest()' for the creation of hash\n digests of arbitrary R objects (using the 'md5', 'sha-1', 'sha-256', 'crc32',\n 'xxhash', 'murmurhash', 'spookyhash' and 'blake3' algorithms) permitting easy\n comparison of R language objects, as well as functions such as'hmac()' to\n create hash-based message authentication code. Please note that this package\n is not meant to be deployed for cryptographic purposes for which more\n comprehensive (and widely tested) libraries such as 'OpenSSL' should be\n used.",
"URL": "https://github.com/eddelbuettel/digest,\nhttp://dirk.eddelbuettel.com/code/digest.html",
"BugReports": "https://github.com/eddelbuettel/digest/issues",
"Depends": "R (>= 3.3.0)",
"Imports": "utils",
"License": "GPL (>= 2)",
"Suggests": "tinytest, simplermarkdown",
"VignetteBuilder": "simplermarkdown",
"NeedsCompilation": "yes",
"Packaged": "2021-11-30 23:41:39 UTC; edd",
"Repository": "CRAN",
"Date/Publication": "2021-12-01 07:40:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:02:02 UTC; unix",
"Archs": "digest.so.dSYM"
}
},
"dplyr": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "dplyr",
"Title": "A Grammar of Data Manipulation",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Romain\", \"François\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2444-4226\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Kirill\", \"Müller\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1416-3412\")),\n person(\"Davis\", \"Vaughan\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4777-038X\")),\n person(\"Posit, PBC\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A fast, consistent tool for working with data frame like\n objects, both in memory and out of memory.",
"License": "MIT + file LICENSE",
"URL": "https://dplyr.tidyverse.org, https://github.com/tidyverse/dplyr",
"BugReports": "https://github.com/tidyverse/dplyr/issues",
"Depends": "R (>= 3.4.0)",
"Imports": "cli (>= 3.4.0), generics, glue (>= 1.3.2), lifecycle (>=\n1.0.3), magrittr (>= 1.5), methods, pillar (>= 1.5.1), R6,\nrlang (>= 1.0.6), tibble (>= 2.1.3), tidyselect (>= 1.2.0),\nutils, vctrs (>= 0.5.2)",
"Suggests": "bench, broom, callr, covr, DBI, dbplyr (>= 2.2.1), ggplot2,\nknitr, Lahman, lobstr, microbenchmark, nycflights13, purrr,\nrmarkdown, RMySQL, RPostgreSQL, RSQLite, stringi (>= 1.7.6),\ntestthat (>= 3.1.5), tidyr (>= 1.3.0), withr",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse, shiny, pkgdown, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Packaged": "2023-01-27 21:00:09 UTC; hadleywickham",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>),\n Lionel Henry [aut],\n Kirill Müller [aut] (<https://orcid.org/0000-0002-1416-3412>),\n Davis Vaughan [aut] (<https://orcid.org/0000-0003-4777-038X>),\n Posit, PBC [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-01-29 22:50:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2023-01-31 14:14:20 UTC; unix",
"Archs": "dplyr.so.dSYM"
}
},
"ellipsis": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "ellipsis",
"Version": "0.3.2",
"Title": "Tools for Working with ...",
"Description": "The ellipsis is a powerful tool for extending functions. Unfortunately \n this power comes at a cost: misspelled arguments will be silently ignored. \n The ellipsis package provides a collection of functions to catch problems\n and alert the user.",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.1",
"URL": "https://ellipsis.r-lib.org, https://github.com/r-lib/ellipsis",
"BugReports": "https://github.com/r-lib/ellipsis/issues",
"Depends": "R (>= 3.2)",
"Imports": "rlang (>= 0.3.0)",
"Suggests": "covr, testthat",
"NeedsCompilation": "yes",
"Packaged": "2021-04-29 12:06:44 UTC; lionel",
"Author": "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-04-29 12:40:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:08:12 UTC; unix",
"Archs": "ellipsis.so.dSYM"
}
},
"fansi": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "fansi",
"Title": "ANSI Control Sequence Aware String Functions",
"Description": "Counterparts to R string manipulation functions that account for\n the effects of ANSI text formatting control sequences.",
"Version": "1.0.3",
"Authors@R": "c(\n person(\"Brodie\", \"Gaslam\", email=\"[email protected]\",\n role=c(\"aut\", \"cre\")),\n person(\"Elliott\", \"Sales De Andrade\", role=\"ctb\"),\n person(family=\"R Core Team\",\n email=\"[email protected]\", role=\"cph\",\n comment=\"UTF8 byte length calcs from src/util.c\"\n ))",
"Depends": "R (>= 3.1.0)",
"License": "GPL-2 | GPL-3",
"URL": "https://github.com/brodieG/fansi",
"BugReports": "https://github.com/brodieG/fansi/issues",
"VignetteBuilder": "knitr",
"Suggests": "unitizer, knitr, rmarkdown",
"Imports": "grDevices, utils",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Collate": "'constants.R' 'fansi-package.R' 'internal.R' 'load.R' 'misc.R'\n'nchar.R' 'strwrap.R' 'strtrim.R' 'strsplit.R' 'substr2.R'\n'trimws.R' 'tohtml.R' 'unhandled.R' 'normalize.R' 'sgr.R'",
"NeedsCompilation": "yes",
"Packaged": "2022-03-24 00:52:26 UTC; bg",
"Author": "Brodie Gaslam [aut, cre],\n Elliott Sales De Andrade [ctb],\n R Core Team [cph] (UTF8 byte length calcs from src/util.c)",
"Maintainer": "Brodie Gaslam <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-03-24 07:50:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:16:12 UTC; unix",
"Archs": "fansi.so.dSYM"
}
},
"farver": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "farver",
"Type": "Package",
"Title": "High Performance Colour Space Manipulation",
"Version": "2.1.0",
"Authors@R": "\n c(person(given = \"Thomas Lin\",\n family = \"Pedersen\",\n role = c(\"cre\", \"aut\"),\n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(given = \"Berendea\",\n family = \"Nicolae\",\n role = \"aut\",\n comment = \"Author of the ColorSpace C++ library\"),\n person(given = \"Romain\", \n family = \"François\", \n role = \"aut\", \n email = \"[email protected]\",\n comment = c(ORCID = \"0000-0002-2444-4226\")) \n )",
"Maintainer": "Thomas Lin Pedersen <[email protected]>",
"Description": "The encoding of colour can be handled in many different ways, using\n different colour spaces. As different colour spaces have different uses,\n efficient conversion between these representations are important. The \n 'farver' package provides a set of functions that gives access to very fast\n colour space conversion and comparisons implemented in C++, and offers \n speed improvements over the 'convertColor' function in the 'grDevices' \n package.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"SystemRequirements": "C++11",
"RoxygenNote": "7.1.1",
"URL": "https://farver.data-imaginist.com,\nhttps://github.com/thomasp85/farver",
"BugReports": "https://github.com/thomasp85/farver/issues",
"Suggests": "testthat (>= 2.1.0), covr",
"NeedsCompilation": "yes",
"Packaged": "2021-02-28 19:00:15 UTC; thomas",
"Author": "Thomas Lin Pedersen [cre, aut]\n (<https://orcid.org/0000-0002-5147-4711>),\n Berendea Nicolae [aut] (Author of the ColorSpace C++ library),\n Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>)",
"Repository": "CRAN",
"Date/Publication": "2021-02-28 19:30:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:14:14 UTC; unix",
"Archs": "farver.so.dSYM"
}
},
"fastmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "fastmap",
"Title": "Fast Data Structures",
"Version": "1.1.0",
"Authors@R": "c(\n person(\"Winston\", \"Chang\", email = \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(given = \"RStudio\", role = c(\"cph\", \"fnd\")),\n person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\")\n )",
"Description": "Fast implementation of data structures, including a key-value\n store, stack, and queue. Environments are commonly used as key-value stores\n in R, but every time a new key is used, it is added to R's global symbol\n table, causing a small amount of memory leakage. This can be problematic in\n cases where many different keys are used. Fastmap avoids this memory leak\n issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.1.1",
"Suggests": "testthat (>= 2.1.1)",
"URL": "https://r-lib.github.io/fastmap/, https://github.com/r-lib/fastmap",
"BugReports": "https://github.com/r-lib/fastmap/issues",
"NeedsCompilation": "yes",
"Packaged": "2021-01-25 20:28:54 UTC; winston",
"Author": "Winston Chang [aut, cre],\n RStudio [cph, fnd],\n Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-01-25 21:00:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:03:00 UTC; unix",
"Archs": "fastmap.so.dSYM"
}
},
"fontawesome": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Type": "Package",
"Package": "fontawesome",
"Version": "0.2.2",
"Title": "Easily Work with 'Font Awesome' Icons",
"Description": "Easily and flexibly insert 'Font Awesome' icons into 'R Markdown'\n documents and 'Shiny' apps. These icons can be inserted into HTML content\n through inline 'SVG' tags or 'i' tags. There is also a utility function for\n exporting 'Font Awesome' icons as 'PNG' images for those situations where\n raster graphics are needed.",
"Authors@R": "c(\n person(\"Richard\", \"Iannone\", , \"[email protected]\", c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0003-3925-190X\")),\n person(\"Christophe\", \"Dervieux\", , \"[email protected]\", role = \"ctb\",\n comment = c(ORCID = \"0000-0003-4474-2498\")),\n person(\"Winston\", \"Chang\", , \"[email protected]\", role = \"ctb\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"License": "MIT + file LICENSE",
"URL": "https://github.com/rstudio/fontawesome",
"BugReports": "https://github.com/rstudio/fontawesome/issues",
"Encoding": "UTF-8",
"ByteCompile": "true",
"RoxygenNote": "7.1.1",
"Depends": "R (>= 3.3.0)",
"Imports": "rlang (>= 0.4.10), htmltools (>= 0.5.1.1)",
"Suggests": "covr, knitr, testthat, rsvg",
"NeedsCompilation": "no",
"Packaged": "2021-07-02 18:33:03 UTC; rich",
"Author": "Richard Iannone [aut, cre] (<https://orcid.org/0000-0003-3925-190X>),\n Christophe Dervieux [ctb] (<https://orcid.org/0000-0003-4474-2498>),\n Winston Chang [ctb],\n Dave Gandy [ctb, cph] (Font-Awesome font),\n RStudio [cph, fnd]",
"Maintainer": "Richard Iannone <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-07-02 18:50:02 UTC",
"Built": "R 4.2.0; ; 2022-04-26 22:35:03 UTC; unix"
}
},
"fs": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "fs",
"Title": "Cross-Platform File System Operations Based on 'libuv'",
"Version": "1.5.2",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", \"aut\"),\n person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library\"),\n person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library\"),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A cross-platform interface to file system operations, built on\n top of the 'libuv' C library.",
"Depends": "R (>= 3.1)",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"ByteCompile": "true",
"Imports": "methods",
"SystemRequirements": "GNU make",
"RoxygenNote": "7.1.2",
"URL": "https://fs.r-lib.org, https://github.com/r-lib/fs",
"BugReports": "https://github.com/r-lib/fs/issues",
"Copyright": "file COPYRIGHTS",
"Suggests": "testthat, covr, pillar (>= 1.0.0), tibble (>= 1.1.0), crayon,\nrmarkdown, knitr, withr, spelling, vctrs (>= 0.3.0)",
"VignetteBuilder": "knitr",
"Language": "en-US",
"NeedsCompilation": "yes",
"Packaged": "2021-12-08 16:14:56 UTC; gaborcsardi",
"Author": "Jim Hester [aut],\n Hadley Wickham [aut],\n Gábor Csárdi [aut, cre],\n libuv project contributors [cph] (libuv library),\n Joyent, Inc. and other Node contributors [cph] (libuv library),\n RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-12-08 23:00:08 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:09:24 UTC; unix",
"Archs": "fs.so.dSYM"
}
},
"generics": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "generics",
"Title": "Common S3 Generics not Provided by Base R Methods Related to\nModel Fitting",
"Version": "0.1.2",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Max\",\n family = \"Kuhn\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"Davis\",\n family = \"Vaughan\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "In order to reduce potential package dependencies\n and conflicts, generics provides a number of commonly used S3\n generics.",
"License": "MIT + file LICENSE",
"URL": "https://generics.r-lib.org, https://github.com/r-lib/generics",
"BugReports": "https://github.com/r-lib/generics/issues",
"Depends": "R (>= 3.2)",
"Imports": "methods",
"Suggests": "covr, pkgload, testthat (>= 3.0.0), tibble, withr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "no",
"Packaged": "2022-01-31 22:58:18 UTC; hadley",
"Author": "Hadley Wickham [aut, cre],\n Max Kuhn [aut],\n Davis Vaughan [aut],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-01-31 23:30:02 UTC",
"Built": "R 4.2.0; ; 2022-04-25 03:17:36 UTC; unix"
}
},
"ggmap": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "ggmap",
"Version": "3.0.1",
"Title": "Spatial Visualization with ggplot2",
"Description": "A collection of functions to visualize spatial data and models\n on top of static maps from various online sources (e.g Google Maps and Stamen\n Maps). It includes tools common to those tasks, including functions for\n geolocation and routing.",
"URL": "https://github.com/dkahle/ggmap",
"BugReports": "https://github.com/dkahle/ggmap/issues",
"Authors@R": "c(person(\"David\", \"Kahle\", email = \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-9999-1558\")),\n person(\"Hadley\", \"Wickham\", email = \"[email protected]\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Scott\", \"Jackson\", email = \"[email protected]\", role = \"aut\"),\n person(\"Mikko\", \"Korpela\", email = \"[email protected]\", role = \"ctb\"))",
"Depends": "R (>= 3.1.0), ggplot2 (>= 2.2.0)",
"Imports": "RgoogleMaps, png, plyr, jpeg, digest, scales, dplyr, bitops,\ngrid, glue, httr, stringr, purrr, magrittr, tibble, tidyr,\nrlang, cli",
"Suggests": "MASS, hexbin, testthat",
"License": "GPL-2",
"LazyData": "true",
"RoxygenNote": "7.2.1",
"Encoding": "UTF-8",
"NeedsCompilation": "no",
"Packaged": "2022-11-03 21:50:38 UTC; david_kahle",
"Author": "David Kahle [aut, cre] (<https://orcid.org/0000-0002-9999-1558>),\n Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>),\n Scott Jackson [aut],\n Mikko Korpela [ctb]",
"Maintainer": "David Kahle <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-11-03 22:20:14 UTC",
"Built": "R 4.2.0; ; 2022-11-04 12:10:19 UTC; unix"
}
},
"ggplot2": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "ggplot2",
"Version": "3.4.1",
"Title": "Create Elegant Data Visualisations Using the Grammar of Graphics",
"Authors@R": "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\",\n comment = c(ORCID = \"0000-0003-4757-117X\")),\n person(\"Winston\", \"Chang\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Lionel\", \"Henry\", role = \"aut\"),\n person(\"Thomas Lin\", \"Pedersen\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-5147-4711\")),\n person(\"Kohske\", \"Takahashi\", role = \"aut\"),\n person(\"Claus\", \"Wilke\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-7470-9261\")),\n person(\"Kara\", \"Woo\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-5125-4188\")),\n person(\"Hiroaki\", \"Yutani\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-3385-7233\")),\n person(\"Dewey\", \"Dunnington\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-9415-4582\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "A system for 'declaratively' creating graphics, based on \"The\n Grammar of Graphics\". You provide the data, tell 'ggplot2' how to map\n variables to aesthetics, what graphical primitives to use, and it\n takes care of the details.",
"License": "MIT + file LICENSE",
"URL": "https://ggplot2.tidyverse.org,\nhttps://github.com/tidyverse/ggplot2",
"BugReports": "https://github.com/tidyverse/ggplot2/issues",
"Depends": "R (>= 3.3)",
"Imports": "cli, glue, grDevices, grid, gtable (>= 0.1.1), isoband,\nlifecycle (> 1.0.1), MASS, mgcv, rlang (>= 1.0.0), scales (>=\n1.2.0), stats, tibble, vctrs (>= 0.5.0), withr (>= 2.5.0)",
"Suggests": "covr, dplyr, ggplot2movies, hexbin, Hmisc, knitr, lattice,\nmapproj, maps, maptools, multcomp, munsell, nlme, profvis,\nquantreg, ragg, RColorBrewer, rgeos, rmarkdown, rpart, sf (>=\n0.7-3), svglite (>= 1.2.0.9001), testthat (>= 3.1.2), vdiffr\n(>= 1.0.0), xml2",
"Enhances": "sp",
"VignetteBuilder": "knitr",
"Config/Needs/website": "ggtext, tidyr, forcats, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"LazyData": "true",
"RoxygenNote": "7.2.1",
"Collate": "'ggproto.r' 'ggplot-global.R' 'aaa-.r'\n'aes-colour-fill-alpha.r' 'aes-evaluation.r'\n'aes-group-order.r' 'aes-linetype-size-shape.r'\n'aes-position.r' 'compat-plyr.R' 'utilities.r' 'aes.r'\n'legend-draw.r' 'geom-.r' 'annotation-custom.r'\n'annotation-logticks.r' 'geom-polygon.r' 'geom-map.r'\n'annotation-map.r' 'geom-raster.r' 'annotation-raster.r'\n'annotation.r' 'autolayer.r' 'autoplot.r' 'axis-secondary.R'\n'backports.R' 'bench.r' 'bin.R' 'coord-.r' 'coord-cartesian-.r'\n'coord-fixed.r' 'coord-flip.r' 'coord-map.r' 'coord-munch.r'\n'coord-polar.r' 'coord-quickmap.R' 'coord-sf.R'\n'coord-transform.r' 'data.R' 'facet-.r' 'facet-grid-.r'\n'facet-null.r' 'facet-wrap.r' 'fortify-lm.r' 'fortify-map.r'\n'fortify-multcomp.r' 'fortify-spatial.r' 'fortify.r' 'stat-.r'\n'geom-abline.r' 'geom-rect.r' 'geom-bar.r' 'geom-bin2d.r'\n'geom-blank.r' 'geom-boxplot.r' 'geom-col.r' 'geom-path.r'\n'geom-contour.r' 'geom-count.r' 'geom-crossbar.r'\n'geom-segment.r' 'geom-curve.r' 'geom-defaults.r'\n'geom-ribbon.r' 'geom-density.r' 'geom-density2d.r'\n'geom-dotplot.r' 'geom-errorbar.r' 'geom-errorbarh.r'\n'geom-freqpoly.r' 'geom-function.R' 'geom-hex.r'\n'geom-histogram.r' 'geom-hline.r' 'geom-jitter.r'\n'geom-label.R' 'geom-linerange.r' 'geom-point.r'\n'geom-pointrange.r' 'geom-quantile.r' 'geom-rug.r' 'geom-sf.R'\n'geom-smooth.r' 'geom-spoke.r' 'geom-text.r' 'geom-tile.r'\n'geom-violin.r' 'geom-vline.r' 'ggplot2-package.R'\n'grob-absolute.r' 'grob-dotstack.r' 'grob-null.r' 'grouping.r'\n'guide-bins.R' 'guide-colorbar.r' 'guide-colorsteps.R'\n'guide-legend.r' 'guides-.r' 'guides-axis.r' 'guides-grid.r'\n'guides-none.r' 'hexbin.R' 'labeller.r' 'labels.r' 'layer.r'\n'layer-sf.R' 'layout.R' 'limits.r' 'margins.R' 'performance.R'\n'plot-build.r' 'plot-construction.r' 'plot-last.r' 'plot.r'\n'position-.r' 'position-collide.r' 'position-dodge.r'\n'position-dodge2.r' 'position-identity.r' 'position-jitter.r'\n'position-jitterdodge.R' 'position-nudge.R' 'position-stack.r'\n'quick-plot.r' 'range.r' 'reshape-add-margins.R' 'save.r'\n'scale-.r' 'scale-alpha.r' 'scale-binned.R' 'scale-brewer.r'\n'scale-colour.r' 'scale-continuous.r' 'scale-date.r'\n'scale-discrete-.r' 'scale-expansion.r' 'scale-gradient.r'\n'scale-grey.r' 'scale-hue.r' 'scale-identity.r'\n'scale-linetype.r' 'scale-linewidth.R' 'scale-manual.r'\n'scale-shape.r' 'scale-size.r' 'scale-steps.R' 'scale-type.R'\n'scale-view.r' 'scale-viridis.r' 'scales-.r' 'stat-align.R'\n'stat-bin.r' 'stat-bin2d.r' 'stat-bindot.r' 'stat-binhex.r'\n'stat-boxplot.r' 'stat-contour.r' 'stat-count.r'\n'stat-density-2d.r' 'stat-density.r' 'stat-ecdf.r'\n'stat-ellipse.R' 'stat-function.r' 'stat-identity.r'\n'stat-qq-line.R' 'stat-qq.r' 'stat-quantile.r'\n'stat-sf-coordinates.R' 'stat-sf.R' 'stat-smooth-methods.r'\n'stat-smooth.r' 'stat-sum.r' 'stat-summary-2d.r'\n'stat-summary-bin.R' 'stat-summary-hex.r' 'stat-summary.r'\n'stat-unique.r' 'stat-ydensity.r' 'summarise-plot.R'\n'summary.r' 'theme-elements.r' 'theme.r' 'theme-defaults.r'\n'theme-current.R' 'utilities-break.r' 'utilities-grid.r'\n'utilities-help.r' 'utilities-matrix.r'\n'utilities-resolution.r' 'utilities-table.r'\n'utilities-tidy-eval.R' 'zxx.r' 'zzz.r'",
"NeedsCompilation": "no",
"Packaged": "2023-02-06 09:42:01 UTC; thomas",
"Author": "Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>),\n Winston Chang [aut] (<https://orcid.org/0000-0002-1576-2126>),\n Lionel Henry [aut],\n Thomas Lin Pedersen [aut, cre]\n (<https://orcid.org/0000-0002-5147-4711>),\n Kohske Takahashi [aut],\n Claus Wilke [aut] (<https://orcid.org/0000-0002-7470-9261>),\n Kara Woo [aut] (<https://orcid.org/0000-0002-5125-4188>),\n Hiroaki Yutani [aut] (<https://orcid.org/0000-0002-3385-7233>),\n Dewey Dunnington [aut] (<https://orcid.org/0000-0002-9415-4582>),\n RStudio [cph, fnd]",
"Maintainer": "Thomas Lin Pedersen <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2023-02-10 13:20:06 UTC",
"Built": "R 4.2.0; ; 2023-02-11 13:46:44 UTC; unix"
}
},
"glue": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "glue",
"Title": "Interpreted String Literals",
"Version": "1.6.2",
"Authors@R": "c(\n person(\"Jim\", \"Hester\", role = \"aut\",\n comment = c(ORCID = \"0000-0002-2739-7082\")),\n person(\"Jennifer\", \"Bryan\", , \"[email protected]\", role = c(\"aut\", \"cre\"),\n comment = c(ORCID = \"0000-0002-6983-2759\")),\n person(\"RStudio\", role = c(\"cph\", \"fnd\"))\n )",
"Description": "An implementation of interpreted string literals, inspired by\n Python's Literal String Interpolation\n <https://www.python.org/dev/peps/pep-0498/> and Docstrings\n <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted\n String Literals\n <https://docs.julialang.org/en/v1.3/manual/strings/#Triple-Quoted-String-Literals-1>.",
"License": "MIT + file LICENSE",
"URL": "https://github.com/tidyverse/glue, https://glue.tidyverse.org/",
"BugReports": "https://github.com/tidyverse/glue/issues",
"Depends": "R (>= 3.4)",
"Imports": "methods",
"Suggests": "covr, crayon, DBI, dplyr, forcats, ggplot2, knitr, magrittr,\nmicrobenchmark, R.utils, rmarkdown, rprintf, RSQLite, stringr,\ntestthat (>= 3.0.0), vctrs (>= 0.3.0), waldo (>= 0.3.0), withr",
"VignetteBuilder": "knitr",
"ByteCompile": "true",
"Config/Needs/website": "hadley/emo, tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Packaged": "2022-02-23 22:50:40 UTC; jenny",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>),\n Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>),\n RStudio [cph, fnd]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2022-02-24 07:50:20 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-25 03:07:15 UTC; unix",
"Archs": "glue.so.dSYM"
}
},
"gridExtra": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "gridExtra",
"Authors@R": "c(person(\"Baptiste\", \"Auguie\",\n email = \"[email protected]\",\n role = c(\"aut\", \"cre\")), person(\"Anton\", \"Antonov\",\n email = \"[email protected]\",\n role = c(\"ctb\")))",
"License": "GPL (>= 2)",
"Title": "Miscellaneous Functions for \"Grid\" Graphics",
"Type": "Package",
"Description": "Provides a number of user-level functions to work with \"grid\"\n graphics, notably to arrange multiple grid-based plots on a page, and draw\n tables.",
"Version": "2.3",
"VignetteBuilder": "knitr",
"Imports": "gtable, grid, grDevices, graphics, utils",
"Suggests": "ggplot2, egg, lattice, knitr, testthat",
"RoxygenNote": "6.0.1",
"NeedsCompilation": "no",
"Packaged": "2017-09-08 22:52:09 UTC; baptiste",
"Author": "Baptiste Auguie [aut, cre],\n Anton Antonov [ctb]",
"Maintainer": "Baptiste Auguie <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2017-09-09 14:12:08 UTC",
"Built": "R 4.2.0; ; 2022-04-25 03:21:44 UTC; unix"
}
},
"gtable": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "gtable",
"Title": "Arrange 'Grobs' in Tables",
"Version": "0.3.0",
"Authors@R": "\n c(person(given = \"Hadley\",\n family = \"Wickham\",\n role = c(\"aut\", \"cre\"),\n email = \"[email protected]\"),\n person(given = \"Thomas Lin\",\n family = \"Pedersen\",\n role = \"aut\",\n email = \"[email protected]\"),\n person(given = \"RStudio\",\n role = \"cph\"))",
"Description": "Tools to make it easier to work with \"tables\" of\n 'grobs'. The 'gtable' package defines a 'gtable' grob class that specifies a\n grid along with a list of grobs and their placement in the grid. Further the\n package makes it easy to manipulate and combine 'gtable' objects so that \n complex compositions can be build up sequentially.",
"License": "GPL-2",
"Depends": "R (>= 3.0)",
"Imports": "grid",
"Suggests": "covr, testthat, knitr, rmarkdown, ggplot2, profvis",
"Encoding": "UTF-8",
"RoxygenNote": "6.1.1",
"Collate": "'new-data-frame.r' 'add-grob.r' 'add-rows-cols.r'\n'add-space.r' 'grid.r' 'gtable-layouts.r' 'gtable-package.R'\n'gtable.r' 'rbind-cbind.r' 'utils.r' 'trim.r' 'filter.r'\n'align.r' 'padding.r' 'z.r'",
"URL": "https://github.com/r-lib/gtable",
"BugReports": "https://github.com/r-lib/gtable/issues",
"VignetteBuilder": "knitr",
"NeedsCompilation": "no",
"Packaged": "2019-03-25 14:56:43 UTC; thomas",
"Author": "Hadley Wickham [aut, cre],\n Thomas Lin Pedersen [aut],\n RStudio [cph]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2019-03-25 19:50:02 UTC",
"Built": "R 4.2.0; ; 2022-04-25 03:12:55 UTC; unix"
}
},
"htmltools": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "htmltools",
"Type": "Package",
"Title": "Tools for HTML",
"Version": "0.5.2",
"Authors@R": "c(\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Barret\", \"Schloerke\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0001-9986-114X\")),\n person(\"Winston\", \"Chang\", role = \"aut\", email = \"[email protected]\", comment = c(ORCID = \"0000-0002-1576-2126\")),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"[email protected]\"),\n person(\"Jeff\", \"Allen\", role = \"aut\", email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\")\n )",
"Description": "Tools for HTML generation and output.",
"Depends": "R (>= 2.14.1)",
"Imports": "utils, digest, grDevices, base64enc, rlang (>= 0.4.10),\nfastmap",
"Suggests": "markdown, testthat, withr, Cairo, ragg, shiny",
"Enhances": "knitr",
"License": "GPL (>= 2)",
"URL": "https://github.com/rstudio/htmltools",
"BugReports": "https://github.com/rstudio/htmltools/issues",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"Collate": "'colors.R' 'html_dependency.R' 'html_escape.R' 'html_print.R'\n'images.R' 'known_tags.R' 'selector.R' 'shim.R' 'tag_query.R'\n'utils.R' 'tags.R' 'template.R'",
"NeedsCompilation": "yes",
"Packaged": "2021-08-17 17:26:06 UTC; cpsievert",
"Author": "Joe Cheng [aut],\n Carson Sievert [aut, cre] (<https://orcid.org/0000-0002-4958-2844>),\n Barret Schloerke [aut] (<https://orcid.org/0000-0001-9986-114X>),\n Winston Chang [aut] (<https://orcid.org/0000-0002-1576-2126>),\n Yihui Xie [aut],\n Jeff Allen [aut],\n RStudio [cph]",
"Maintainer": "Carson Sievert <[email protected]>",
"Repository": "CRAN",
"Date/Publication": "2021-08-25 13:50:02 UTC",
"Built": "R 4.2.0; x86_64-apple-darwin17.0; 2022-04-26 08:49:18 UTC; unix",
"Archs": "htmltools.so.dSYM"
}
},
"htmlwidgets": {
"Source": "CRAN",
"Repository": "https://cran.rstudio.com/",
"description": {
"Package": "htmlwidgets",
"Type": "Package",
"Title": "HTML Widgets for R",
"Version": "1.5.4",
"Authors@R": "c(\n person(\"Ramnath\", \"Vaidyanathan\", role = c(\"aut\", \"cph\")),\n person(\"Yihui\", \"Xie\", role = c(\"aut\")),\n person(\"JJ\", \"Allaire\", role = c(\"aut\")),\n person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"[email protected]\"),\n person(\"Carson\", \"Sievert\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4958-2844\")),\n person(\"Kenton\", \"Russell\", role = c(\"aut\", \"cph\")),\n person(\"Ellis\", \"Hughes\", role = c(\"ctb\")),\n person(family = \"RStudio\", role = \"cph\")\n )",
"Description": "A framework for creating HTML widgets that render in various\n contexts including the R console, 'R Markdown' documents, and 'Shiny'\n web applications.",
"License": "MIT + file LICENSE",
"VignetteBuilder": "knitr",
"Imports": "grDevices, htmltools (>= 0.3), jsonlite (>= 0.9.16), yaml",
"Suggests": "knitr (>= 1.8), rmarkdown, testthat",
"Enhances": "shiny (>= 1.1)",
"URL": "https://github.com/ramnathv/htmlwidgets",
"BugReports": "https://github.com/ramnathv/htmlwidgets/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Packaged": "2021-09-08 13:21:35 UTC; cpsievert",