-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
1230 lines (1230 loc) · 70.4 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" : "3.2.1",
"metadata" : {
"appmode" : "shiny",
"primary_rmd" : null,
"primary_html" : null,
"content_category" : null,
"has_parameters" : false
},
"packages" : {
"BH" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "BH",
"Type" : "Package",
"Title" : "Boost C++ Header Files",
"Version" : "1.58.0-1",
"Date" : "2015-05-21",
"Author" : "Dirk Eddelbuettel, John W. Emerson and Michael J. Kane",
"Maintainer" : "Dirk Eddelbuettel <[email protected]>",
"Description" : "Boost provides free peer-reviewed portable C++ source \n libraries. A large part of Boost is provided as C++ template code\n which is resolved entirely at compile-time without linking. This \n package aims to provide the most useful subset of Boost libraries \n for template use among CRAN package. By placing these libraries in \n this package, we offer a more efficient distribution system for CRAN \n as replication of this code in the sources of other packages is \n avoided. ",
"License" : "BSL-1.0",
"MailingList" : "Please send questions and comments regarding BH to\nhttp://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/boostheaders-devel",
"BugReports" : "https://github.com/eddelbuettel/bh/issues",
"NeedsCompilation" : "no",
"Packaged" : "2015-05-21 12:09:46.302598 UTC; edd",
"Repository" : "CRAN",
"Date/Publication" : "2015-05-21 17:09:02",
"Built" : "R 3.2.1; ; 2015-06-30 15:08:37 UTC; windows"
}
},
"DBI" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "DBI",
"Version" : "0.5-1",
"Date" : "2016-09-09",
"Title" : "R Database Interface",
"Description" : "A database interface definition for communication\n between R and relational database management systems. All\n classes in this package are virtual and need to be extended by\n the various R/DBMS implementations.",
"Authors@R" : "c(\n person(\"R Special Interest Group on Databases (R-SIG-DB)\", role = \"aut\"),\n person(\"Hadley\", \"Wickham\", role = \"aut\"),\n person(\"Kirill\", \"Müller\", email = \"[email protected]\", role = c(\"aut\", \"cre\"))\n )",
"Depends" : "R (>= 2.15.0), methods",
"Suggests" : "testthat, RSQLite, knitr, rmarkdown, covr",
"Encoding" : "UTF-8",
"License" : "LGPL (>= 2)",
"URL" : "http://rstats-db.github.io/DBI",
"URLNote" : "https://github.com/rstats-db/DBI",
"BugReports" : "https://github.com/rstats-db/DBI/issues",
"Collate" : "'DBObject.R' 'DBDriver.R' 'DBConnection.R' 'ANSI.R'\n'DBI-package.R' 'DBResult.R' 'data-types.R' 'data.R'\n'deprecated.R' 'hidden.R' 'interpolate.R' 'quote.R'\n'rownames.R' 'table-create.R' 'table-insert.R' 'table.R'\n'transactions.R' 'util.R'",
"VignetteBuilder" : "knitr",
"RoxygenNote" : "5.0.1.9000",
"NeedsCompilation" : "no",
"Packaged" : "2016-09-09 21:32:04 UTC; muelleki",
"Author" : "R Special Interest Group on Databases (R-SIG-DB) [aut],\n Hadley Wickham [aut],\n Kirill Müller [aut, cre]",
"Maintainer" : "Kirill Müller <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2016-09-10 01:27:20",
"Built" : "R 3.2.5; ; 2016-12-01 17:41:48 UTC; windows"
}
},
"MASS" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "MASS",
"Priority" : "recommended",
"Version" : "7.3-40",
"Date" : "2015-03-21",
"Revision" : "$Rev: 3441 $",
"Depends" : "R (>= 3.1.0), grDevices, graphics, stats, utils",
"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/",
"NeedsCompilation" : "yes",
"Packaged" : "2015-03-21 06:59:04 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" : "2015-03-21 08:07:26",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-06-18 17:27:58 UTC; windows"
}
},
"R6" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "R6",
"Title" : "Classes with Reference Semantics",
"Version" : "2.1.0",
"Authors@R" : "person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\")",
"Description" : "The R6 package allows the creation of classes with reference\n semantics, similar to R's built-in reference classes. Compared to reference\n classes, R6 classes are simpler and lighter-weight, and they are not built\n on S4 classes so they do not require the methods package. These classes\n allow public and private members, and they support inheritance, even when\n the classes are defined in different packages.",
"Depends" : "R (>= 3.0)",
"Suggests" : "knitr, microbenchmark, pryr, testthat, ggplot2, scales",
"License" : "MIT + file LICENSE",
"URL" : "https://github.com/wch/R6/",
"LazyData" : "true",
"VignetteBuilder" : "knitr",
"NeedsCompilation" : "no",
"Packaged" : "2015-07-03 13:30:23 UTC; winston",
"Author" : "Winston Chang [aut, cre]",
"Maintainer" : "Winston Chang <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2015-07-04 00:19:07",
"Built" : "R 3.2.1; ; 2015-08-06 02:32:23 UTC; windows"
}
},
"RColorBrewer" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "RColorBrewer",
"Version" : "1.1-2",
"Date" : "2014-12-07",
"Title" : "ColorBrewer Palettes",
"Authors@R" : "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n \"cre\"), email = \"[email protected]\"))",
"Author" : "Erich Neuwirth [aut, cre]",
"Maintainer" : "Erich Neuwirth <[email protected]>",
"Depends" : "R (>= 2.0.0)",
"Description" : "Provides color schemes for maps (and other graphics)\n designed by Cynthia Brewer as described at http://colorbrewer2.org",
"License" : "Apache License 2.0",
"Packaged" : "2014-12-06 23:59:42 UTC; neuwirth",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2014-12-07 08:28:55",
"Built" : "R 3.2.1; ; 2015-06-30 15:07:23 UTC; windows"
}
},
"RSQLite" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "RSQLite",
"Version" : "1.0.0",
"Title" : "SQLite Interface for R",
"Authors@R" : "as.person(c(\n \"Hadley Wickham <[email protected]> [aut, cre]\",\n \"David A. James [aut]\",\n \"Seth Falcon [aut]\",\n \"SQLite Authors (for the included SQLite sources) [ctb]\",\n \"Liam Healy (for the include SQLite extensions) [ctb]\",\n \"RStudio [cph]\"\n ))",
"Description" : "This package embeds the SQLite database engine in R and\n provides an interface compliant with the DBI package.\n The source for the SQLite engine (version 3.8.6) is included.",
"Depends" : "R (>= 2.10.0), DBI (>= 0.3.1), methods",
"Suggests" : "testthat",
"License" : "LGPL (>= 2)",
"URL" : "https://github.com/rstats-db/RSQLite",
"BugReports" : "https://github.com/rstats-db/RSQLite/issues",
"Collate" : "'ConnectionExtensions.R' 'Connection.R' 'Driver.R' 'Connect.R'\n'ConnectionRead.R' 'ConnectionTransactions.R'\n'ConnectionWrite.R' 'Constants.R' 'Escaping.R' 'Result.R'\n'Object.R' 'Summary.R' 'Utils.R' 'datasetsDb.R' 'dbGetInfo.R'\n'extensions.R' 'zzz.R'",
"Packaged" : "2014-10-24 18:38:41 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre],\n David A. James [aut],\n Seth Falcon [aut],\n SQLite Authors [ctb] (for the included SQLite sources),\n Liam Healy [ctb] (for the include SQLite extensions),\n RStudio [cph]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2014-10-25 01:58:48",
"Built" : "R 3.2.2; x86_64-w64-mingw32; 2015-10-30 04:16:33 UTC; windows"
}
},
"Rcpp" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "Rcpp",
"Title" : "Seamless R and C++ Integration",
"Version" : "0.12.0",
"Date" : "2015-07-24",
"Author" : "Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, \n Qiang Kou, 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 <http://gallery.rcpp.org>, the paper by Eddelbuettel and \n Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see \n 'citation(\"Rcpp\")' for details on these last two.",
"Depends" : "R (>= 3.0.0)",
"Imports" : "methods, utils",
"Suggests" : "RUnit, inline, rbenchmark, highlight, pkgKitten (>= 0.1.2)",
"VignetteBuilder" : "highlight",
"URL" : "http://www.rcpp.org, http://dirk.eddelbuettel.com/code/rcpp.html,\nhttps://github.com/RcppCore/Rcpp",
"License" : "GPL (>= 2)",
"BugReports" : "https://github.com/RcppCore/Rcpp/issues",
"MailingList" : "Please send questions and comments regarding Rcpp to\[email protected]",
"NeedsCompilation" : "yes",
"Packaged" : "2015-07-25 00:47:10.067212 UTC; edd",
"Repository" : "CRAN",
"Date/Publication" : "2015-07-25 12:26:15",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-08-06 02:32:33 UTC; windows"
}
},
"assertthat" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "assertthat",
"Title" : "Easy pre and post assertions.",
"Version" : "0.1",
"Authors@R" : "'Hadley Wickham <[email protected]> [aut,cre]'",
"Description" : "assertthat is an extension to stopifnot() that makes it\n easy to declare the pre and post conditions that you code should\n satisfy, while also producing friendly error messages so that your\n users know what they've done wrong.",
"License" : "GPL-3",
"Suggests" : "testthat",
"Collate" : "'assert-that.r' 'on-failure.r' 'assertions-file.r'\n'assertions-scalar.R' 'assertions.r' 'base.r'\n'base-comparison.r' 'base-is.r' 'base-logical.r' 'base-misc.r'\n'utils.r' 'validate-that.R'",
"Roxygen" : "list(wrap = FALSE)",
"Packaged" : "2013-12-05 18:46:37 UTC; hadley",
"Author" : "'Hadley Wickham' [aut, cre]",
"Maintainer" : "'Hadley Wickham' <[email protected]>",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2013-12-06 00:51:10",
"Built" : "R 3.2.1; ; 2015-08-06 02:32:23 UTC; windows"
}
},
"chron" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "chron",
"Version" : "2.3-47",
"Title" : "Chronological Objects which can Handle Dates and Times",
"Description" : "Chronological objects which can handle dates and times.",
"Authors@R" : "c(person(\"David\", \"James\", role = \"aut\",\n comment = \"S original\"),\n person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"trl\", \"cre\"),\n email = \"[email protected]\"),\n person(\"Gabor\", \"Grothendieck\", role = \"ctb\",\n email = \"[email protected]\"))",
"Depends" : "R (>= 2.12.0)",
"Imports" : "graphics, stats",
"Suggests" : "scales, ggplot2",
"Enhances" : "zoo",
"License" : "GPL-2",
"NeedsCompilation" : "yes",
"Packaged" : "2015-06-24 15:58:52 UTC; hornik",
"Author" : "David James [aut] (S original),\n Kurt Hornik [aut, trl, cre],\n Gabor Grothendieck [ctb]",
"Maintainer" : "Kurt Hornik <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2015-06-24 18:01:27",
"Built" : "R 3.2.2; x86_64-w64-mingw32; 2015-10-30 03:36:52 UTC; windows"
}
},
"colorspace" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "colorspace",
"Version" : "1.2-6",
"Date" : "2015-03-10",
"Title" : "Color Space Manipulation",
"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 person(given = \"Kurt\", family = \"Hornik\", role = \"aut\", email = \"[email protected]\"),\n person(given = c(\"Jason\", \"C.\"), family = \"Fisher\", role = \"aut\", email = \"[email protected]\"),\n person(given = \"Achim\", family = \"Zeileis\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"))",
"Description" : "Carries out mapping between assorted color spaces including\n RGB, HSV, HLS, CIEXYZ, CIELUV, HCL (polar CIELUV),\n\t CIELAB and polar CIELAB. Qualitative, sequential, and\n\t diverging color palettes based on HCL colors are provided.",
"Depends" : "R (>= 2.13.0), methods",
"Imports" : "graphics",
"Suggests" : "KernSmooth, MASS, kernlab, mvtnorm, vcd, dichromat, tcltk",
"License" : "BSD_3_clause + file LICENSE",
"LazyData" : "yes",
"Packaged" : "2015-03-10 21:17:09 UTC; zeileis",
"Author" : "Ross Ihaka [aut],\n Paul Murrell [aut],\n Kurt Hornik [aut],\n Jason C. Fisher [aut],\n Achim Zeileis [aut, cre]",
"Maintainer" : "Achim Zeileis <[email protected]>",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2015-03-11 00:21:00",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-08-09 02:30:50 UTC; windows"
}
},
"dichromat" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "dichromat",
"Version" : "2.0-0",
"Date" : "2013-01-23",
"Title" : "Color Schemes for Dichromats",
"Authors@R" : "c(person(given = \"Thomas\", family = \"Lumley\", role =\n c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(given = \"Ken\", family = \"Knoblauch\", role = \"ctb\", email\n = \"[email protected]\"), person(given = \"Scott\", family =\n \"Waichler\", role = \"ctb\", email = \"[email protected]\"),\n person(given = \"Achim\", family = \"Zeileis\", role = \"ctb\", email\n = \"[email protected]\"))",
"Description" : "Collapse red-green or green-blue distinctions to simulate\n the effects of different types of color-blindness.",
"Depends" : "R (>= 2.10), stats",
"License" : "GPL-2",
"LazyLoad" : "Yes",
"Packaged" : "2013-01-23 06:25:04 UTC; zeileis",
"Author" : "Thomas Lumley [aut, cre], Ken Knoblauch [ctb], Scott Waichler\n [ctb], Achim Zeileis [ctb]",
"Maintainer" : "Thomas Lumley <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2013-01-24 08:18:09",
"Built" : "R 3.2.1; ; 2015-06-30 15:07:23 UTC; windows"
}
},
"digest" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "digest",
"Version" : "0.6.8",
"Date" : "2013-12-30",
"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 and Wush Wu.",
"Maintainer" : "Dirk Eddelbuettel <[email protected]>",
"Title" : "Create Cryptographic Hash Digests of R Objects",
"Description" : "Implementation of a function 'digest()' for the creation \n of hash digests of arbitrary R objects (using the md5, sha-1, sha-256, \n crc32, xxhash and murmurhash algorithms) permitting easy comparison of R\n language objects, as well as a function 'hmac()' to create hash-based\n message authentication code.\n\n The md5 algorithm by Ron Rivest is specified in RFC 1321, the sha-1 \n and sha-256 algorithms are specified in FIPS-180-1 and FIPS-180-2, \n and the crc32 algorithm is described in \n ftp://ftp.rocksoft.com/cliens/rocksoft/papers/crc_v3.txt.\n\n For md5, sha-1, sha-256 and aes, this package uses small standalone\n implementations that were provided by Christophe Devine. For crc32, code\n from the zlib library is used. For sha-512, an implementation by Aaron\n D. Gifford is used. For xxHash, the implementation by Yann Collet is used.\n For murmurhash, an implementation by Shane Day is used.\n\n Please note that this package is not meant to be deployed for \n cryptographic purposes for which more comprehensive (and widely \n tested) libraries such as OpenSSL should be used.",
"Depends" : "R (>= 2.4.1)",
"License" : "GPL-2",
"URL" : "http://dirk.eddelbuettel.com/code/digest.html",
"Packaged" : "2014-12-31 01:14:41.779054 UTC; edd",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2014-12-31 07:47:27",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-06-30 15:07:23 UTC; windows"
}
},
"dplyr" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "dplyr",
"Type" : "Package",
"Version" : "0.4.2",
"Title" : "A Grammar of Data Manipulation",
"Description" : "A fast, consistent tool for working with data frame like objects,\n both in memory and out of memory.",
"Authors@R" : "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(\"Romain\", \"Francois\", , \"[email protected]\", role = \"aut\"),\n person(\"RStudio\", role = \"cph\")\n )",
"URL" : "https://github.com/hadley/dplyr",
"BugReports" : "https://github.com/hadley/dplyr/issues",
"Depends" : "R (>= 3.1.2)",
"Imports" : "assertthat, utils, R6, Rcpp, magrittr, lazyeval (>= 0.1.10),\nDBI (>= 0.3)",
"Suggests" : "RSQLite (>= 1.0.0), RMySQL, RPostgreSQL, data.table,\ntestthat, knitr, microbenchmark, ggplot2, mgcv, Lahman (>=\n3.0-1), nycflights13, methods",
"VignetteBuilder" : "knitr",
"LazyData" : "yes",
"LinkingTo" : "Rcpp (>= 0.11.6), BH (>= 1.58.0-1)",
"License" : "MIT + file LICENSE",
"Collate" : "'RcppExports.R' 'all-equal.r' 'bench-compare.r' 'chain.r'\n'cluster.R' 'colwise.R' 'compute-collect.r' 'copy-to.r'\n'data-lahman.r' 'data-nasa.r' 'data-nycflights13.r'\n'data-temp.r' 'data.r' 'dataframe.R' 'dbi-s3.r' 'desc.r'\n'distinct.R' 'do.r' 'dplyr.r' 'explain.r' 'failwith.r' 'funs.R'\n'glimpse.R' 'group-by.r' 'group-indices.R' 'group-size.r'\n'grouped-df.r' 'grouped-dt.r' 'id.r' 'inline.r' 'join.r'\n'lead-lag.R' 'location.R' 'manip.r' 'nth-value.R' 'order-by.R'\n'over.R' 'partial-eval.r' 'progress.R' 'query.r' 'rank.R'\n'rbind.r' 'rowwise.r' 'sample.R' 'select-utils.R'\n'select-vars.R' 'sets.r' 'sql-escape.r' 'sql-star.r'\n'src-local.r' 'src-mysql.r' 'src-postgres.r' 'src-sql.r'\n'src-sqlite.r' 'src.r' 'tally.R' 'tbl-cube.r' 'tbl-df.r'\n'tbl-dt.r' 'tbl-sql.r' 'tbl.r' 'top-n.R'\n'translate-sql-helpers.r' 'translate-sql-base.r'\n'translate-sql-window.r' 'translate-sql.r' 'type-sum.r'\n'utils-dt.R' 'utils-format.r' 'utils.r' 'view.r' 'zzz.r'",
"NeedsCompilation" : "yes",
"Packaged" : "2015-06-15 22:27:30 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre],\n Romain Francois [aut],\n RStudio [cph]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2015-06-16 11:24:05",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-08-06 03:13:42 UTC; windows"
}
},
"gdata" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "gdata",
"Title" : "Various R Programming Tools for Data Manipulation",
"Description" : "Various R programming tools for data manipulation, including:\n - medical unit conversions ('ConvertMedUnits', 'MedUnits'),\n - combining objects ('bindData', 'cbindX', 'combine', 'interleave'),\n - character vector operations ('centerText', 'startsWith', 'trim'),\n - factor manipulation ('levels', 'reorder.factor', 'mapLevels'),\n - obtaining information about R objects ('object.size', 'elem', 'env',\n 'humanReadable', 'is.what', 'll', 'keep', 'ls.funs',\n 'Args','nPairs', 'nobs'),\n - manipulating MS-Excel formatted files ('read.xls',\n 'installXLSXsupport', 'sheetCount', 'xlsFormats'),\n - generating fixed-width format files ('write.fwf'),\n - extricating components of date & time objects ('getYear', 'getMonth',\n 'getDay', 'getHour', 'getMin', 'getSec'),\n - operations on columns of data frames ('matchcols', 'rename.vars'),\n - matrix operations ('unmatrix', 'upperTriangle', 'lowerTriangle'),\n - operations on vectors ('case', 'unknownToNA', 'duplicated2', 'trimSum'),\n - operations on data frames ('frameApply', 'wideByFactor'),\n - value of last evaluated expression ('ans'), and\n - wrapper for 'sample' that ensures consistent behavior for both\n scalar and vector arguments ('resample').",
"Depends" : "R (>= 2.3.0)",
"SystemRequirements" : "perl (>= 5.10.0)",
"Imports" : "gtools, stats, methods, utils",
"Version" : "2.17.0",
"Date" : "2015-07-02",
"Author" : "Gregory R. Warnes, Ben Bolker, Gregor Gorjanc, Gabor\n Grothendieck, Ales Korosec, Thomas Lumley, Don MacQueen, Arni\n Magnusson, Jim Rogers, and others",
"Maintainer" : "Gregory R. Warnes <[email protected]>",
"License" : "GPL-2",
"NeedsCompilation" : "no",
"Suggests" : "RUnit",
"Packaged" : "2015-07-03 23:13:13 UTC; warnes",
"Repository" : "CRAN",
"Date/Publication" : "2015-07-04 09:51:58",
"Built" : "R 3.2.2; ; 2015-10-15 02:35:30 UTC; windows"
}
},
"ggplot2" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "ggplot2",
"Type" : "Package",
"Title" : "An Implementation of the Grammar of Graphics",
"Version" : "1.0.1",
"Authors@R" : "c(\n person(\"Hadley\", \"Wickham\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(\"Winston\", \"Chang\", role = \"aut\", email = \"[email protected]\")\n )",
"Description" : "An implementation of the grammar of graphics\n in R. It combines the advantages of both base and\n lattice graphics: conditioning and shared axes are\n handled automatically, and you can still build up a\n plot step by step from multiple data sources. It also\n implements a sophisticated multidimensional\n conditioning system and a consistent interface to map\n data to aesthetic attributes. See http://ggplot2.org\n for more information, documentation and examples.",
"Depends" : "R (>= 2.14), stats, methods",
"Imports" : "plyr (>= 1.7.1), digest, grid, gtable (>= 0.1.1), reshape2,\nscales (>= 0.2.3), proto, MASS",
"Suggests" : "quantreg, Hmisc, mapproj, maps, hexbin, maptools, multcomp,\nnlme, testthat, knitr, mgcv",
"VignetteBuilder" : "knitr",
"Enhances" : "sp",
"License" : "GPL-2",
"URL" : "http://ggplot2.org, https://github.com/hadley/ggplot2",
"BugReports" : "https://github.com/hadley/ggplot2/issues",
"LazyData" : "true",
"Collate" : "'aaa-.r' 'aaa-constants.r' 'aes-calculated.r'\n'aes-colour-fill-alpha.r' 'aes-group-order.r'\n'aes-linetype-size-shape.r' 'aes-position.r' 'aes.r' 'geom-.r'\n'annotation-custom.r' 'annotation-logticks.r' 'geom-polygon.r'\n'geom-map.r' 'annotation-map.r' 'geom-raster.r'\n'annotation-raster.r' 'annotation.r' 'autoplot.r' 'bench.r'\n'coord-.r' 'coord-cartesian-.r' 'coord-fixed.r' 'coord-flip.r'\n'coord-map.r' 'coord-munch.r' 'coord-polar.r'\n'coord-quickmap.R' 'coord-transform.r' 'facet-.r'\n'facet-grid-.r' 'facet-labels.r' 'facet-layout.r'\n'facet-locate.r' 'facet-null.r' 'facet-viewports.r'\n'facet-wrap.r' 'fortify-lm.r' 'fortify-map.r'\n'fortify-multcomp.r' 'fortify-spatial.r' 'fortify.r'\n'geom-abline.r' 'geom-bar-.r' 'geom-bar-histogram.r'\n'geom-bin2d.r' 'geom-blank.r' 'geom-boxplot.r'\n'geom-crossbar.r' 'geom-defaults.r' 'geom-dotplot.r'\n'geom-error.r' 'geom-errorh.r' 'geom-freqpoly.r' 'geom-hex.r'\n'geom-hline.r' 'geom-linerange.r' 'geom-path-.r'\n'geom-path-contour.r' 'geom-path-density2d.r'\n'geom-path-line.r' 'geom-path-step.r' 'geom-point-.r'\n'geom-point-jitter.r' 'geom-pointrange.r' 'geom-quantile.r'\n'geom-rect.r' 'geom-ribbon-.r' 'geom-ribbon-density.r'\n'geom-rug.r' 'geom-segment.r' 'geom-smooth.r' 'geom-text.r'\n'geom-tile.r' 'geom-violin.r' 'geom-vline.r' 'ggplot2.r'\n'grob-absolute.r' 'grob-dotstack.r' 'grob-null.r'\n'guide-colorbar.r' 'guide-legend.r' 'guides-.r' 'guides-axis.r'\n'guides-grid.r' 'labels.r' 'layer.r' 'limits.r' 'panel.r'\n'plot-build.r' 'plot-construction.r' 'plot-last.r'\n'plot-render.r' 'plot.r' 'position-.r' 'position-collide.r'\n'position-dodge.r' 'position-fill.r' 'position-identity.r'\n'position-jitter.r' 'position-jitterdodge.R' 'position-stack.r'\n'quick-plot.r' 'save.r' 'scale-.r' 'scale-alpha.r'\n'scale-area.r' 'scale-brewer.r' 'scale-continuous.r'\n'scale-date.r' 'scale-datetime.r' 'scale-discrete-.r'\n'scale-gradient.r' 'scale-gradient2.r' 'scale-gradientn.r'\n'scale-grey.r' 'scale-hue.r' 'scale-identity.r'\n'scale-linetype.r' 'scale-manual.r' 'scale-shape.r'\n'scale-size.r' 'scales-.r' 'stat-.r' 'stat-bin.r'\n'stat-bin2d.r' 'stat-bindot.r' 'stat-binhex.r' 'stat-boxplot.r'\n'stat-contour.r' 'stat-density-2d.r' 'stat-density.r'\n'stat-ecdf.r' 'stat-ellipse.R' 'stat-function.r'\n'stat-identity.r' 'stat-qq.r' 'stat-quantile.r'\n'stat-smooth-methods.r' 'stat-smooth.r' 'stat-spoke.r'\n'stat-sum.r' 'stat-summary-2d.r' 'stat-summary-hex.r'\n'stat-summary.r' 'stat-unique.r' 'stat-vline.r'\n'stat-ydensity.r' 'summary.r' 'templates.r' 'theme-defaults.r'\n'theme-elements.r' 'theme.r' 'translate-qplot-base.r'\n'translate-qplot-ggplot.r' 'translate-qplot-gpl.r'\n'translate-qplot-lattice.r' 'utilities-break.r'\n'utilities-grid.r' 'utilities-help.r' 'utilities-layer.r'\n'utilities-matrix.r' 'utilities-resolution.r'\n'utilities-table.r' 'utilities.r' 'xxx-digest.r' 'zxx.r'\n'zzz.r'",
"Packaged" : "2015-03-16 20:29:42 UTC; winston",
"Author" : "Hadley Wickham [aut, cre],\n Winston Chang [aut]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2015-03-17 17:49:38",
"Built" : "R 3.2.1; ; 2015-08-09 03:53:20 UTC; windows"
}
},
"gsubfn" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "gsubfn",
"Version" : "0.6-6",
"Date" : "2014-08-23",
"Title" : "Utilities for strings and function arguments.",
"Author" : "G. Grothendieck",
"Maintainer" : "G. Grothendieck <[email protected]>",
"Description" : "gsubfn is like gsub but can take a replacement function\n or certain other objects instead of the replacement string.\n Matches and back references are input to the replacement function and \n replaced by the function output. gsubfn can be used to split strings \n based on content rather than delimiters and for quasi-perl-style string \n interpolation. The package also has facilities for translating formulas \n to functions and allowing such formulas in function calls instead of \n functions. This can be used with R functions such as apply, sapply,\n lapply, optim, integrate, xyplot, Filter and any other function that \n expects another function as an input argument or functions like cat\n or sql calls that may involve strings where substitution is desirable.",
"ByteCompile" : "true",
"Depends" : "R (>= 2.15.0), proto",
"Suggests" : "boot, chron, doBy, grid, lattice, quantreg, reshape, svUnit,\ntcltk, zoo",
"License" : "GPL (>= 2)",
"URL" : "http://gsubfn.googlecode.com",
"Packaged" : "2014-08-23 12:40:54 UTC; Louis",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2014-08-27 21:17:14",
"Built" : "R 3.2.2; ; 2015-10-30 03:38:58 UTC; windows"
}
},
"gtable" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "gtable",
"Type" : "Package",
"Title" : "Arrange grobs in tables.",
"Version" : "0.1.2",
"Author" : "Hadley Wickham <[email protected]>",
"Maintainer" : "Hadley Wickham <[email protected]>",
"Description" : "Tools to make it easier to work with \"tables\" of grobs.",
"Depends" : "R (>= 2.14), grid",
"Suggests" : "testthat, plyr",
"License" : "GPL-2",
"Collate" : "'add-grob.r' 'add-rows-cols.r' 'add-space.r' 'grid.r'\n'gtable-layouts.r' 'gtable.r' 'rbind-cbind.r' 'utils.r'\n'trim.r' 'filter.r' 'align.r' 'padding.r' 'z.r'",
"Packaged" : "2012-12-04 23:12:46 UTC; hadley",
"Repository" : "CRAN",
"Date/Publication" : "2012-12-05 13:11:37",
"Built" : "R 3.2.1; ; 2015-08-09 02:30:50 UTC; windows"
}
},
"gtools" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "gtools",
"Title" : "Various R Programming Tools",
"Description" : "Functions to assist in R programming, including:\n - assist in developing, updating, and maintaining R and R packages ('ask', 'checkRVersion',\n 'getDependencies', 'keywords', 'scat'),\n - calculate the logit and inverse logit transformations ('logit', 'inv.logit'),\n - test if a value is missing, empty or contains only NA and NULL values ('invalid'),\n - manipulate R's .Last function ('addLast'),\n - define macros ('defmacro'),\n - detect odd and even integers ('odd', 'even'),\n - convert strings containing non-ASCII characters (like single quotes) to plain ASCII ('ASCIIfy'),\n - perform a binary search ('binsearch'),\n - sort strings containing both numeric and character components ('mixedsort'),\n - create a factor variable from the quantiles of a continuous variable ('quantcut'),\n - enumerate permutations and combinations ('combinations', 'permutation'),\n - calculate and convert between fold-change and log-ratio ('foldchange',\n 'logratio2foldchange', 'foldchange2logratio'),\n - calculate probabilities and generate random numbers from Dirichlet distributions\n ('rdirichlet', 'ddirichlet'),\n - apply a function over adjacent subsets of a vector ('running'),\n - modify the TCP\\_NODELAY ('de-Nagle') flag for socket objects,\n - efficient 'rbind' of data frames, even if the column names don't match ('smartbind'),\n - generate significance stars from p-values ('stars.pval'),\n - convert characters to/from ASCII codes.",
"Version" : "3.5.0",
"Date" : "2015-05-26",
"Author" : "Gregory R. Warnes, Ben Bolker, and Thomas Lumley",
"Maintainer" : "Gregory R. Warnes <[email protected]>",
"License" : "GPL-2",
"Repository" : "CRAN",
"Repository/R-Forge/Project" : "r-gregmisc",
"Repository/R-Forge/Revision" : "2048",
"Repository/R-Forge/DateTimeStamp" : "2015-05-27 16:38:37",
"Date/Publication" : "2015-05-29 10:36:40",
"NeedsCompilation" : "yes",
"Packaged" : "2015-05-27 16:45:10 UTC; rforge",
"Depends" : "R (>= 2.10)",
"Built" : "R 3.2.2; x86_64-w64-mingw32; 2015-08-15 15:42:24 UTC; windows"
}
},
"htmltools" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "htmltools",
"Type" : "Package",
"Title" : "Tools for HTML",
"Version" : "0.3.5",
"Date" : "2016-03-19",
"Author" : "RStudio, Inc.",
"Maintainer" : "Joe Cheng <[email protected]>",
"Description" : "Tools for HTML generation and output.",
"Depends" : "R (>= 2.14.1)",
"Imports" : "utils, digest, Rcpp",
"Suggests" : "markdown, testthat",
"Enhances" : "knitr",
"License" : "GPL (>= 2)",
"URL" : "https://github.com/rstudio/htmltools",
"BugReports" : "https://github.com/rstudio/htmltools/issues",
"RoxygenNote" : "5.0.1",
"LinkingTo" : "Rcpp",
"NeedsCompilation" : "yes",
"Packaged" : "2016-03-21 21:26:31 UTC; jcheng",
"Repository" : "CRAN",
"Date/Publication" : "2016-03-21 23:36:11",
"Built" : "R 3.2.5; x86_64-w64-mingw32; 2016-08-18 17:32:46 UTC; windows"
}
},
"httpuv" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "httpuv",
"Type" : "Package",
"Title" : "HTTP and WebSocket Server Library",
"Version" : "1.3.3",
"Date" : "2015-08-03",
"Author" : "RStudio, Inc.",
"Copyright" : "RStudio, Inc.; Joyent, Inc.; Nginx Inc.; Igor Sysoev; Niels\nProvos; Internet Systems Consortium, Inc.; Alexander Chemeris",
"Maintainer" : "Joe Cheng <[email protected]>",
"Description" : "Provides low-level socket and protocol support for handling\n HTTP and WebSocket requests directly from within R. It is primarily\n intended as a building block for other packages, rather than making it\n particularly easy to create complete web applications using httpuv alone.\n httpuv is built on top of the libuv and http-parser C libraries, both of\n which were developed by Joyent, Inc. (See LICENSE file for libuv and\n http-parser license information.)",
"License" : "GPL-3 | file LICENSE",
"Depends" : "R (>= 2.15.1), methods",
"Imports" : "Rcpp (>= 0.11.0), utils",
"LinkingTo" : "Rcpp",
"URL" : "https://github.com/rstudio/httpuv",
"SystemRequirements" : "GNU make",
"NeedsCompilation" : "yes",
"Packaged" : "2015-08-03 18:49:59 UTC; jcheng",
"Repository" : "CRAN",
"Date/Publication" : "2015-08-04 00:32:50",
"Built" : "R 3.2.2; x86_64-w64-mingw32; 2015-11-16 03:42:15 UTC; windows"
}
},
"jsonlite" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "jsonlite",
"Version" : "0.9.17",
"Title" : "A Robust, High Performance JSON Parser and Generator for R",
"License" : "MIT + file LICENSE",
"NeedsCompilation" : "yes",
"Depends" : "methods",
"Author" : "Jeroen Ooms, Duncan Temple Lang, Lloyd Hilaiel",
"URL" : "http://arxiv.org/abs/1403.2805,\nhttps://www.opencpu.org/posts/jsonlite-a-smarter-json-encoder",
"BugReports" : "http://github.com/jeroenooms/jsonlite/issues",
"Maintainer" : "Jeroen Ooms <[email protected]>",
"VignetteBuilder" : "knitr, R.rsp",
"Description" : "A fast JSON parser and generator optimized for statistical data\n and the web. Started out as a fork of 'RJSONIO', but has been completely\n rewritten in recent versions. The package offers flexible, robust, high\n performance tools for working with JSON in R and is particularly powerful\n for building pipelines and interacting with a web API. The implementation is\n based on the mapping described in the vignette (Ooms, 2014). In addition to\n converting JSON data from/to R objects, 'jsonlite' contains functions to\n stream, validate, and prettify JSON data. The unit tests included with the\n package verify that all edge cases are encoded and decoded consistently for\n use with dynamic data in systems and applications.",
"Suggests" : "curl (>= 0.5), plyr, testthat, knitr, rmarkdown, R.rsp",
"Packaged" : "2015-09-06 15:12:14 UTC; jeroen",
"Repository" : "CRAN",
"Date/Publication" : "2015-09-06 19:30:57",
"Built" : "R 3.2.2; x86_64-w64-mingw32; 2015-10-10 02:36:44 UTC; windows"
}
},
"labeling" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "labeling",
"Type" : "Package",
"Title" : "Axis Labeling",
"Version" : "0.3",
"Date" : "2014-08-22",
"Author" : "Justin Talbot",
"Maintainer" : "Justin Talbot <[email protected]>",
"Description" : "Provides a range of axis labeling algorithms",
"License" : "MIT + file LICENSE | Unlimited",
"LazyLoad" : "no",
"Collate" : "'labeling.R'",
"Repository" : "CRAN",
"Repository/R-Forge/Project" : "labeling",
"Repository/R-Forge/Revision" : "16",
"Repository/R-Forge/DateTimeStamp" : "2014-08-23 05:53:23",
"Date/Publication" : "2014-08-23 14:57:53",
"Packaged" : "2014-08-23 06:15:07 UTC; rforge",
"NeedsCompilation" : "no",
"Built" : "R 3.2.1; ; 2015-06-30 15:07:23 UTC; windows"
}
},
"lazyeval" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "lazyeval",
"Version" : "0.1.10",
"Title" : "Lazy (Non-Standard) Evaluation",
"Description" : "A disciplined approach to non-standard evaluation.",
"Authors@R" : "as.person(c(\n \"Hadley Wickham <[email protected]> [aut,cre]\",\n \"RStudio [cph]\"\n ))",
"License" : "GPL-3",
"LazyData" : "true",
"Depends" : "R (>= 3.1.0)",
"Suggests" : "knitr, rmarkdown (>= 0.2.65), microbenchmark, testthat",
"VignetteBuilder" : "knitr",
"Packaged" : "2015-01-02 16:57:33 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2015-01-02 18:01:12",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-08-06 02:32:28 UTC; windows"
}
},
"magrittr" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "magrittr",
"Type" : "Package",
"Title" : "A Forward-Pipe Operator for R",
"Version" : "1.5",
"Author" : "Stefan Milton Bache <[email protected]> and\n Hadley Wickham <[email protected]>",
"Maintainer" : "Stefan Milton Bache <[email protected]>",
"Description" : "Provides a mechanism for chaining commands with a\n new forward-pipe operator, %>%. This operator will forward a\n value, or the result of an expression, into the next function\n call/expression. There is flexible support for the type\n of right-hand side expressions. For more information, see\n package vignette.\n To quote Rene Magritte, \"Ceci n'est pas un pipe.\"",
"Suggests" : "testthat, knitr",
"VignetteBuilder" : "knitr",
"License" : "MIT + file LICENSE",
"ByteCompile" : "Yes",
"Packaged" : "2014-11-22 08:50:53 UTC; shb",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2014-11-22 19:15:57",
"Built" : "R 3.2.1; ; 2015-08-06 02:32:22 UTC; windows"
}
},
"mime" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "mime",
"Type" : "Package",
"Title" : "Map Filenames to MIME Types",
"Version" : "0.4",
"Date" : "2015-09-03",
"Authors@R" : "c(person(\"Jeffrey\", \"Horner\", role = \"ctb\"),\n person(\"Yihui\", \"Xie\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"))",
"Maintainer" : "Yihui Xie <[email protected]>",
"Description" : "Guesses the MIME type from a filename extension using the data\n derived from /etc/mime.types in UNIX-type systems.",
"Imports" : "tools",
"License" : "GPL-2",
"URL" : "https://github.com/yihui/mime",
"BugReports" : "https://github.com/yihui/mime/issues",
"LazyData" : "TRUE",
"NeedsCompilation" : "yes",
"Packaged" : "2015-09-02 15:25:52 UTC; yihui",
"Author" : "Jeffrey Horner [ctb],\n Yihui Xie [aut, cre]",
"Repository" : "CRAN",
"Date/Publication" : "2015-09-03 12:20:19",
"Built" : "R 3.2.2; x86_64-w64-mingw32; 2015-09-04 02:20:53 UTC; windows"
}
},
"miniUI" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "miniUI",
"Type" : "Package",
"Title" : "Shiny UI Widgets for Small Screens",
"Version" : "0.1.1",
"Authors@R" : "c(\n person(\"Joe\", \"Cheng\", role = c(\"cre\", \"aut\"), email = \"[email protected]\"),\n person(family = \"RStudio\", role = \"cph\")\n )",
"Description" : "Provides UI widget and layout functions for writing Shiny apps\n that work well on small screens.",
"License" : "GPL-3",
"LazyData" : "TRUE",
"Imports" : "shiny (>= 0.13), htmltools (>= 0.3), utils",
"RoxygenNote" : "5.0.1",
"NeedsCompilation" : "no",
"Packaged" : "2016-01-15 17:31:47 UTC; jcheng",
"Author" : "Joe Cheng [cre, aut],\n RStudio [cph]",
"Maintainer" : "Joe Cheng <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2016-01-15 19:33:16",
"Built" : "R 3.2.5; ; 2016-08-18 18:13:43 UTC; windows"
}
},
"munsell" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "munsell",
"Type" : "Package",
"Title" : "Munsell colour system",
"Version" : "0.4.2",
"Author" : "Charlotte Wickham <[email protected]>",
"Maintainer" : "Charlotte Wickham <[email protected]>",
"Description" : "Functions for exploring and using the Munsell\n colour system",
"Suggests" : "ggplot2 (>= 0.9.2)",
"Imports" : "colorspace",
"License" : "MIT + file LICENSE",
"Collate" : "'alter.r' 'check.r' 'convert.r' 'munsell.r' 'plot.r'",
"Packaged" : "2013-07-08 19:19:22 UTC; wickhamc",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2013-07-11 20:15:53",
"Built" : "R 3.2.1; ; 2015-08-09 03:04:01 UTC; windows"
}
},
"packrat" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "packrat",
"Type" : "Package",
"Title" : "A Dependency Management System for Projects and their R Package\nDependencies",
"Version" : "0.4.8-1",
"Author" : "Kevin Ushey, Jonathan McPherson, Joe Cheng, Aron Atkins, JJ Allaire",
"Maintainer" : "Kevin Ushey <[email protected]>",
"Description" : "Manage the R packages your project depends\n on in an isolated, portable, and reproducible way.",
"License" : "GPL-2",
"Depends" : "R (>= 3.0.0)",
"Imports" : "tools, utils",
"Suggests" : "testthat (>= 0.7), devtools, httr, knitr, rmarkdown",
"Enhances" : "BiocInstaller",
"URL" : "https://github.com/rstudio/packrat/",
"BugReports" : "https://github.com/rstudio/packrat/issues",
"RoxygenNote" : "5.0.1",
"NeedsCompilation" : "no",
"Packaged" : "2016-09-07 21:30:04 UTC; kevin",
"Repository" : "CRAN",
"Date/Publication" : "2016-09-07 23:37:52",
"Built" : "R 3.2.5; ; 2016-11-30 18:02:44 UTC; windows"
}
},
"plyr" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "plyr",
"Version" : "1.8.3",
"Title" : "Tools for Splitting, Applying and Combining Data",
"Description" : "A set of tools that solves a common set of problems: you\n need to break a big problem down into manageable pieces, operate on each\n piece and then put all the pieces back together. For example, you might\n want to fit a model to each spatial location or time point in your study,\n summarise data by panels or collapse high-dimensional arrays to simpler\n summary statistics. The development of 'plyr' has been generously supported\n by 'Becton Dickinson'.",
"Authors@R" : "person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\"))",
"URL" : "http://had.co.nz/plyr, https://github.com/hadley/plyr",
"BugReports" : "https://github.com/hadley/plyr/issues",
"Depends" : "R (>= 3.1.0)",
"Imports" : "Rcpp (>= 0.11.0)",
"LinkingTo" : "Rcpp",
"Suggests" : "abind, testthat, tcltk, foreach, doParallel, itertools,\niterators",
"License" : "MIT + file LICENSE",
"LazyData" : "true",
"NeedsCompilation" : "yes",
"Packaged" : "2015-06-11 13:04:58 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2015-06-12 11:05:51",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-08-06 03:13:06 UTC; windows"
}
},
"proto" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "proto",
"Version" : "0.3-10",
"Date" : "2012-12-21",
"Title" : "Prototype object-based programming",
"Author" : "Louis Kates, Thomas Petzoldt",
"Maintainer" : "Gabor Grothendieck <[email protected]>",
"Description" : "An object oriented system using object-based, also called\n prototype-based, rather than class-based object oriented ideas.",
"Suggests" : "graph, Rgraphviz",
"License" : "GPL-2",
"URL" : "http://r-proto.googlecode.com",
"Packaged" : "2012-12-22 16:03:20 UTC; Louis",
"Repository" : "CRAN",
"Date/Publication" : "2012-12-22 21:51:44",
"Built" : "R 3.2.1; ; 2015-06-30 15:07:23 UTC; windows"
}
},
"reshape2" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "reshape2",
"Title" : "Flexibly Reshape Data: A Reboot of the Reshape Package.",
"Version" : "1.4.1",
"Author" : "Hadley Wickham <[email protected]>",
"Maintainer" : "Hadley Wickham <[email protected]>",
"Description" : "Flexibly restructure and aggregate data using just two\n functions: melt and dcast (or acast).",
"URL" : "https://github.com/hadley/reshape",
"BugReports" : "https://github.com/hadley/reshape/issues",
"LinkingTo" : "Rcpp",
"Imports" : "plyr (>= 1.8.1), stringr, Rcpp",
"Suggests" : "testthat (>= 0.8.0), lattice",
"License" : "MIT + file LICENSE",
"LazyData" : "true",
"Packaged" : "2014-12-05 16:34:10 UTC; hadley",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2014-12-06 06:56:59",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-08-06 03:46:50 UTC; windows"
}
},
"scales" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "scales",
"Version" : "0.2.5",
"Authors@R" : "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\")),\n person(\"RStudio\", role = \"cph\")\n )",
"Title" : "Scale Functions for Visualization",
"Description" : "Graphical scales map data to aesthetics, and provide\n methods for automatically determining breaks and labels\n for axes and legends.",
"URL" : "https://github.com/hadley/scales",
"BugReports" : "https://github.com/hadley/scales/issues",
"Depends" : "R (>= 2.13)",
"Imports" : "RColorBrewer, dichromat, plyr, munsell (>= 0.2), labeling,\nmethods, Rcpp",
"LinkingTo" : "Rcpp",
"Suggests" : "testthat (>= 0.8)",
"License" : "MIT + file LICENSE",
"LazyLoad" : "yes",
"NeedsCompilation" : "yes",
"Packaged" : "2015-06-12 16:14:42 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2015-06-12 23:50:17",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-08-09 03:35:09 UTC; windows"
}
},
"shiny" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "shiny",
"Type" : "Package",
"Title" : "Web Application Framework for R",
"Version" : "0.13.2",
"Date" : "2016-03-28",
"Authors@R" : "c(\n person(\"Winston\", \"Chang\", role = c(\"aut\", \"cre\"), email = \"[email protected]\"),\n person(\"Joe\", \"Cheng\", role = \"aut\", email = \"[email protected]\"),\n person(\"JJ\", \"Allaire\", role = \"aut\", email = \"[email protected]\"),\n person(\"Yihui\", \"Xie\", role = \"aut\", email = \"[email protected]\"),\n person(\"Jonathan\", \"McPherson\", role = \"aut\", email = \"[email protected]\"),\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(family = \"jQuery UI contributors\", role = c(\"ctb\", \"cph\"),\n comment = \"jQuery UI library; authors listed in inst/www/shared/jqueryui/1.10.4/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(\"Alexander\", \"Farkas\", role = c(\"ctb\", \"cph\"),\n comment = \"html5shiv library\"),\n person(\"Scott\", \"Jehl\", role = c(\"ctb\", \"cph\"),\n comment = \"Respond.js library\"),\n person(\"Stefan\", \"Petre\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Andrew\", \"Rowls\", role = c(\"ctb\", \"cph\"),\n comment = \"Bootstrap-datepicker library\"),\n person(\"Dave\", \"Gandy\", role = c(\"ctb\", \"cph\"),\n comment = \"Font-Awesome font\"),\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 person(family = \"SpryMedia Limited\", role = c(\"ctb\", \"cph\"),\n comment = \"DataTables library\"),\n person(\"John\", \"Fraser\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"John\", \"Gruber\", role = c(\"ctb\", \"cph\"),\n comment = \"showdown.js library\"),\n person(\"Ivan\", \"Sagalaev\", role = c(\"ctb\", \"cph\"),\n comment = \"highlight.js library\"),\n person(family = \"R Core Team\", role = c(\"ctb\", \"cph\"),\n comment = \"tar implementation from R\")\n )",
"Description" : "Makes it incredibly easy to build interactive web\n applications with R. Automatic \"reactive\" binding between inputs and\n outputs and extensive pre-built widgets make it possible to build\n beautiful, responsive, and powerful applications with minimal effort.",
"License" : "GPL-3 | file LICENSE",
"Depends" : "R (>= 3.0.0), methods",
"Imports" : "utils, httpuv (>= 1.3.3), mime (>= 0.3), jsonlite (>= 0.9.16),\nxtable, digest, htmltools (>= 0.3), R6 (>= 2.0)",
"Suggests" : "datasets, Cairo (>= 1.5-5), testthat, knitr (>= 1.6),\nmarkdown, rmarkdown, ggplot2",
"URL" : "http://shiny.rstudio.com",
"BugReports" : "https://github.com/rstudio/shiny/issues",
"VignetteBuilder" : "knitr",
"Collate" : "'app.R' 'bootstrap-layout.R' 'conditions.R' 'map.R'\n'globals.R' 'utils.R' 'bootstrap.R' 'cache.R' 'fileupload.R'\n'stack.R' 'graph.R' 'hooks.R' 'html-deps.R' 'htmltools.R'\n'image-interact-opts.R' 'image-interact.R' 'imageutils.R'\n'input-action.R' 'input-checkbox.R' 'input-checkboxgroup.R'\n'input-date.R' 'input-daterange.R' 'input-file.R'\n'input-numeric.R' 'input-password.R' 'input-radiobuttons.R'\n'input-select.R' 'input-slider.R' 'input-submit.R'\n'input-text.R' 'input-utils.R' 'jqueryui.R'\n'middleware-shiny.R' 'middleware.R' 'modules.R'\n'priorityqueue.R' 'progress.R' 'react.R' 'reactive-domains.R'\n'reactives.R' 'render-plot.R' 'render-table.R' 'run-url.R'\n'server-input-handlers.R' 'server.R' 'shiny.R' 'shinyui.R'\n'shinywrappers.R' 'showcase.R' 'tar.R' 'timer.R'\n'update-input.R'",
"RoxygenNote" : "5.0.1",
"NeedsCompilation" : "no",
"Packaged" : "2016-03-28 15:21:34 UTC; winston",
"Author" : "Winston Chang [aut, cre],\n Joe Cheng [aut],\n JJ Allaire [aut],\n Yihui Xie [aut],\n Jonathan McPherson [aut],\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 jQuery UI contributors [ctb, cph] (jQuery UI library; authors listed in\n inst/www/shared/jqueryui/1.10.4/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 Alexander Farkas [ctb, cph] (html5shiv library),\n Scott Jehl [ctb, cph] (Respond.js library),\n Stefan Petre [ctb, cph] (Bootstrap-datepicker library),\n Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),\n Dave Gandy [ctb, cph] (Font-Awesome font),\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),\n SpryMedia Limited [ctb, cph] (DataTables library),\n John Fraser [ctb, cph] (showdown.js library),\n John Gruber [ctb, cph] (showdown.js library),\n Ivan Sagalaev [ctb, cph] (highlight.js library),\n R Core Team [ctb, cph] (tar implementation from R)",
"Maintainer" : "Winston Chang <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2016-03-28 18:59:41",
"Built" : "R 3.2.5; ; 2016-08-18 18:11:24 UTC; windows"
}
},
"shinyBS" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "shinyBS",
"Type" : "Package",
"Title" : "Twitter Bootstrap Components for Shiny",
"Version" : "0.61",
"Date" : "2015-03-30",
"Author" : "Eric Bailey",
"Maintainer" : "Eric Bailey <[email protected]>",
"Description" : "Adds additional Twitter Bootstrap components to Shiny. ",
"Imports" : "shiny (>= 0.11), htmltools",
"URL" : "https://ebailey78.github.io/shinyBS",
"BugReports" : "https://github.com/ebailey78/shinyBS/issues",
"License" : "GPL-3",
"Packaged" : "2015-03-30 12:16:24 UTC; ebailey",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2015-03-31 07:52:38",
"Built" : "R 3.2.3; ; 2016-01-26 03:02:31 UTC; windows"
}
},
"shinyjs" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "shinyjs",
"Title" : "Perform Common JavaScript Operations in Shiny Apps using Plain R\nCode",
"Version" : "0.6",
"Authors@R" : "person(\"Dean\", \"Attali\", email = \"[email protected]\",\n role = c(\"aut\", \"cre\"))",
"Description" : "Perform common JavaScript operations in Shiny applications without\n having to know any JavaScript. Examples include: hiding an element, disabling\n an input, resetting an input back to its original value, delaying code execution\n by a few seconds, and many more useful functions. 'shinyjs' also includes\n a colour picker widget, a colour picker RStudio addin, and can also be used to\n easily run your own custom JavaScript functions from R.",
"URL" : "https://github.com/daattali/shinyjs",
"BugReports" : "https://github.com/daattali/shinyjs/issues",
"Depends" : "R (>= 3.1.0)",
"Imports" : "digest (>= 0.6.8), htmltools (>= 0.2.6), miniUI (>= 0.1.1),\nshiny (>= 0.11.1), stats",
"Suggests" : "knitr (>= 1.7), rmarkdown, rstudioapi (>= 0.5), testthat (>=\n0.9.1), V8 (>= 0.6)",
"License" : "MIT + file LICENSE",
"SystemRequirements" : "pandoc with https support",
"LazyData" : "true",
"VignetteBuilder" : "knitr",
"RoxygenNote" : "5.0.1",
"NeedsCompilation" : "no",
"Packaged" : "2016-04-24 23:13:22 UTC; Dean",
"Author" : "Dean Attali [aut, cre]",
"Maintainer" : "Dean Attali <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2016-04-25 08:59:06",
"Built" : "R 3.2.5; ; 2016-08-18 18:46:31 UTC; windows"
}
},
"sqldf" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "sqldf",
"Version" : "0.4-10",
"Date" : "2014-10-31",
"Title" : "Perform SQL Selects on R Data Frames",
"Author" : "G. Grothendieck <[email protected]>",
"Maintainer" : "G. Grothendieck <[email protected]>",
"Description" : "Description: Manipulate R data frames using SQL.",
"ByteCompile" : "true",
"Depends" : "R (>= 3.1.0), gsubfn (>= 0.6), proto, RSQLite (>= 1.0.0)",
"Suggests" : "RH2, RMySQL, RPostgreSQL, svUnit, tcltk, MASS",
"Imports" : "DBI (>= 0.2-5), chron",
"License" : "GPL-2",
"BugReports" : "http://groups.google.com/group/sqldf",
"URL" : "http://sqldf.googlecode.com",
"Packaged" : "2014-11-06 23:43:55 UTC; Louis",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2014-11-07 01:01:50",
"Built" : "R 3.2.5; ; 2016-12-31 20:08:37 UTC; windows"
}
},
"stringi" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "stringi",
"Version" : "0.5-5",
"Date" : "2015-06-28",
"Title" : "Character String Processing Facilities",
"Description" : "Allows for fast, correct, consistent, portable,\n as well as convenient character string/text processing in every locale\n and any native encoding. Owing to the use of the ICU library,\n the package provides R users with platform-independent functions\n known to Java, Perl, Python, PHP, and Ruby programmers.\n Among available features there are: pattern searching\n (e.g. via regular expressions), random string generation,\n string collation, transliteration, concatenation,\n date-time formatting and parsing, etc.",
"URL" : "http://stringi.rexamine.com/ http://site.icu-project.org/\nhttp://www.unicode.org/",
"BugReports" : "http://github.com/Rexamine/stringi/issues",
"SystemRequirements" : "ICU4C (>= 50, optional)",
"Type" : "Package",
"Depends" : "R (>= 2.13.1)",
"Imports" : "tools, utils, stats",
"Biarch" : "TRUE",
"License" : "file LICENSE",
"Author" : "Marek Gagolewski and Bartek Tartanus (stringi source code);\n IBM and other contributors (ICU4C 55.1 source code);\n Unicode, Inc. (Unicode Character Database)",
"Maintainer" : "Marek Gagolewski <[email protected]>",
"NeedsCompilation" : "yes",
"Packaged" : "2015-06-28 20:51:37 UTC; gagolews",
"License_is_FOSS" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2015-06-29 07:40:06",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2015-06-30 15:07:27 UTC; windows"
}
},
"stringr" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "stringr",
"Version" : "1.0.0",
"Title" : "Simple, Consistent Wrappers for Common String Operations",
"Description" : "A consistent, simple and easy to use set of wrappers around the\n fantastic 'stringi' package. All function and argument names (and positions)\n are consistent, all functions deal with \"NA\"'s and zero length vectors\n in the same way, and the output from one function is easy to feed into\n the input of another.",
"Authors@R" : "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", c(\"aut\", \"cre\", \"cph\")),\n person(\"RStudio\", role = \"cph\")\n )",
"License" : "GPL-2",
"Depends" : "R (>= 2.14)",
"Imports" : "stringi (>= 0.4.1), magrittr",
"Suggests" : "testthat, knitr",
"VignetteBuilder" : "knitr",
"NeedsCompilation" : "no",
"Packaged" : "2015-04-29 12:46:34 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre, cph],\n RStudio [cph]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2015-04-30 11:48:24",
"Built" : "R 3.2.1; ; 2015-08-06 03:13:08 UTC; windows"
}
},
"tidyr" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "tidyr",
"Title" : "Easily Tidy Data with spread() and gather() Functions.",
"Version" : "0.2.0",
"Authors@R" : "as.person(c(\n \"Hadley Wickham <[email protected]> [aut, cre]\",\n \"RStudio [cph]\"\n ))",
"Description" : "An evolution of reshape2. It's designed specifically for data\n tidying (not general reshaping or aggregating) and works well with\n dplyr data pipelines.",
"Depends" : "R (>= 3.1.0)",
"License" : "MIT + file LICENSE",
"LazyData" : "true",
"Imports" : "reshape2, dplyr (>= 0.2), stringi, lazyeval",
"URL" : "https://github.com/hadley/tidyr",
"BugReports" : "https://github.com/hadley/tidyr/issues",
"Suggests" : "knitr, testthat",
"VignetteBuilder" : "knitr",
"Packaged" : "2014-12-05 16:52:20 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre],\n RStudio [cph]",
"Maintainer" : "Hadley Wickham <[email protected]>",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2014-12-05 18:03:26",
"Built" : "R 3.2.1; ; 2015-08-06 03:50:18 UTC; windows"
}
},
"xtable" : {
"Source" : "CRAN",
"Repository" : "https://cran.rstudio.com/",
"description" : {
"Package" : "xtable",
"Version" : "1.8-0",
"Date" : "2015-10-22",
"Title" : "Export Tables to LaTeX or HTML",
"Author" : "David B. Dahl <[email protected]>",
"Maintainer" : "David Scott <[email protected]>",
"Imports" : "stats, utils",
"Suggests" : "knitr",
"VignetteBuilder" : "knitr",
"Description" : "Coerce data to LaTeX and HTML tables.",
"URL" : "http://xtable.r-forge.r-project.org/",
"Depends" : "R (>= 2.10.0)",
"License" : "GPL (>= 2)",
"Repository" : "CRAN",
"NeedsCompilation" : "no",
"Packaged" : "2015-10-21 10:30:43 UTC; dsco036",
"Date/Publication" : "2015-11-02 11:47:44",
"Built" : "R 3.2.2; ; 2015-11-16 03:36:12 UTC; windows"
}
}
},
"files" : {
".RData" : {
"checksum" : "4665c3b786cca316c0df7774b532804d"
},
"app.R" : {
"checksum" : "7a04a6efa29245b7941f8cb339709a26"
},
"Chemistry/ChemistryServer.R" : {
"checksum" : "33621aa78962b1833252e77d9b61f13b"
},
"Chemistry/ChemistryUI.R" : {