-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenv.lock
1223 lines (1223 loc) · 64.3 KB
/
renv.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"R": {
"Version": "4.4.2",
"Repositories": [
{
"Name": "CRAN",
"URL": "https://cran.rstudio.com"
}
]
},
"Packages": {
"BH": {
"Package": "BH",
"Version": "1.81.0-1",
"Source": "Repository",
"Type": "Package",
"Title": "Boost C++ Header Files",
"Date": "2023-01-17",
"Author": "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer": "Dirk Eddelbuettel <[email protected]>",
"Description": "Boost provides free peer-reviewed portable C++ source libraries. A large part of Boost is provided as C++ template code which is resolved entirely at compile-time without linking. This package aims to provide the most useful subset of Boost libraries for template use among CRAN packages. By placing these libraries in this package, we offer a more efficient distribution system for CRAN as replication of this code in the sources of other packages is avoided. As of release 1.81.0-0, the following Boost libraries are included: 'accumulators' 'algorithm' 'align' 'any' 'atomic' 'beast' 'bimap' 'bind' 'circular_buffer' 'compute' 'concept' 'config' 'container' 'date_time' 'detail' 'dynamic_bitset' 'exception' 'flyweight' 'foreach' 'functional' 'fusion' 'geometry' 'graph' 'heap' 'icl' 'integer' 'interprocess' 'intrusive' 'io' 'iostreams' 'iterator' 'lambda2' 'math' 'move' 'mp11' 'mpl' 'multiprecision' 'numeric' 'pending' 'phoenix' 'polygon' 'preprocessor' 'process' 'propery_tree' 'random' 'range' 'scope_exit' 'smart_ptr' 'sort' 'spirit' 'tuple' 'type_traits' 'typeof' 'unordered' 'url' 'utility' 'uuid'.",
"License": "BSL-1.0",
"URL": "https://github.com/eddelbuettel/bh, https://dirk.eddelbuettel.com/code/bh.html",
"BugReports": "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation": "no",
"Repository": "CRAN"
},
"Matrix": {
"Package": "Matrix",
"Version": "1.5-4.1",
"Source": "Repository",
"Date": "2023-05-16",
"Priority": "recommended",
"Title": "Sparse and Dense Matrix Classes and Methods",
"Description": "A rich hierarchy of sparse and dense matrix classes, including general, triangular, symmetric, and diagonal matrices with numeric, logical, or pattern entries. Efficient methods for operating on such matrices, often wrapping the 'BLAS', 'LAPACK', and 'SuiteSparse' libraries.",
"License": "GPL (>= 2) | file LICENCE",
"URL": "https://Matrix.R-forge.R-project.org",
"BugReports": "https://R-forge.R-project.org/tracker/?atid=294&group_id=61",
"Contact": "[email protected]",
"Authors@R": "c(person(\"Douglas\", \"Bates\", role = \"aut\", comment = c(ORCID = \"0000-0001-8316-9503\")) , person(\"Martin\", \"Maechler\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-8685-9910\")) , person(\"Mikael\", \"Jagan\", role = \"aut\", comment = c(ORCID = \"0000-0002-3542-2938\")) , person(\"Timothy A.\", \"Davis\", role = \"ctb\", comment = c(ORCID = \"0000-0001-7614-6899\", \"SuiteSparse libraries, notably CHOLMOD and AMD\", \"collaborators listed in dir(pattern=\\\"^[A-Z]+[.]txt$\\\", full.names=TRUE, system.file(\\\"doc\\\", \\\"SuiteSparse\\\", package=\\\"Matrix\\\"))\")) , person(\"Jens\", \"Oehlschlägel\", role = \"ctb\", comment = \"initial nearPD()\") , person(\"Jason\", \"Riedy\", role = \"ctb\", comment = c(ORCID = \"0000-0002-4345-4200\", \"GNU Octave's condest() and onenormest()\", \"Copyright: Regents of the University of California\")) , person(\"R Core Team\", role = \"ctb\", comment = \"base R's matrix implementation\"))",
"Depends": [
"R (>= 3.5.0)",
"methods"
],
"Imports": [
"graphics",
"grid",
"lattice",
"stats",
"utils"
],
"Suggests": [
"MASS",
"expm"
],
"Enhances": [
"MatrixModels",
"SparseM",
"graph",
"igraph",
"maptools",
"sfsmisc",
"sp",
"spdep"
],
"EnhancesNote": "igraph, maptools, sp, spdep for Rd xrefs",
"LazyData": "no",
"LazyDataNote": "not possible, since we use data/*.R and our S4 classes",
"BuildResaveData": "no",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Douglas Bates [aut] (<https://orcid.org/0000-0001-8316-9503>), Martin Maechler [aut, cre] (<https://orcid.org/0000-0002-8685-9910>), Mikael Jagan [aut] (<https://orcid.org/0000-0002-3542-2938>), Timothy A. Davis [ctb] (<https://orcid.org/0000-0001-7614-6899>, SuiteSparse libraries, notably CHOLMOD and AMD, collaborators listed in dir(pattern=\"^[A-Z]+[.]txt$\", full.names=TRUE, system.file(\"doc\", \"SuiteSparse\", package=\"Matrix\"))), Jens Oehlschlägel [ctb] (initial nearPD()), Jason Riedy [ctb] (<https://orcid.org/0000-0002-4345-4200>, GNU Octave's condest() and onenormest(), Copyright: Regents of the University of California), R Core Team [ctb] (base R's matrix implementation)",
"Maintainer": "Martin Maechler <[email protected]>",
"Repository": "CRAN"
},
"R6": {
"Package": "R6",
"Version": "2.5.1",
"Source": "Repository",
"Title": "Encapsulated Classes with Reference Semantics",
"Authors@R": "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"Description": "Creates classes with reference semantics, similar to R's built-in reference classes. Compared to reference classes, R6 classes are simpler and lighter-weight, and they are not built on S4 classes so they do not require the methods package. These classes allow public and private members, and they support inheritance, even when the classes are defined in different packages.",
"Depends": [
"R (>= 3.0)"
],
"Suggests": [
"testthat",
"pryr"
],
"License": "MIT + file LICENSE",
"URL": "https://r6.r-lib.org, https://github.com/r-lib/R6/",
"BugReports": "https://github.com/r-lib/R6/issues",
"RoxygenNote": "7.1.1",
"NeedsCompilation": "no",
"Author": "Winston Chang [aut, cre]",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN"
},
"Rcpp": {
"Package": "Rcpp",
"Version": "1.0.11",
"Source": "Repository",
"Title": "Seamless R and C++ Integration",
"Date": "2023-07-03",
"Author": "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou, 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 offer a seamless integration of R and C++. Many R data types and objects can be mapped back and forth to C++ equivalents which facilitates both writing of new code as well as easier integration of third-party libraries. Documentation about 'Rcpp' is provided by several vignettes included in this package, via the 'Rcpp Gallery' site at <https://gallery.rcpp.org>, the paper by Eddelbuettel and Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013, <doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2018, <doi:10.1080/00031305.2017.1375990>); see 'citation(\"Rcpp\")' for details.",
"Imports": [
"methods",
"utils"
],
"Suggests": [
"tinytest",
"inline",
"rbenchmark",
"pkgKitten (>= 0.1.2)"
],
"URL": "https://www.rcpp.org, https://dirk.eddelbuettel.com/code/rcpp.html, https://github.com/RcppCore/Rcpp",
"License": "GPL (>= 2)",
"BugReports": "https://github.com/RcppCore/Rcpp/issues",
"MailingList": "[email protected]",
"RoxygenNote": "6.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Repository": "CRAN"
},
"RcppParallel": {
"Package": "RcppParallel",
"Version": "5.1.7",
"Source": "Repository",
"Type": "Package",
"Title": "Parallel Programming Tools for 'Rcpp'",
"Authors@R": "c( person(\"JJ\", \"Allaire\", role = c(\"aut\"), email = \"[email protected]\"), person(\"Romain\", \"Francois\", role = c(\"aut\", \"cph\")), person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"), person(\"Gregory\", \"Vandenbrouck\", role = \"aut\"), person(\"Marcus\", \"Geelnard\", role = c(\"aut\", \"cph\"), comment = \"TinyThread library, https://tinythreadpp.bitsnbites.eu/\"), person(\"Hamada S.\", \"Badr\", email = \"[email protected]\", role = c(\"ctb\"), comment = c(ORCID = \"0000-0002-9808-2344\")), person(family = \"Posit, PBC\", role = \"cph\"), person(family = \"Intel\", role = c(\"aut\", \"cph\"), comment = \"Intel TBB library, https://www.threadingbuildingblocks.org/\"), person(family = \"Microsoft\", role = \"cph\") )",
"Description": "High level functions for parallel programming with 'Rcpp'. For example, the 'parallelFor()' function can be used to convert the work of a standard serial \"for\" loop into a parallel one and the 'parallelReduce()' function can be used for accumulating aggregate or other values.",
"Depends": [
"R (>= 3.0.2)"
],
"Suggests": [
"Rcpp",
"RUnit",
"knitr",
"rmarkdown"
],
"SystemRequirements": "GNU make, Intel TBB, Windows: cmd.exe and cscript.exe, Solaris: g++ is required",
"License": "GPL (>= 3)",
"URL": "https://rcppcore.github.io/RcppParallel/, https://github.com/RcppCore/RcppParallel",
"BugReports": "https://github.com/RcppCore/RcppParallel/issues",
"Biarch": "TRUE",
"RoxygenNote": "7.1.1",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "JJ Allaire [aut], Romain Francois [aut, cph], Kevin Ushey [aut, cre], Gregory Vandenbrouck [aut], Marcus Geelnard [aut, cph] (TinyThread library, https://tinythreadpp.bitsnbites.eu/), Hamada S. Badr [ctb] (<https://orcid.org/0000-0002-9808-2344>), Posit, PBC [cph], Intel [aut, cph] (Intel TBB library, https://www.threadingbuildingblocks.org/), Microsoft [cph]",
"Maintainer": "Kevin Ushey <[email protected]>",
"Repository": "CRAN"
},
"V8": {
"Package": "V8",
"Version": "4.4.0",
"Source": "Repository",
"Type": "Package",
"Title": "Embedded JavaScript and WebAssembly Engine for R",
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Jan Marvin\", \"Garbuszus\", role = \"ctb\"))",
"Description": "An R interface to V8 <https://v8.dev>: Google's open source JavaScript and WebAssembly engine. This package can be compiled either with V8 version 6 and up or NodeJS when built as a shared library.",
"License": "MIT + file LICENSE",
"URL": "https://jeroen.r-universe.dev/V8",
"BugReports": "https://github.com/jeroen/v8/issues",
"SystemRequirements": "V8 engine version 6+ is needed for ES6 and WASM support. On Linux you can build against libv8-dev (Debian) or v8-devel (Fedora). We also provide static libv8 binaries for most platforms, see the README for details.",
"NeedsCompilation": "yes",
"VignetteBuilder": "knitr",
"Imports": [
"Rcpp (>= 0.12.12)",
"jsonlite (>= 1.0)",
"curl (>= 1.0)",
"utils"
],
"LinkingTo": [
"Rcpp"
],
"Suggests": [
"testthat",
"knitr",
"rmarkdown"
],
"RoxygenNote": "7.2.3",
"Language": "en-US",
"Encoding": "UTF-8",
"Biarch": "true",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Jan Marvin Garbuszus [ctb]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN"
},
"arrow": {
"Package": "arrow",
"Version": "13.0.0.1",
"Source": "Repository",
"Title": "Integration to 'Apache' 'Arrow'",
"Authors@R": "c( person(\"Neal\", \"Richardson\", email = \"[email protected]\", role = c(\"aut\")), person(\"Ian\", \"Cook\", email = \"[email protected]\", role = c(\"aut\")), person(\"Nic\", \"Crane\", email = \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Dewey\", \"Dunnington\", role = c(\"aut\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-9415-4582\")), person(\"Romain\", \"Fran\\u00e7ois\", role = c(\"aut\"), comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Jonathan\", \"Keane\", email = \"[email protected]\", role = c(\"aut\")), person(\"Drago\\u0219\", \"Moldovan-Gr\\u00fcnfeld\", email = \"[email protected]\", role = c(\"aut\")), person(\"Jeroen\", \"Ooms\", email = \"[email protected]\", role = c(\"aut\")), person(\"Javier\", \"Luraschi\", email = \"[email protected]\", role = c(\"ctb\")), person(\"Karl\", \"Dunkle Werner\", email = \"[email protected]\", role = c(\"ctb\"), comment = c(ORCID = \"0000-0003-0523-7309\")), person(\"Jeffrey\", \"Wong\", email = \"[email protected]\", role = c(\"ctb\")), person(\"Apache Arrow\", email = \"[email protected]\", role = c(\"aut\", \"cph\")) )",
"Description": "'Apache' 'Arrow' <https://arrow.apache.org/> is a cross-language development platform for in-memory data. It specifies a standardized language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware. This package provides an interface to the 'Arrow C++' library.",
"Depends": [
"R (>= 3.4)"
],
"License": "Apache License (>= 2.0)",
"URL": "https://github.com/apache/arrow/, https://arrow.apache.org/docs/r/",
"BugReports": "https://github.com/apache/arrow/issues",
"Encoding": "UTF-8",
"Language": "en-US",
"SystemRequirements": "C++17; for AWS S3 support on Linux, libcurl and openssl (optional)",
"Biarch": "true",
"Imports": [
"assertthat",
"bit64 (>= 0.9-7)",
"glue",
"methods",
"purrr",
"R6",
"rlang (>= 1.0.0)",
"stats",
"tidyselect (>= 1.0.0)",
"utils",
"vctrs"
],
"RoxygenNote": "7.2.3",
"Config/testthat/edition": "3",
"Suggests": [
"blob",
"cli",
"DBI",
"dbplyr",
"decor",
"distro",
"dplyr",
"duckdb (>= 0.2.8)",
"hms",
"jsonlite",
"knitr",
"lubridate",
"pillar",
"pkgload",
"reticulate",
"rmarkdown",
"stringi",
"stringr",
"sys",
"testthat (>= 3.1.0)",
"tibble",
"tzdb",
"withr"
],
"LinkingTo": [
"cpp11 (>= 0.4.2)"
],
"Collate": "'arrowExports.R' 'enums.R' 'arrow-object.R' 'type.R' 'array-data.R' 'arrow-datum.R' 'array.R' 'arrow-info.R' 'arrow-package.R' 'arrow-tabular.R' 'buffer.R' 'chunked-array.R' 'io.R' 'compression.R' 'scalar.R' 'compute.R' 'config.R' 'csv.R' 'dataset.R' 'dataset-factory.R' 'dataset-format.R' 'dataset-partition.R' 'dataset-scan.R' 'dataset-write.R' 'dictionary.R' 'dplyr-across.R' 'dplyr-arrange.R' 'dplyr-by.R' 'dplyr-collect.R' 'dplyr-count.R' 'dplyr-datetime-helpers.R' 'dplyr-distinct.R' 'dplyr-eval.R' 'dplyr-filter.R' 'dplyr-funcs-augmented.R' 'dplyr-funcs-conditional.R' 'dplyr-funcs-datetime.R' 'dplyr-funcs-doc.R' 'dplyr-funcs-math.R' 'dplyr-funcs-simple.R' 'dplyr-funcs-string.R' 'dplyr-funcs-type.R' 'expression.R' 'dplyr-funcs.R' 'dplyr-glimpse.R' 'dplyr-group-by.R' 'dplyr-join.R' 'dplyr-mutate.R' 'dplyr-select.R' 'dplyr-slice.R' 'dplyr-summarize.R' 'dplyr-union.R' 'record-batch.R' 'table.R' 'dplyr.R' 'duckdb.R' 'extension.R' 'feather.R' 'field.R' 'filesystem.R' 'flight.R' 'install-arrow.R' 'ipc-stream.R' 'json.R' 'memory-pool.R' 'message.R' 'metadata.R' 'parquet.R' 'python.R' 'query-engine.R' 'record-batch-reader.R' 'record-batch-writer.R' 'reexports-bit64.R' 'reexports-tidyselect.R' 'schema.R' 'udf.R' 'util.R'",
"NeedsCompilation": "yes",
"Author": "Neal Richardson [aut], Ian Cook [aut], Nic Crane [aut, cre], Dewey Dunnington [aut] (<https://orcid.org/0000-0002-9415-4582>), Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>), Jonathan Keane [aut], Dragoș Moldovan-Grünfeld [aut], Jeroen Ooms [aut], Javier Luraschi [ctb], Karl Dunkle Werner [ctb] (<https://orcid.org/0000-0003-0523-7309>), Jeffrey Wong [ctb], Apache Arrow [aut, cph]",
"Maintainer": "Nic Crane <[email protected]>",
"Repository": "CRAN"
},
"assertthat": {
"Package": "assertthat",
"Version": "0.2.1",
"Source": "Repository",
"Title": "Easy Pre and Post Assertions",
"Authors@R": "person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\"))",
"Description": "An extension to stopifnot() that makes it easy to declare the pre and post conditions that you code should satisfy, while also producing friendly error messages so that your users know what's gone wrong.",
"License": "GPL-3",
"Imports": [
"tools"
],
"Suggests": [
"testthat",
"covr"
],
"RoxygenNote": "6.0.1",
"Collate": "'assert-that.r' 'on-failure.r' 'assertions-file.r' 'assertions-scalar.R' 'assertions.r' 'base.r' 'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r' 'utils.r' 'validate-that.R'",
"NeedsCompilation": "no",
"Author": "Hadley Wickham [aut, cre]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN"
},
"bit": {
"Package": "bit",
"Version": "4.0.5",
"Source": "Repository",
"Type": "Package",
"Title": "Classes and Methods for Fast Memory-Efficient Boolean Selections",
"Date": "2022-11-13",
"Author": "Jens Oehlschlägel [aut, cre], Brian Ripley [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": [
"R (>= 2.9.2)"
],
"Suggests": [
"testthat (>= 0.11.0)",
"roxygen2",
"knitr",
"rmarkdown",
"microbenchmark",
"bit64 (>= 4.0.0)",
"ff (>= 4.0.0)"
],
"Description": "Provided are classes for boolean and skewed boolean vectors, fast boolean methods, fast unique and non-unique integer sorting, fast set operations on sorted and unsorted sets of integers, and foundations for ff (range index, compression, chunked processing).",
"License": "GPL-2 | GPL-3",
"LazyLoad": "yes",
"ByteCompile": "yes",
"Encoding": "UTF-8",
"URL": "https://github.com/truecluster/bit",
"VignetteBuilder": "knitr, rmarkdown",
"RoxygenNote": "7.2.0",
"NeedsCompilation": "yes",
"Repository": "CRAN"
},
"bit64": {
"Package": "bit64",
"Version": "4.0.5",
"Source": "Repository",
"Type": "Package",
"Title": "A S3 Class for Vectors of 64bit Integers",
"Date": "2020-08-29",
"Author": "Jens Oehlschlägel [aut, cre], Leonardo Silvestri [ctb]",
"Maintainer": "Jens Oehlschlägel <[email protected]>",
"Depends": [
"R (>= 3.0.1)",
"bit (>= 4.0.0)",
"utils",
"methods",
"stats"
],
"Description": "Package 'bit64' provides serializable S3 atomic 64bit (signed) integers. These are useful for handling database keys and exact counting in +-2^63. WARNING: do not use them as replacement for 32bit integers, integer64 are not supported for subscripting by R-core and they have different semantics when combined with double, e.g. integer64 + double => integer64. Class integer64 can be used in vectors, matrices, arrays and data.frames. Methods are available for coercion from and to logicals, integers, doubles, characters and factors as well as many elementwise and summary functions. Many fast algorithmic operations such as 'match' and 'order' support inter- 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",
"NeedsCompilation": "yes"
},
"cli": {
"Package": "cli",
"Version": "3.6.1",
"Source": "Repository",
"Title": "Helpers for Developing Command Line Interfaces",
"Authors@R": "c( person(\"Gábor\", \"Csárdi\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", role = \"ctb\"), person(\"Kirill\", \"Müller\", role = \"ctb\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "A suite of tools to build attractive command line interfaces ('CLIs'), from semantic elements: headings, lists, alerts, paragraphs, etc. Supports custom themes via a 'CSS'-like language. It also contains a number of lower level 'CLI' elements: rules, boxes, trees, and 'Unicode' symbols with 'ASCII' alternatives. It support ANSI 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",
"htmltools",
"htmlwidgets",
"knitr",
"methods",
"mockery",
"processx",
"ps (>= 1.3.4.9000)",
"rlang (>= 1.0.2.9003)",
"rmarkdown",
"rprojroot",
"rstudioapi",
"testthat",
"tibble",
"whoami",
"withr"
],
"Config/Needs/website": "r-lib/asciicast, bench, brio, cpp11, decor, desc, fansi, prettyunits, sessioninfo, tidyverse/tidytemplate, usethis, vctrs",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1.9000",
"NeedsCompilation": "yes",
"Author": "Gábor Csárdi [aut, cre], Hadley Wickham [ctb], Kirill Müller [ctb], RStudio [cph, fnd]",
"Maintainer": "Gábor Csárdi <[email protected]>",
"Repository": "CRAN"
},
"community": {
"Package": "community",
"Version": "0.0.2",
"Source": "GitHub",
"Title": "Community Analysis Framework",
"Authors@R": "c( person(\"Biocomplexity Institute\", role = c(\"cph\", \"fnd\")), person(\"Micah\", \"Iserman\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"), person(\"Alan\", \"Wang\", role = \"ctb\"), person(\"Prashanth\", \"Wagle\", role = \"ctb\") )",
"Imports": [
"cli",
"arrow",
"jsonlite",
"rstudioapi",
"stats",
"stringi",
"lingmatch",
"httpuv",
"katex"
],
"Description": "A toolset and web framework to help manage and present data.",
"URL": "https://github.com/uva-bi-sdad/community",
"BugReports": "https://github.com/uva-bi-sdad/community/issues",
"Depends": [
"R (>= 3.5)"
],
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"Roxygen": "list(markdown = TRUE, old_usage = TRUE)",
"RoxygenNote": "7.2.3",
"Suggests": [
"rmarkdown",
"knitr",
"testthat (>= 3.0.0)",
"xml2"
],
"Config/testthat/edition": "3",
"Author": "Biocomplexity Institute [cph, fnd], Micah Iserman [aut, cre], Alan Wang [ctb], Prashanth Wagle [ctb]",
"Maintainer": "Micah Iserman <[email protected]>",
"RemoteType": "github",
"RemoteHost": "api.github.com",
"RemoteRepo": "community",
"RemoteUsername": "uva-bi-sdad",
"RemoteSha": "ab1feed14267ea9aae129f9ea5c2a89d8c89964f"
},
"cpp11": {
"Package": "cpp11",
"Version": "0.4.6",
"Source": "Repository",
"Title": "A C++11 Interface for R's C Interface",
"Authors@R": "c( person(\"Davis\", \"Vaughan\", email = \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4777-038X\")), person(\"Jim\",\"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Romain\", \"François\", role = \"aut\", comment = c(ORCID = \"0000-0002-2444-4226\")), person(\"Benjamin\", \"Kietzman\", role = \"ctb\"), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provides a header only, C++11 interface to R's C interface. Compared to other approaches 'cpp11' strives to be safe against long jumps from the C API as well as C++ exceptions, conform to normal R function semantics and supports interaction with 'ALTREP' 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",
"Depends": [
"R (>= 3.5.0)"
],
"Suggests": [
"bench",
"brio",
"callr",
"cli",
"covr",
"decor",
"desc",
"ggplot2",
"glue",
"knitr",
"lobstr",
"mockery",
"progress",
"rmarkdown",
"scales",
"Rcpp",
"testthat",
"tibble",
"utils",
"vctrs",
"withr"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/Needs/cpp11/cpp_register": "brio, cli, decor, desc, glue, tibble, vctrs",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "no",
"Author": "Davis Vaughan [aut, cre] (<https://orcid.org/0000-0003-4777-038X>), Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Romain François [aut] (<https://orcid.org/0000-0002-2444-4226>), Benjamin Kietzman [ctb], Posit Software, PBC [cph, fnd]",
"Maintainer": "Davis Vaughan <[email protected]>",
"Repository": "CRAN"
},
"curl": {
"Package": "curl",
"Version": "5.1.0",
"Source": "Repository",
"Type": "Package",
"Title": "A Modern and Flexible Web Client for R",
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"), person(\"RStudio\", role = \"cph\") )",
"Description": "The curl() and curl_download() functions provide highly configurable drop-in replacements for base url() and download.file() with better performance, support for encryption (https, ftps), gzip compression, authentication, and other 'libcurl' goodies. The core of the package implements a framework for performing fully customized requests where data can be processed either in memory, on disk, or streaming via the callback or connection interfaces. Some knowledge of 'libcurl' is recommended; for a more-user-friendly web client see the 'httr' package which builds on this package with http specific tools and logic.",
"License": "MIT + file LICENSE",
"SystemRequirements": "libcurl: libcurl-devel (rpm) or libcurl4-openssl-dev (deb).",
"URL": "https://jeroen.r-universe.dev/curl https://curl.se/libcurl/",
"BugReports": "https://github.com/jeroen/curl/issues",
"Suggests": [
"spelling",
"testthat (>= 1.0.0)",
"knitr",
"jsonlite",
"rmarkdown",
"magrittr",
"httpuv (>= 1.4.4)",
"webutils"
],
"VignetteBuilder": "knitr",
"Depends": [
"R (>= 3.0.0)"
],
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"Language": "en-US",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Hadley Wickham [ctb], RStudio [cph]",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN"
},
"fastmap": {
"Package": "fastmap",
"Version": "1.1.1",
"Source": "Repository",
"Title": "Fast Data Structures",
"Authors@R": "c( person(\"Winston\", \"Chang\", email = \"[email protected]\", role = c(\"aut\", \"cre\")), person(given = \"RStudio\", role = c(\"cph\", \"fnd\")), person(given = \"Tessil\", role = \"cph\", comment = \"hopscotch_map library\") )",
"Description": "Fast implementation of data structures, including a key-value store, stack, and queue. Environments are commonly used as key-value stores in R, but every time a new key is used, it is added to R's global symbol table, causing a small amount of memory leakage. This can be problematic in cases where many different keys are used. Fastmap avoids this memory leak issue by implementing the map using data structures in C++.",
"License": "MIT + file LICENSE",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"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",
"Author": "Winston Chang [aut, cre], RStudio [cph, fnd], Tessil [cph] (hopscotch_map library)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN"
},
"glue": {
"Package": "glue",
"Version": "1.6.2",
"Source": "Repository",
"Title": "Interpreted String Literals",
"Authors@R": "c( person(\"Jim\", \"Hester\", role = \"aut\", comment = c(ORCID = \"0000-0002-2739-7082\")), person(\"Jennifer\", \"Bryan\", , \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0002-6983-2759\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "An implementation of interpreted string literals, inspired by Python's Literal String Interpolation <https://www.python.org/dev/peps/pep-0498/> and Docstrings <https://www.python.org/dev/peps/pep-0257/> and Julia's Triple-Quoted String Literals <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",
"microbenchmark",
"R.utils",
"rmarkdown",
"rprintf",
"RSQLite",
"stringr",
"testthat (>= 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",
"Author": "Jim Hester [aut] (<https://orcid.org/0000-0002-2739-7082>), Jennifer Bryan [aut, cre] (<https://orcid.org/0000-0002-6983-2759>), RStudio [cph, fnd]",
"Maintainer": "Jennifer Bryan <[email protected]>",
"Repository": "CRAN"
},
"httpuv": {
"Package": "httpuv",
"Version": "1.6.12",
"Source": "Repository",
"Type": "Package",
"Title": "HTTP and WebSocket Server Library",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"[email protected]\", role = \"aut\"), person(\"Winston\", \"Chang\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Posit, PBC\", \"fnd\", role = \"cph\"), person(\"Hector\", \"Corrada Bravo\", role = \"ctb\"), person(\"Jeroen\", \"Ooms\", role = \"ctb\"), person(\"Andrzej\", \"Krzemienski\", role = \"cph\", comment = \"optional.hpp\"), person(\"libuv project contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file\"), person(\"Joyent, Inc. and other Node contributors\", role = \"cph\", comment = \"libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file\"), person(\"Niels\", \"Provos\", role = \"cph\", comment = \"libuv subcomponent: tree.h\"), person(\"Internet Systems Consortium, Inc.\", role = \"cph\", comment = \"libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c\"), person(\"Alexander\", \"Chemeris\", role = \"cph\", comment = \"libuv subcomponent: stdint-msvc2008.h (from msinttypes)\"), person(\"Google, Inc.\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Sony Mobile Communcations AB\", role = \"cph\", comment = \"libuv subcomponent: pthread-fixes.c\"), person(\"Berkeley Software Design Inc.\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Kenneth\", \"MacKay\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016)\", role = \"cph\", comment = \"libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c\"), person(\"Steve\", \"Reid\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"James\", \"Brown\", role = \"aut\", comment = \"SHA-1 implementation\"), person(\"Bob\", \"Trower\", role = \"aut\", comment = \"base64 implementation\"), person(\"Alexander\", \"Peslyak\", role = \"aut\", comment = \"MD5 implementation\"), person(\"Trantor Standard Systems\", role = \"cph\", comment = \"base64 implementation\"), person(\"Igor\", \"Sysoev\", role = \"cph\", comment = \"http-parser\") )",
"Description": "Provides low-level socket and protocol support for handling HTTP and WebSocket requests directly from within R. It is primarily intended as a building block for other packages, rather than making it particularly easy to create complete web applications using httpuv alone. httpuv is built on top of the libuv and http-parser C libraries, both of which were developed by Joyent, Inc. (See LICENSE file for libuv and http-parser license information.)",
"License": "GPL (>= 2) | file LICENSE",
"URL": "https://github.com/rstudio/httpuv",
"BugReports": "https://github.com/rstudio/httpuv/issues",
"Depends": [
"R (>= 2.15.1)"
],
"Imports": [
"later (>= 0.8.0)",
"promises",
"R6",
"Rcpp (>= 1.0.7)",
"utils"
],
"Suggests": [
"callr",
"curl",
"testthat",
"websocket"
],
"LinkingTo": [
"later",
"Rcpp"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"SystemRequirements": "GNU make, zlib",
"Collate": "'RcppExports.R' 'httpuv.R' 'random_port.R' 'server.R' 'staticServer.R' 'static_paths.R' 'utils.R'",
"NeedsCompilation": "yes",
"Author": "Joe Cheng [aut], Winston Chang [aut, cre], Posit, PBC fnd [cph], Hector Corrada Bravo [ctb], Jeroen Ooms [ctb], Andrzej Krzemienski [cph] (optional.hpp), libuv project contributors [cph] (libuv library, see src/libuv/AUTHORS file), Joyent, Inc. and other Node contributors [cph] (libuv library, see src/libuv/AUTHORS file; and http-parser library, see src/http-parser/AUTHORS file), Niels Provos [cph] (libuv subcomponent: tree.h), Internet Systems Consortium, Inc. [cph] (libuv subcomponent: inet_pton and inet_ntop, contained in src/libuv/src/inet.c), Alexander Chemeris [cph] (libuv subcomponent: stdint-msvc2008.h (from msinttypes)), Google, Inc. [cph] (libuv subcomponent: pthread-fixes.c), Sony Mobile Communcations AB [cph] (libuv subcomponent: pthread-fixes.c), Berkeley Software Design Inc. [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Kenneth MacKay [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Emergya (Cloud4all, FP7/2007-2013, grant agreement no 289016) [cph] (libuv subcomponent: android-ifaddrs.h, android-ifaddrs.c), Steve Reid [aut] (SHA-1 implementation), James Brown [aut] (SHA-1 implementation), Bob Trower [aut] (base64 implementation), Alexander Peslyak [aut] (MD5 implementation), Trantor Standard Systems [cph] (base64 implementation), Igor Sysoev [cph] (http-parser)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN"
},
"jsonlite": {
"Package": "jsonlite",
"Version": "1.8.7",
"Source": "Repository",
"Title": "A Simple and Robust JSON Parser and Generator for R",
"License": "MIT + file LICENSE",
"Depends": [
"methods"
],
"Authors@R": "c( person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Duncan\", \"Temple Lang\", role = \"ctb\"), person(\"Lloyd\", \"Hilaiel\", role = \"cph\", comment=\"author of bundled libyajl\"))",
"URL": "https://jeroen.r-universe.dev/jsonlite https://arxiv.org/abs/1403.2805",
"BugReports": "https://github.com/jeroen/jsonlite/issues",
"Maintainer": "Jeroen Ooms <[email protected]>",
"VignetteBuilder": "knitr, R.rsp",
"Description": "A reasonably fast JSON parser and generator, optimized for statistical data and the web. Offers simple, flexible tools for working with JSON in R, and is particularly powerful for building pipelines and interacting with a web API. The implementation is based on the mapping described in the vignette (Ooms, 2014). In addition to converting JSON data from/to R objects, 'jsonlite' contains functions to stream, validate, and prettify JSON data. The unit tests included with the package verify that all edge cases are encoded and decoded consistently for use with dynamic data in systems and applications.",
"Suggests": [
"httr",
"vctrs",
"testthat",
"knitr",
"rmarkdown",
"R.rsp",
"sf"
],
"RoxygenNote": "7.2.3",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Duncan Temple Lang [ctb], Lloyd Hilaiel [cph] (author of bundled libyajl)",
"Repository": "CRAN"
},
"katex": {
"Package": "katex",
"Version": "1.4.1",
"Source": "Repository",
"Type": "Package",
"Title": "Rendering Math to HTML, 'MathML', or R-Documentation Format",
"Authors@R": "c(person(\"Jeroen\", \"Ooms\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0002-4035-0289\")), person(\"Khan Academy and other contributors\", role = \"cph\", comment=\"KaTeX JavaScript library\"))",
"Description": "Convert latex math expressions to HTML and 'MathML' for use in markdown documents or package manual pages. The rendering is done in R using the V8 engine (i.e. server-side), which eliminates the need for embedding the 'MathJax' library into your web pages. In addition a 'math-to-rd' wrapper is provided to automatically render beautiful math in R documentation files.",
"License": "MIT + file LICENSE",
"URL": "https://docs.ropensci.org/katex/, https://github.com/ropensci/katex https://katex.org/docs/options.html (upstream)",
"BugReports": "https://github.com/ropensci/katex/issues",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1",
"Imports": [
"V8"
],
"VignetteBuilder": "knitr",
"Suggests": [
"knitr",
"rmarkdown"
],
"NeedsCompilation": "no",
"Author": "Jeroen Ooms [aut, cre] (<https://orcid.org/0000-0002-4035-0289>), Khan Academy and other contributors [cph] (KaTeX JavaScript library)",
"Maintainer": "Jeroen Ooms <[email protected]>",
"Repository": "CRAN"
},
"later": {
"Package": "later",
"Version": "1.3.1",
"Source": "Repository",
"Type": "Package",
"Title": "Utilities for Scheduling Functions to Execute Later with Event Loops",
"Authors@R": "c( person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"), person(\"Joe\", \"Cheng\", role = c(\"aut\"), email = \"[email protected]\"), person(family = \"RStudio\", role = \"cph\"), person(\"Marcus\", \"Geelnard\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\"), person(\"Evan\", \"Nemerson\", role = c(\"ctb\", \"cph\"), comment = \"TinyCThread library, https://tinycthread.github.io/\") )",
"Description": "Executes arbitrary R or C functions some time after the current time, after the R execution stack has emptied. The functions are scheduled in an event loop.",
"URL": "https://r-lib.github.io/later/, https://github.com/r-lib/later",
"BugReports": "https://github.com/r-lib/later/issues",
"License": "MIT + file LICENSE",
"Imports": [
"Rcpp (>= 0.12.9)",
"rlang"
],
"LinkingTo": [
"Rcpp"
],
"RoxygenNote": "7.2.3",
"Suggests": [
"knitr",
"rmarkdown",
"testthat (>= 2.1.0)"
],
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
"NeedsCompilation": "yes",
"Author": "Winston Chang [aut, cre], Joe Cheng [aut], RStudio [cph], Marcus Geelnard [ctb, cph] (TinyCThread library, https://tinycthread.github.io/), Evan Nemerson [ctb, cph] (TinyCThread library, https://tinycthread.github.io/)",
"Maintainer": "Winston Chang <[email protected]>",
"Repository": "CRAN"
},
"lattice": {
"Package": "lattice",
"Version": "0.21-8",
"Source": "Repository",
"Date": "2023-04-05",
"Priority": "recommended",
"Title": "Trellis Graphics for R",
"Authors@R": "c(person(\"Deepayan\", \"Sarkar\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4107-1553\")), person(\"Felix\", \"Andrews\", role = \"ctb\"), person(\"Kevin\", \"Wright\", role = \"ctb\", comment = \"documentation\"), person(\"Neil\", \"Klepeis\", role = \"ctb\"), person(\"Johan\", \"Larsson\", role = \"ctb\", comment = \"miscellaneous improvements\"), person(\"Zhijian (Jason)\", \"Wen\", role = \"cph\", comment = \"filled contour code\"), person(\"Paul\", \"Murrell\", role = \"ctb\", email = \"[email protected]\"), person(\"Stefan\", \"Eng\", role = \"ctb\", comment = \"violin plot improvements\"), person(\"Achim\", \"Zeileis\", role = \"ctb\", comment = \"modern colors\") )",
"Description": "A powerful and elegant high-level data visualization system inspired by Trellis graphics, with an emphasis on multivariate data. Lattice is sufficient for typical graphics needs, and is also flexible enough to handle most nonstandard requirements. See ?Lattice for an introduction.",
"Depends": [
"R (>= 4.0.0)"
],
"Suggests": [
"KernSmooth",
"MASS",
"latticeExtra",
"colorspace"
],
"Imports": [
"grid",
"grDevices",
"graphics",
"stats",
"utils"
],
"Enhances": [
"chron"
],
"LazyLoad": "yes",
"LazyData": "yes",
"License": "GPL (>= 2)",
"URL": "https://lattice.r-forge.r-project.org/",
"BugReports": "https://github.com/deepayan/lattice/issues",
"NeedsCompilation": "yes",
"Author": "Deepayan Sarkar [aut, cre] (<https://orcid.org/0000-0003-4107-1553>), Felix Andrews [ctb], Kevin Wright [ctb] (documentation), Neil Klepeis [ctb], Johan Larsson [ctb] (miscellaneous improvements), Zhijian (Jason) Wen [cph] (filled contour code), Paul Murrell [ctb], Stefan Eng [ctb] (violin plot improvements), Achim Zeileis [ctb] (modern colors)",
"Maintainer": "Deepayan Sarkar <[email protected]>",
"Repository": "CRAN"
},
"lifecycle": {
"Package": "lifecycle",
"Version": "1.0.3",
"Source": "Repository",
"Title": "Manage the Life Cycle of your Package Functions",
"Authors@R": "c( person(\"Lionel\", \"Henry\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "Manage the life cycle of your exported functions with shared conventions, documentation badges, and user-friendly deprecation warnings.",
"License": "MIT + file LICENSE",
"URL": "https://lifecycle.r-lib.org/, https://github.com/r-lib/lifecycle",
"BugReports": "https://github.com/r-lib/lifecycle/issues",
"Depends": [
"R (>= 3.4)"
],
"Imports": [
"cli (>= 3.4.0)",
"glue",
"rlang (>= 1.0.6)"
],
"Suggests": [
"covr",
"crayon",
"knitr",
"lintr",
"rmarkdown",
"testthat (>= 3.0.1)",
"tibble",
"tidyverse",
"tools",
"vctrs",
"withr"
],
"VignetteBuilder": "knitr",
"Config/testthat/edition": "3",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.1",
"NeedsCompilation": "no",
"Author": "Lionel Henry [aut, cre], Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), RStudio [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "CRAN"
},
"lingmatch": {
"Package": "lingmatch",
"Version": "1.0.6",
"Source": "Repository",
"Type": "Package",
"Title": "Linguistic Matching and Accommodation",
"Author": "Micah Iserman",
"Maintainer": "Micah Iserman <[email protected]>",
"Description": "Measure similarity between texts. Offers a variety of processing tools and similarity metrics to facilitate flexible representation of texts and matching. Implements forms of Language Style Matching (Ireland & Pennebaker, 2010) <doi:10.1037/a0020386> and Latent Semantic Analysis (Landauer & Dumais, 1997) <doi:10.1037/0033-295X.104.2.211>.",
"URL": "https://github.com/miserman/lingmatch",
"BugReports": "https://github.com/miserman/lingmatch/issues",
"Depends": [
"R (>= 3.5)",
"methods",
"Matrix"
],
"Imports": [
"Rcpp",
"RcppParallel"
],
"License": "GPL (>= 2)",
"RoxygenNote": "7.2.3",
"Suggests": [
"knitr",
"rmarkdown",
"splot",
"testthat (>= 2.1.0)"
],
"LinkingTo": [
"Rcpp",
"RcppParallel",
"BH"
],
"NeedsCompilation": "yes",
"Repository": "CRAN"
},
"magrittr": {
"Package": "magrittr",
"Version": "2.0.3",
"Source": "Repository",
"Type": "Package",
"Title": "A Forward-Pipe Operator for R",
"Authors@R": "c( person(\"Stefan Milton\", \"Bache\", , \"[email protected]\", role = c(\"aut\", \"cph\"), comment = \"Original author and creator of magrittr\"), person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"aut\"), person(\"Lionel\", \"Henry\", , \"[email protected]\", role = \"cre\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provides a mechanism for chaining commands with a new forward-pipe operator, %>%. This operator will forward a value, or the result of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"",
"License": "MIT + file LICENSE",
"URL": "https://magrittr.tidyverse.org, https://github.com/tidyverse/magrittr",
"BugReports": "https://github.com/tidyverse/magrittr/issues",
"Depends": [
"R (>= 3.4.0)"
],
"Suggests": [
"covr",
"knitr",
"rlang",
"rmarkdown",
"testthat"
],
"VignetteBuilder": "knitr",
"ByteCompile": "Yes",
"Config/Needs/website": "tidyverse/tidytemplate",
"Encoding": "UTF-8",
"RoxygenNote": "7.1.2",
"NeedsCompilation": "yes",
"Author": "Stefan Milton Bache [aut, cph] (Original author and creator of magrittr), Hadley Wickham [aut], Lionel Henry [cre], RStudio [cph, fnd]",
"Maintainer": "Lionel Henry <[email protected]>",
"Repository": "CRAN"
},
"promises": {
"Package": "promises",
"Version": "1.2.1",
"Source": "Repository",
"Type": "Package",
"Title": "Abstractions for Promise-Based Asynchronous Programming",
"Authors@R": "c( person(\"Joe\", \"Cheng\", , \"[email protected]\", role = c(\"aut\", \"cre\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "Provides fundamental abstractions for doing asynchronous programming in R using promises. Asynchronous programming is useful for allowing a single R process to orchestrate multiple tasks in the background while also attending to something else. Semantics are similar to 'JavaScript' promises, but with a syntax that is idiomatic R.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/promises/, https://github.com/rstudio/promises",
"BugReports": "https://github.com/rstudio/promises/issues",
"Imports": [
"fastmap (>= 1.1.0)",
"later",
"magrittr (>= 1.5)",
"R6",
"Rcpp",
"rlang",
"stats"
],
"Suggests": [
"future (>= 1.21.0)",
"knitr",
"purrr",
"rmarkdown",
"spelling",
"testthat",
"vembedr"
],
"LinkingTo": [
"later",
"Rcpp"
],
"VignetteBuilder": "knitr",
"Config/Needs/website": "rsconnect",
"Encoding": "UTF-8",
"Language": "en-US",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Joe Cheng [aut, cre], Posit Software, PBC [cph, fnd]",
"Maintainer": "Joe Cheng <[email protected]>",
"Repository": "CRAN"
},
"purrr": {
"Package": "purrr",
"Version": "1.0.2",
"Source": "Repository",
"Title": "Functional Programming Tools",
"Authors@R": "c( person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\"), comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Lionel\", \"Henry\", , \"[email protected]\", role = \"aut\"), person(\"RStudio\", role = c(\"cph\", \"fnd\")) )",
"Description": "A complete and consistent functional programming toolkit for R.",
"License": "MIT + file LICENSE",
"URL": "https://purrr.tidyverse.org/, https://github.com/tidyverse/purrr",
"BugReports": "https://github.com/tidyverse/purrr/issues",
"Depends": [
"R (>= 3.5.0)"
],
"Imports": [
"cli (>= 3.6.1)",
"lifecycle (>= 1.0.3)",
"magrittr (>= 1.5.0)",
"rlang (>= 1.1.1)",
"vctrs (>= 0.6.3)"
],
"Suggests": [
"covr",
"dplyr (>= 0.7.8)",
"httr",
"knitr",
"lubridate",
"rmarkdown",
"testthat (>= 3.0.0)",
"tibble",
"tidyselect"
],
"LinkingTo": [
"cli"
],
"VignetteBuilder": "knitr",
"Biarch": "true",
"Config/Needs/website": "tidyverse/tidytemplate, tidyr",
"Config/testthat/edition": "3",
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"NeedsCompilation": "yes",
"Author": "Hadley Wickham [aut, cre] (<https://orcid.org/0000-0003-4757-117X>), Lionel Henry [aut], RStudio [cph, fnd]",
"Maintainer": "Hadley Wickham <[email protected]>",
"Repository": "CRAN"
},
"renv": {
"Package": "renv",
"Version": "1.0.3",
"Source": "Repository",
"Type": "Package",
"Title": "Project Environments",
"Authors@R": "c( person(\"Kevin\", \"Ushey\", role = c(\"aut\", \"cre\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-2880-7407\")), person(\"Hadley\", \"Wickham\", role = c(\"aut\"), email = \"[email protected]\", comment = c(ORCID = \"0000-0003-4757-117X\")), person(\"Posit Software, PBC\", role = c(\"cph\", \"fnd\")) )",
"Description": "A dependency management toolkit for R. Using 'renv', you can create and manage project-local R libraries, save the state of these libraries to a 'lockfile', and later restore your library as required. Together, these tools can help make your projects more isolated, portable, and reproducible.",
"License": "MIT + file LICENSE",
"URL": "https://rstudio.github.io/renv/, https://github.com/rstudio/renv",
"BugReports": "https://github.com/rstudio/renv/issues",
"Imports": [
"utils"
],
"Suggests": [
"BiocManager",
"cli",
"covr",
"cpp11",
"devtools",
"gitcreds",
"jsonlite",
"knitr",
"miniUI",
"packrat",
"pak",
"R6",
"remotes",
"reticulate",
"rmarkdown",
"rstudioapi",
"shiny",
"testthat",
"uuid",
"waldo",
"yaml",
"webfakes"
],
"Encoding": "UTF-8",
"RoxygenNote": "7.2.3",
"VignetteBuilder": "knitr",
"Config/Needs/website": "tidyverse/tidytemplate",
"Config/testthat/edition": "3",
"Config/testthat/parallel": "true",
"Config/testthat/start-first": "bioconductor,python,install,restore,snapshot,retrieve,remotes",
"NeedsCompilation": "no",
"Author": "Kevin Ushey [aut, cre] (<https://orcid.org/0000-0003-2880-7407>), Hadley Wickham [aut] (<https://orcid.org/0000-0003-4757-117X>), Posit Software, PBC [cph, fnd]",
"Maintainer": "Kevin Ushey <[email protected]>",
"Repository": "CRAN"
},
"rlang": {
"Package": "rlang",
"Version": "1.1.1",
"Source": "Repository",
"Title": "Functions for Base Types and Core R and 'Tidyverse' Features",
"Description": "A toolbox for working with base types, core R features like the condition system, and core 'Tidyverse' features like tidy evaluation.",
"Authors@R": "c( person(\"Lionel\", \"Henry\", ,\"[email protected]\", c(\"aut\", \"cre\")), person(\"Hadley\", \"Wickham\", ,\"[email protected]\", \"aut\"), person(given = \"mikefc\", email = \"[email protected]\", role = \"cph\", comment = \"Hash implementation based on Mike's xxhashlite\"), person(given = \"Yann\", family = \"Collet\", role = \"cph\", comment = \"Author of the embedded xxHash library\"), person(given = \"Posit, PBC\", role = c(\"cph\", \"fnd\")) )",
"License": "MIT + file LICENSE",
"ByteCompile": "true",
"Biarch": "true",
"Depends": [
"R (>= 3.5.0)"