-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
3909 lines (3909 loc) · 200 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" : "zh_TW",
"platform" : "3.2.5",
"metadata" : {
"appmode" : "shiny",
"primary_rmd" : null,
"primary_html" : null,
"content_category" : null,
"has_parameters" : false
},
"packages" : {
"BH" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "BH",
"Type" : "Package",
"Title" : "Boost C++ Header Files",
"Version" : "1.60.0-1",
"Date" : "2015-12-24",
"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.\n\n As of release 1.60, the following Boost libraries are included:\n algorithm any bind circular_buffer concept config container\n date_time detail dynamic_bitset exception filesystem foreach\n functional fusion geometry graph heap integer interprocess\n intrusive io iostreams iterator math move mpl multiprcecision\n numeric pending phoenix preprocessor random range smart_ptr\n spirit tuple type_trains typeof unordered utility uuid.",
"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-12-24 23:06:17.863401 UTC; edd",
"Repository" : "CRAN",
"Date/Publication" : "2015-12-28 15:03:07",
"Built" : "R 3.2.3; ; 2015-12-29 03:22:24 UTC; windows"
}
},
"DBI" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "DBI",
"Version" : "0.4-1",
"Date" : "2016-05-07",
"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, covr",
"Encoding" : "UTF-8",
"License" : "LGPL (>= 2)",
"URL" : "https://github.com/rstats-db/DBI",
"BugReports" : "https://github.com/rstats-db/DBI/issues",
"Collate" : "'DBObject.R' 'DBDriver.R' 'DBConnection.R' 'ANSI.R'\n'DBResult.R' 'data-types.R' 'data.R' 'deprecated.R'\n'interpolate.R' 'quote.R' 'rownames.R' 'table-create.R'\n'table-insert.R' 'table.R' 'transactions.R' 'util.R'",
"VignetteBuilder" : "knitr",
"RoxygenNote" : "5.0.1",
"NeedsCompilation" : "no",
"Packaged" : "2016-05-07 13:24:22 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-05-08 09:53:30",
"Built" : "R 3.2.5; ; 2016-07-02 16:38:59 UTC; windows"
}
},
"DSTrading" : {
"Source" : "github",
"Repository" : null,
"GithubRepo" : "DSTrading",
"GithubUsername" : "IlyaKipnis",
"GithubRef" : "master",
"GithubSha1" : "2a4268e18c17829356aea0e54e0da62656131606",
"description" : {
"Package" : "DSTrading",
"Type" : "Package",
"Title" : "Digital Signal Trading",
"Version" : "1.0",
"Date" : "2014-03-29",
"Author" : "Ilya Kipnis",
"Contributors" : "Kent Hoxsey, Brian Peterson",
"Maintainer" : "Ilya Kipnis <[email protected]>",
"Depends" : "\nxts (>= 0.9-3),\nRcpp,\ninline,\nTTR,\nquantmod,\nstats,\nquantstrat",
"Imports" : "\nRcpp (>= 0.11.1),\nxts,\nTTR,\nquantmod,\nstats,\ninline,\nquantstrat",
"LinkingTo" : "xts, Rcpp, inline, TTR, quantmod, stats",
"Description" : "DSP signal procssing technical trading rules.",
"License" : "GPL-2",
"Collate" : "\n'RcppExports.R'\n'AdaptiveMAs.R'\n'KAMA.R'\n'LRSI.R'\n'PMA.R'\n'RVI.R'\n'fisherTransform.R'\n'iTrend.R'\n'nlLaguerre.R'\n'utility.R'\n'CGO.R'\n'cyberCycle.R'\n'EhlersFilters.R'\n'VIDA.R'\n'KEMD.R'\n'FRAMA.R'\n'TrendVigor.R'\n'SWI.R'\n'GFRAMA.R'\n'ACP.R'\n'CyclicOscillators.R'",
"Packaged" : "2014-04-03 18:40:09.867142 UTC; ikipnis",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2016-03-04 17:13:21 UTC; windows",
"RemoteType" : "github",
"RemoteHost" : "api.github.com",
"RemoteRepo" : "DSTrading",
"RemoteUsername" : "IlyaKipnis",
"RemoteRef" : "master",
"RemoteSha" : "2a4268e18c17829356aea0e54e0da62656131606",
"GithubRepo" : "DSTrading",
"GithubUsername" : "IlyaKipnis",
"GithubRef" : "master",
"GithubSHA1" : "2a4268e18c17829356aea0e54e0da62656131606"
}
},
"FinancialInstrument" : {
"Source" : "github",
"Repository" : null,
"GithubRepo" : "FinancialInstrument",
"GithubUsername" : "braverock",
"GithubRef" : "master",
"GithubSha1" : "98bcf09fc80e25611897404dcd59321ef67850ac",
"description" : {
"Copyright" : "(c) 2004 - 2018",
"Package" : "FinancialInstrument",
"Maintainer" : "Ross Bennett <[email protected]>",
"License" : "GPL",
"Title" : "Financial Instrument Model Infrastructure for R",
"Type" : "Package",
"LazyLoad" : "yes",
"Author" : "Peter Carl, Brian G. Peterson, Garrett See, Ross Bennett",
"Description" : "Infrastructure for defining meta-data and\n relationships for financial instruments.",
"Version" : "1.3.0",
"URL" : "https://github.com/braverock/FinancialInstrument",
"Date" : "2018-01-10",
"Depends" : "\nR (>= 3.0.0),\nmethods,\nquantmod (>= 0.4-3),\nzoo (>= 1.7-5),\nxts (>= 0.10-0)",
"Imports" : "\nTTR",
"Suggests" : "\nforeach,\nXML (>= 3.96.1.1),\ntestthat,\ntimeSeries",
"RoxygenNote" : "6.0.1",
"Built" : "R 3.2.5; ; 2018-03-16 09:15:59 UTC; windows",
"RemoteType" : "github",
"RemoteHost" : "api.github.com",
"RemoteRepo" : "FinancialInstrument",
"RemoteUsername" : "braverock",
"RemoteRef" : "master",
"RemoteSha" : "98bcf09fc80e25611897404dcd59321ef67850ac",
"GithubRepo" : "FinancialInstrument",
"GithubUsername" : "braverock",
"GithubRef" : "master",
"GithubSHA1" : "98bcf09fc80e25611897404dcd59321ef67850ac"
}
},
"IKTrading" : {
"Source" : "github",
"Repository" : null,
"GithubRepo" : "IKTrading",
"GithubUsername" : "IlyaKipnis",
"GithubRef" : "master",
"GithubSha1" : "0b4e0e5b21b0b3818e1b7bfcc46a82ed5c6f7ead",
"description" : {
"Package" : "IKTrading",
"Type" : "Package",
"Title" : "Custom indicators, signals, and rules",
"Version" : "1.0",
"Date" : "2014-05-24",
"Author" : "Ilya Kipnis",
"Maintainer" : "Ilya Kipnis <[email protected]>",
"Description" : "Provides a collection of various trading tools.",
"License" : "GPL-2",
"Depends" : "\nxts (>= 0.9-3),\nRcpp,\nTTR,\nquantmod,\nstats,\nquantstrat,\ndigest,\nroxygen2",
"Imports" : "\nRcpp (>= 0.11.1),\nxts,\nTTR,\nquantmod,\nstats,\nquantstrat,\ndigest,\nroxygen2",
"LinkingTo" : "xts, Rcpp, inline, TTR, quantmod, stats, digest, roxygen2",
"Collate" : "\n'RcppExports.R'\n'heikinAshi.R'\n'hourlyPL.R'\n'boxPlots.R'\n'sigAND.R'\n'ichimoku.R'\n'osMaxDollar.R'\n'osDollarATR.R'\n'quandClean.R'\n'durationStatistics.R'\n'SIROC.R'\n'aggMEcharts.R'\n'MSR.R'\n'ERM.R'\n'DVO.R'\n'OHV.R'\n'VCI.R'\n'stepwiseCorRank.R'\n'FAA.R'\n'FAAreturns.R'\n'EAA.R'",
"Built" : "R 3.2.1; x86_64-w64-mingw32; 2016-03-04 17:12:55 UTC; windows",
"RemoteType" : "github",
"RemoteHost" : "api.github.com",
"RemoteRepo" : "IKTrading",
"RemoteUsername" : "IlyaKipnis",
"RemoteRef" : "master",
"RemoteSha" : "0b4e0e5b21b0b3818e1b7bfcc46a82ed5c6f7ead",
"GithubRepo" : "IKTrading",
"GithubUsername" : "IlyaKipnis",
"GithubRef" : "master",
"GithubSHA1" : "0b4e0e5b21b0b3818e1b7bfcc46a82ed5c6f7ead"
}
},
"MASS" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "MASS",
"Priority" : "recommended",
"Version" : "7.3-45",
"Date" : "2015-11-10",
"Revision" : "$Rev: 3453 $",
"Depends" : "R (>= 3.1.0), grDevices, graphics, stats, utils",
"Imports" : "methods",
"Suggests" : "lattice, nlme, nnet, survival",
"Authors@R" : "c(person(\"Brian\", \"Ripley\", role = c(\"aut\", \"cre\", \"cph\"),\n email = \"[email protected]\"),\n\t person(\"Bill\", \"Venables\", role = \"ctb\"),\n\t person(c(\"Douglas\", \"M.\"), \"Bates\", role = \"ctb\"),\n\t person(\"Kurt\", \"Hornik\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"Albrecht\", \"Gebhardt\", role = \"trl\",\n comment = \"partial port ca 1998\"),\n\t person(\"David\", \"Firth\", role = \"ctb\"))",
"Description" : "Functions and datasets to support Venables and Ripley,\n \"Modern Applied Statistics with S\" (4th edition, 2002).",
"Title" : "Support Functions and Datasets for Venables and Ripley's MASS",
"LazyData" : "yes",
"ByteCompile" : "yes",
"License" : "GPL-2 | GPL-3",
"URL" : "http://www.stats.ox.ac.uk/pub/MASS4/",
"NeedsCompilation" : "yes",
"Packaged" : "2015-11-10 08:16:21 UTC; ripley",
"Author" : "Brian Ripley [aut, cre, cph],\n Bill Venables [ctb],\n Douglas M. Bates [ctb],\n Kurt Hornik [trl] (partial port ca 1998),\n Albrecht Gebhardt [trl] (partial port ca 1998),\n David Firth [ctb]",
"Maintainer" : "Brian Ripley <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2015-11-10 15:42:52",
"Built" : "R 3.2.5; x86_64-w64-mingw32; 2016-04-14 17:25:29 UTC; windows"
}
},
"Matrix" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "Matrix",
"Version" : "1.2-4",
"Date" : "2016-03-02",
"Priority" : "recommended",
"Title" : "Sparse and Dense Matrix Classes and Methods",
"Author" : "Douglas Bates <[email protected]> and Martin Maechler",
"Maintainer" : "Martin Maechler <[email protected]>",
"Contact" : "Doug and Martin <[email protected]>",
"Description" : "Classes and methods for dense and sparse matrices and\n operations on them using 'LAPACK' and 'SuiteSparse'.",
"Depends" : "R (>= 3.0.1)",
"Imports" : "methods, graphics, grid, stats, utils, lattice",
"Suggests" : "expm, MASS",
"Enhances" : "MatrixModels, graph, SparseM, sfsmisc",
"Encoding" : "UTF-8",
"LazyData" : "no",
"LazyDataNote" : "not possible, since we use data/*.R *and* our classes",
"ByteCompile" : "yes",
"BuildResaveData" : "no",
"License" : "GPL (>= 2) | file LICENCE",
"URL" : "http://Matrix.R-forge.R-project.org/",
"NeedsCompilation" : "yes",
"Packaged" : "2016-03-02 10:23:02 UTC; maechler",
"Repository" : "CRAN",
"Date/Publication" : "2016-03-02 16:10:51",
"Built" : "R 3.2.3; x86_64-w64-mingw32; 2016-03-05 01:41:52 UTC; windows"
}
},
"NLP" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "NLP",
"Version" : "0.1-9",
"Title" : "Natural Language Processing Infrastructure",
"Authors@R" : "person(\"Kurt\", \"Hornik\", role = c(\"aut\", \"cre\"),\n email = \"[email protected]\")",
"Description" : "Basic classes and methods for Natural Language Processing.",
"License" : "GPL-3",
"Imports" : "utils",
"NeedsCompilation" : "no",
"Packaged" : "2016-02-18 12:16:12 UTC; hornik",
"Author" : "Kurt Hornik [aut, cre]",
"Maintainer" : "Kurt Hornik <[email protected]>",
"Depends" : "R (>= 2.10)",
"Repository" : "CRAN",
"Date/Publication" : "2016-02-18 15:39:47",
"Built" : "R 3.2.3; ; 2016-02-19 01:20:39 UTC; windows"
}
},
"NMF" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "NMF",
"Type" : "Package",
"Title" : "Algorithms and Framework for Nonnegative Matrix Factorization\n(NMF)",
"Version" : "0.20.6",
"Date" : "2015-05-25",
"Author" : "Renaud Gaujoux, Cathal Seoighe",
"Maintainer" : "Renaud Gaujoux <[email protected]>",
"Description" : "Provides a framework to perform Non-negative Matrix\n Factorization (NMF). The package implements a set of already published algorithms\n and seeding methods, and provides a framework to test, develop and plug\n new/custom algorithms. Most of the built-in algorithms have been optimized\n in C++, and the main interface function provides an easy way of performing\n parallel computations on multicore machines.",
"License" : "GPL (>= 2)",
"URL" : "http://renozao.github.io/NMF",
"BugReports" : "http://github.com/renozao/NMF/issues",
"SCM" : "github:renozao, r-forge",
"LazyLoad" : "yes",
"VignetteBuilder" : "knitr",
"Depends" : "R (>= 3.0.0), methods, utils, pkgmaker (>= 0.20), registry,\nrngtools (>= 1.2.3), cluster",
"Imports" : "graphics, stats, stringr (>= 1.0.0), digest, grid, grDevices,\ngridBase, colorspace, RColorBrewer, foreach, doParallel,\nggplot2, reshape2",
"Suggests" : "RcppOctave (>= 0.11), fastICA, doMPI, bigmemory (>= 4.2),\nsynchronicity, corpcor, xtable, devtools, knitr, bibtex, RUnit,\nmail, Biobase",
"Collate" : "'rmatrix.R' 'nmf-package.R' 'utils.R' 'versions.R'\n'algorithmic.R' 'options.R' 'grid.R' 'colorcode.R' 'atracks.R'\n'aheatmap.R' 'NMF-class.R' 'transforms.R' 'Bioc-layer.R'\n'NMFstd-class.R' 'NMFOffset-class.R' 'registry.R' 'heatmaps.R'\n'NMFns-class.R' 'nmfModel.R' 'fixed-terms.R' 'NMFfit-class.R'\n'NMFSet-class.R' 'NMFStrategy-class.R' 'NMFSeed-class.R'\n'NMFStrategyFunction-class.R' 'NMFStrategyIterative-class.R'\n'NMFStrategyOctave-class.R' 'NMFplots.R'\n'registry-algorithms.R' 'algorithms-base.R'\n'algorithms-brunet.R' 'algorithms-lnmf.R' 'algorithms-lsnmf.R'\n'algorithms-pe-nmf.R' 'algorithms-siNMF.R' 'algorithms-snmf.R'\n'data.R' 'extractFeatures.R' 'registry-seed.R' 'parallel.R'\n'nmf.R' 'rnmf.R' 'run.R' 'seed-base.R' 'seed-ica.R'\n'seed-nndsvd.R' 'setNMFClass.R' 'simulation.R' 'tests.R'",
"Packaged" : "2015-05-25 21:34:47 UTC; renaud",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2015-05-26 08:12:33",
"Built" : "R 3.2.4; x86_64-w64-mingw32; 2016-03-15 03:20:21 UTC; windows"
}
},
"PerformanceAnalytics" : {
"Source" : "github",
"Repository" : null,
"GithubRepo" : "PerformanceAnalytics",
"GithubUsername" : "naturalsmen",
"GithubRef" : "fix_time_series_chart_bug",
"GithubSha1" : "8d72f024e41b87ab64fae5b15b6cf00109f48557",
"description" : {
"Package" : "PerformanceAnalytics",
"Type" : "Package",
"Title" : "Econometric Tools for Performance and Risk Analysis",
"Authors@R" : "c(\n person(given=c(\"Brian\",\"G.\"),family=\"Peterson\",role=c(\"cre\",\"aut\",\"cph\"), email=\"[email protected]\")\n , person(given=\"Peter\",family=\"Carl\",role=c(\"aut\",\"cph\"), email=\"[email protected]\")\n , person(given=\"Kris\",family=\"Boudt\",role=c(\"ctb\",\"cph\"))\n , person(given=\"Ross\",family=\"Bennett\",role=\"ctb\")\n , person(given=\"Joshua\",family=\"Ulrich\",role=\"ctb\")\n , person(given=\"Eric\",family=\"Zivot\",role=\"ctb\")\n , person(given=\"Matthieu\",family=\"Lestel\",role=\"ctb\")\n , person(given=\"Kyle\",family=\"Balkissoon\",role=\"ctb\") \n , person(given=\"Diethelm\",family=\"Wuertz\",role=\"ctb\") \n )",
"Version" : "1.5.0",
"Date" : "$Date$",
"Description" : "Collection of econometric functions for\n performance and risk analysis. This package aims to aid\n practitioners and researchers in utilizing the latest\n research in analysis of non-normal return streams. In\n general, it is most tested on return (rather than\n price) data on a regular scale, but most functions will\n work with irregular return data as well, and increasing\n numbers of functions will work with P&L or price data\n where possible.",
"Imports" : "\nzoo",
"Depends" : "\nR (>= 3.0.0),\nxts (>= 0.10.0)",
"Suggests" : "\nHmisc,\nMASS,\nquantmod,\ngamlss,\ngamlss.dist,\nrobustbase,\nquantreg,\ngplots",
"License" : "GPL-2 | GPL-3",
"URL" : "http://r-forge.r-project.org/projects/returnanalytics/",
"Copyright" : "(c) 2004-2016",
"RoxygenNote" : "5.0.1",
"Author" : "Brian G. Peterson [cre, aut, cph],\n Peter Carl [aut, cph],\n Kris Boudt [ctb, cph],\n Ross Bennett [ctb],\n Joshua Ulrich [ctb],\n Eric Zivot [ctb],\n Matthieu Lestel [ctb],\n Kyle Balkissoon [ctb],\n Diethelm Wuertz [ctb]",
"Maintainer" : "Brian G. Peterson <[email protected]>",
"Built" : "R 3.2.5; i386-w64-mingw32; 2016-08-29 09:02:49 UTC; windows",
"RemoteType" : "github",
"RemoteHost" : "api.github.com",
"RemoteRepo" : "PerformanceAnalytics",
"RemoteUsername" : "naturalsmen",
"RemoteRef" : "fix_time_series_chart_bug",
"RemoteSha" : "8d72f024e41b87ab64fae5b15b6cf00109f48557",
"GithubRepo" : "PerformanceAnalytics",
"GithubUsername" : "naturalsmen",
"GithubRef" : "fix_time_series_chart_bug",
"GithubSHA1" : "8d72f024e41b87ab64fae5b15b6cf00109f48557"
}
},
"R6" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "R6",
"Title" : "Classes with Reference Semantics",
"Version" : "2.1.2",
"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" : "2016-01-25 18:40:15 UTC; winston",
"Author" : "Winston Chang [aut, cre]",
"Maintainer" : "Winston Chang <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2016-01-26 00:30:15",
"Built" : "R 3.2.3; ; 2016-03-02 01:46:10 UTC; windows"
}
},
"RColorBrewer" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "RColorBrewer",
"Version" : "1.1-2",
"Date" : "2014-12-07",
"Title" : "ColorBrewer Palettes",
"Authors@R" : "c(person(given = \"Erich\", family = \"Neuwirth\", role = c(\"aut\",\n \"cre\"), email = \"[email protected]\"))",
"Author" : "Erich Neuwirth [aut, cre]",
"Maintainer" : "Erich Neuwirth <[email protected]>",
"Depends" : "R (>= 2.0.0)",
"Description" : "Provides color schemes for maps (and other graphics)\n designed by Cynthia Brewer as described at http://colorbrewer2.org",
"License" : "Apache License 2.0",
"Packaged" : "2014-12-06 23:59:42 UTC; neuwirth",
"NeedsCompilation" : "no",
"Repository" : "CRAN",
"Date/Publication" : "2014-12-07 08:28:55",
"Built" : "R 3.2.3; ; 2015-12-11 01:25:44 UTC; windows"
}
},
"RCurl" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "RCurl",
"Version" : "1.95-4.8",
"Title" : "General Network (HTTP/FTP/...) Client Interface for R",
"Author" : "Duncan Temple Lang and the CRAN team",
"SystemRequirements" : "GNU make, libcurl",
"Maintainer" : "Duncan Temple Lang <[email protected]>",
"Description" : "A wrapper for 'libcurl' <http://curl.haxx.se/libcurl/>\n\tProvides functions to allow one to compose general HTTP requests\n and provides convenient functions to fetch URIs, get & post\n forms, etc. and process the results returned by the Web server.\n This provides a great deal of control over the HTTP/FTP/...\n connection and the form of the request while providing a\n higher-level interface than is available just using R socket\n connections. Additionally, the underlying implementation is\n robust and extensive, supporting FTP/FTPS/TFTP (uploads and\n downloads), SSL/HTTPS, telnet, dict, ldap, and also supports\n cookies, redirects, authentication, etc.",
"License" : "BSD",
"Depends" : "R (>= 3.0.0), methods, bitops",
"Suggests" : "Rcompression, XML",
"URL" : "http://www.omegahat.net/RCurl",
"Additional_repositories" : "http://www.omegahat.net/R/",
"Limitations" : "One doesn't yet have full control over the contents of a\nPOST form such as specifying files, content type. Error\nhandling uses a single global variable at present.",
"Note" : "This will be used generally to communicate with HTTP servers and\nspecifically in the SOAP package, HTML forms and for accessing\ndata on Web sites that require more state information than\nsimply URL access (e.g. cookies).",
"Check" : "To run R CMD check, one really needs network access. It is an\nHTTP client! This can be problematic as a Web site may be down\nwhen you run but the real tests are important.",
"Collate" : "aclassesEnums.R bitClasses.R xbits.R base64.R binary.S\nclasses.S curl.S curlAuthConstants.R curlEnums.R curlError.R\ncurlInfo.S dynamic.R form.S getFormParams.R getURLContent.R\nheader.R http.R httpError.R httpErrors.R iconv.R info.S mime.R\nmulti.S options.S scp.R support.S upload.R urlExists.R zclone.R\nzzz.R",
"NeedsCompilation" : "yes",
"Packaged" : "2016-03-01 07:37:59 UTC; ripley",
"Repository" : "CRAN",
"Date/Publication" : "2016-03-01 10:54:28",
"Built" : "R 3.2.3; i386-w64-mingw32; 2016-03-02 01:21:00 UTC; windows"
}
},
"Rcpp" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "Rcpp",
"Title" : "Seamless R and C++ Integration",
"Version" : "0.12.4",
"Date" : "2016-03-22",
"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" : "2016-03-22 11:26:27.784601 UTC; edd",
"Repository" : "CRAN",
"Date/Publication" : "2016-03-26 21:39:42",
"Built" : "R 3.2.5; x86_64-w64-mingw32; 2016-04-21 23:09:23 UTC; windows"
}
},
"TTR" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "TTR",
"Type" : "Package",
"Title" : "Technical Trading Rules",
"Version" : "0.23-1",
"Date" : "2016-03-19",
"Author" : "Joshua Ulrich",
"Maintainer" : "Joshua Ulrich <[email protected]>",
"Imports" : "xts (>= 0.9-3), zoo",
"LinkingTo" : "xts",
"Enhances" : "quantmod",
"Suggests" : "RUnit",
"Description" : "Functions and data to construct technical trading rules with R.",
"License" : "GPL-2",
"URL" : "https://github.com/joshuaulrich/TTR",
"BugReports" : "https://github.com/joshuaulrich/TTR/issues",
"NeedsCompilation" : "yes",
"Packaged" : "2016-03-19 16:55:18 UTC; josh",
"Repository" : "CRAN",
"Date/Publication" : "2016-03-21 00:06:52",
"Built" : "R 3.2.5; x86_64-w64-mingw32; 2017-04-14 19:32:34 UTC; windows"
}
},
"XML" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "XML",
"Version" : "3.98-1.4",
"Author" : "Duncan Temple Lang and the CRAN Team",
"Maintainer" : "Duncan Temple Lang <[email protected]>",
"Title" : "Tools for Parsing and Generating XML Within R and S-Plus",
"Depends" : "R (>= 2.13.0), methods, utils",
"Suggests" : "bitops, RCurl",
"SystemRequirements" : "libxml2 (>= 2.6.3)",
"Description" : "Many approaches for both reading and\n creating XML (and HTML) documents (including DTDs), both local\n and accessible via HTTP or FTP. Also offers access to an\n 'XPath' \"interpreter\".",
"Note" : "In version 2.4.0 of this package, a new approach to garbage\ncollection has been implemented and it is experimental. You can\ndisable it via the configuration option --enable-nodegc=no.\nHowever, you are encouraged to use this and report problems as\nthe results are beneficial and being able to produce any errors\nshould they occur will be very helpful.",
"URL" : "http://www.omegahat.net/RSXML",
"License" : "BSD_2_clause + file LICENSE",
"Collate" : "AAA.R DTD.R DTDClasses.R DTDRef.R SAXMethods.S XMLClasses.R\napplyDOM.R assignChild.R catalog.R createNode.R dynSupports.R\nerror.R flatTree.R nodeAccessors.R parseDTD.R schema.S\nsummary.R tangle.R toString.S tree.R version.R xmlErrorEnums.R\nxmlEventHandler.R xmlEventParse.R xmlHandler.R\nxmlInternalSource.R xmlOutputDOM.R xmlNodes.R xmlOutputBuffer.R\nxmlTree.R xmlTreeParse.R htmlParse.R hashTree.R zzz.R\nsupports.R parser.R libxmlFeatures.R xmlString.R saveXML.R\nnamespaces.R readHTMLTable.R reflection.R xmlToDataFrame.R\nbitList.R compare.R encoding.R fixNS.R xmlRoot.R serialize.R\nxmlMemoryMgmt.R keyValueDB.R solrDocs.R XMLRErrorInfo.R\nxincludes.R namespaceHandlers.R tangle1.R htmlLinks.R\nhtmlLists.R getDependencies.R getRelativeURL.R xmlIncludes.R\nsimplifyPath.R",
"Packaged" : "2016-03-01 07:39:47 UTC; ripley",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2016-03-01 10:54:31",
"Built" : "R 3.2.3; x86_64-w64-mingw32; 2016-03-02 01:21:02 UTC; windows"
}
},
"assertthat" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"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.3; ; 2016-03-03 01:40:30 UTC; windows"
}
},
"bitops" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "bitops",
"Version" : "1.0-6",
"Date" : "2013-08-17",
"Author" : "S original by Steve Dutky <[email protected]> initial R\n port and extensions by Martin Maechler; revised and modified\n by Steve Dutky",
"Maintainer" : "Martin Maechler <[email protected]>",
"Title" : "Bitwise Operations",
"Description" : "Functions for bitwise operations on integer vectors.",
"License" : "GPL (>= 2)",
"Packaged" : "2013-08-17 15:58:57 UTC; maechler",
"NeedsCompilation" : "yes",
"Repository" : "CRAN",
"Date/Publication" : "2013-08-17 21:10:34",
"Built" : "R 3.2.3; x86_64-w64-mingw32; 2015-12-11 01:27:13 UTC; windows"
}
},
"blotter" : {
"Source" : "github",
"Repository" : null,
"GithubRepo" : "blotter",
"GithubUsername" : "braverock",
"GithubRef" : "master",
"GithubSha1" : "5720a41789ce1a971011373fd9355faf33ec90ed",
"description" : {
"Package" : "blotter",
"Type" : "Package",
"Title" : "Tools for Transaction-Oriented Trading Systems Development",
"Version" : "0.12.4",
"Date" : "2017-08-16 $Date$",
"Author" : "Peter Carl [aut],\n Brian G. Peterson [aut, cre],\n Joshua Ulrich [ctb],\n Jasen Mackie [ctb],\n Daniel Cegielka [ctb],\n Dirk Eddelbuettel [ctb],\n Jan Humme [ctb],\n Lance Levenson [ctb],\n Ben McCann [ctb],\n Jeff Ryan [ctb],\n Garrett See [ctb],\n Wolfgang Wu [ctb]",
"Maintainer" : "Brian G. Peterson <[email protected]>",
"Description" : "Transaction infrastructure for defining\n instruments, transactions, portfolios and accounts for\n trading systems and simulation. Provides portfolio\n support for multi-asset class and multi-currency\n portfolios. Actively maintained and developed.",
"License" : "GPL-3",
"LazyLoad" : "yes",
"Depends" : "\nR (>= 3.0.0),\nxts (>= 0.10-0),\nFinancialInstrument(>= 0.6.3),\nPerformanceAnalytics,\nquantmod",
"Imports" : "\nzoo,\nTTR,\ngraphics,\nmethods,\nstats,\nutils,\nboot,\nforeach",
"Suggests" : "\nHmisc,\nRUnit,",
"URL" : "https://r-forge.r-project.org/projects/blotter/",
"Copyright" : "(c) 2008-2017",
"ByteCompile" : "TRUE",
"RoxygenNote" : "6.0.1.9000",
"Built" : "R 3.2.5; x86_64-w64-mingw32; 2018-03-16 09:14:10 UTC; windows",
"RemoteType" : "github",
"RemoteHost" : "api.github.com",
"RemoteRepo" : "blotter",
"RemoteUsername" : "braverock",
"RemoteRef" : "master",
"RemoteSha" : "5720a41789ce1a971011373fd9355faf33ec90ed",
"GithubRepo" : "blotter",
"GithubUsername" : "braverock",
"GithubRef" : "master",
"GithubSHA1" : "5720a41789ce1a971011373fd9355faf33ec90ed"
}
},
"boot" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "boot",
"Priority" : "recommended",
"Version" : "1.3-18",
"Date" : "2016-02-22",
"Authors@R" : "c(person(\"Angelo\", \"Canty\", role = \"aut\",\n\t email = \"[email protected]\"),\n person(\"Brian\", \"Ripley\", role = c(\"aut\", \"trl\", \"cre\"),\n email = \"[email protected]\",\n\t\t comment = \"author of parallel support\"))",
"Maintainer" : "Brian Ripley <[email protected]>",
"Note" : "Maintainers are not available to give advice on using a package\nthey did not author.",
"Description" : "Functions and datasets for bootstrapping from the\n book \"Bootstrap Methods and Their Application\" by A. C. Davison and \n D. V. Hinkley (1997, CUP), originally written by Angelo Canty for S.",
"Title" : "Bootstrap Functions (Originally by Angelo Canty for S)",
"Depends" : "R (>= 3.0.0), graphics, stats",
"Suggests" : "MASS, survival",
"LazyData" : "yes",
"ByteCompile" : "yes",
"License" : "Unlimited",
"NeedsCompilation" : "no",
"Packaged" : "2016-02-22 17:13:17 UTC; ripley",
"Author" : "Angelo Canty [aut],\n Brian Ripley [aut, trl, cre] (author of parallel support)",
"Repository" : "CRAN",
"Date/Publication" : "2016-02-23 10:38:10",
"Built" : "R 3.2.5; ; 2016-04-14 17:28:53 UTC; windows"
}
},
"brew" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "brew",
"Type" : "Package",
"Title" : "Templating Framework for Report Generation",
"Version" : "1.0-6",
"Date" : "2010-09-30",
"Author" : "Jeffrey Horner",
"Maintainer" : "Jeffrey Horner <[email protected]>",
"Description" : "brew implements a templating framework for mixing text and\n R code for report generation. brew template syntax is similar\n to PHP, Ruby's erb module, Java Server Pages, and Python's psp\n module.",
"License" : "GPL-2",
"Packaged" : "2011-04-13 14:36:39 UTC; hornerj",
"Repository" : "CRAN",
"Date/Publication" : "2011-04-13 15:16:08",
"Built" : "R 3.2.3; ; 2015-12-11 01:27:57 UTC; windows"
}
},
"chron" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"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.3; x86_64-w64-mingw32; 2016-03-03 01:41:58 UTC; windows"
}
},
"cluster" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "cluster",
"Version" : "2.0.3",
"Date" : "2015-07-20",
"Priority" : "recommended",
"Title" : "\"Finding Groups in Data\": Cluster Analysis Extended Rousseeuw et\nal.",
"Description" : "Methods for Cluster analysis. Much extended the original from\n\tPeter Rousseeuw, Anja Struyf and Mia Hubert,\n\tbased on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".",
"Maintainer" : "Martin Maechler <[email protected]>",
"Authors@R" : "c(person(\"Martin\",\"Maechler\", role=c(\"aut\",\"cre\"), email=\"[email protected]\")\n ,person(\"Peter\", \"Rousseeuw\", role=\"aut\", email=\"[email protected]\",\n comment = \"Fortran original\")\n ,person(\"Anja\", \"Struyf\", role=\"aut\", comment= \"S original\")\n ,person(\"Mia\", \"Hubert\", role=\"aut\", email= \"[email protected]\", comment= \"S original\")\n ,person(\"Kurt\", \"Hornik\", role=c(\"trl\", \"ctb\"),\n \temail=\"[email protected]\", comment=\"port to R; maintenance(1999-2000)\")\n ,person(\"Matthias\", \"Studer\", role=\"ctb\")\n ,person(\"Pierre\", \"Roudier\", role=\"ctb\")\n )",
"Depends" : "R (>= 2.15.0), utils",
"Imports" : "graphics, grDevices, stats",
"Suggests" : "MASS",
"SuggestsNote" : "two small examples using MASS' cov.rob() and mvrnorm()",
"LazyLoad" : "yes",
"LazyData" : "yes",
"ByteCompile" : "yes",
"BuildResaveData" : "no",
"License" : "GPL (>= 2)",
"NeedsCompilation" : "yes",
"Packaged" : "2015-07-20 08:32:32 UTC; maechler",
"Author" : "Martin Maechler [aut, cre],\n Peter Rousseeuw [aut] (Fortran original),\n Anja Struyf [aut] (S original),\n Mia Hubert [aut] (S original),\n Kurt Hornik [trl, ctb] (port to R; maintenance(1999-2000)),\n Matthias Studer [ctb],\n Pierre Roudier [ctb]",
"Repository" : "CRAN",
"Date/Publication" : "2015-07-21 07:53:10",
"Built" : "R 3.2.5; x86_64-w64-mingw32; 2016-04-14 17:29:01 UTC; windows"
}
},
"codetools" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "codetools",
"Version" : "0.2-14",
"Priority" : "recommended",
"Author" : "Luke Tierney <[email protected]>",
"Description" : "Code analysis tools for R.",
"Title" : "Code Analysis Tools for R",
"Depends" : "R (>= 2.1)",
"Maintainer" : "Luke Tierney <[email protected]>",
"License" : "GPL",
"NeedsCompilation" : "no",
"Packaged" : "2015-07-14 12:40:39 UTC; luke",
"Repository" : "CRAN",
"Date/Publication" : "2015-07-15 14:22:26",
"Built" : "R 3.2.5; ; 2016-04-14 17:29:10 UTC; windows"
}
},
"colorspace" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"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.3; x86_64-w64-mingw32; 2016-03-02 01:46:10 UTC; windows"
}
},
"curl" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "curl",
"Type" : "Package",
"Title" : "A Modern and Flexible Web Client for R",
"Version" : "0.9.6",
"Authors@R" : "c(\n person(\"Jeroen\", \"Ooms\", , \"[email protected]\", role = c(\"cre\", \"aut\")),\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = \"ctb\"),\n person(\"RStudio\", role = \"cph\")\n )",
"Description" : "The curl() and curl_download() functions provide highly\n configurable drop-in replacements for base url() and download.file() with\n better performance, support for encryption (https, ftps), gzip compression,\n authentication, and other libcurl goodies. The core of the package implements a\n framework for performing fully customized requests where data can be processed\n either in memory, on disk, or streaming via the callback or connection\n interfaces. Some knowledge of libcurl is recommended; for a more-user-friendly\n web client see the 'httr' package which builds on this package with http\n specific tools and logic.",
"License" : "MIT + file LICENSE",
"SystemRequirements" : "libcurl: libcurl-devel (rpm) or\nlibcurl4-openssl-dev (deb).",
"URL" : "https://github.com/jeroenooms/curl\nhttps://www.opencpu.org/posts/curl-release-0-8/",
"BugReports" : "https://github.com/jeroenooms/curl/issues",
"Suggests" : "testthat, knitr, jsonlite, rmarkdown, magrittr",
"VignetteBuilder" : "knitr",
"Depends" : "R (>= 3.0.0)",
"LazyData" : "true",
"RoxygenNote" : "5.0.1",
"NeedsCompilation" : "yes",
"Packaged" : "2016-02-17 20:25:48 UTC; jeroen",
"Author" : "Jeroen Ooms [cre, aut],\n Hadley Wickham [ctb],\n RStudio [cph]",
"Maintainer" : "Jeroen Ooms <[email protected]>",
"Repository" : "CRAN",
"Date/Publication" : "2016-02-17 23:08:23",
"Built" : "R 3.2.3; x86_64-w64-mingw32; 2016-03-02 01:47:23 UTC; windows"
}
},
"data.table" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "data.table",
"Version" : "1.9.6",
"Title" : "Extension of Data.frame",
"Author" : "M Dowle, A Srinivasan, T Short, S Lianoglou with contributions from R Saporta, E Antonyan",
"Maintainer" : "Matt Dowle <[email protected]>",
"Depends" : "R (>= 2.14.1)",
"Imports" : "methods, chron",
"Suggests" : "ggplot2 (>= 0.9.0), plyr, reshape, reshape2, testthat (>=\n0.4), hexbin, fastmatch, nlme, xts, bit64, gdata,\nGenomicRanges, caret, knitr, curl, zoo, plm",
"Description" : "Fast aggregation of large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of columns by group using no copies at all, list columns and a fast file reader (fread). Offers a natural and flexible syntax, for faster development.",
"License" : "GPL (>= 2)",
"URL" : "https://github.com/Rdatatable/data.table/wiki",
"BugReports" : "https://github.com/Rdatatable/data.table/issues",
"MailingList" : "[email protected]",
"VignetteBuilder" : "knitr",
"ByteCompile" : "TRUE",
"NeedsCompilation" : "yes",
"Packaged" : "2015-09-19 04:47:43.628 UTC; mdowle",
"Repository" : "CRAN",
"Date/Publication" : "2015-09-19 22:13:43",
"Built" : "R 3.2.3; x86_64-w64-mingw32; 2016-03-03 02:16:58 UTC; windows"
}
},
"devtools" : {
"Source" : "github",
"Repository" : null,
"GithubRepo" : "devtools",
"GithubUsername" : "hadley",
"GithubRef" : "master",
"GithubSha1" : "b6a23be508043fd0ffc24316034b5e45bfc1a941",
"description" : {
"Package" : "devtools",
"Title" : "Tools to Make Developing R Packages Easier",
"Version" : "1.10.0.9000",
"Authors@R" : "c(\n person(\"Hadley\", \"Wickham\", , \"[email protected]\", role = c(\"aut\", \"cre\")),\n person(\"Winston\", \"Chang\", role = \"aut\"),\n person(\"RStudio\", role = \"cph\"),\n person(\"R Core team\", role = \"ctb\",\n comment = \"Some namespace and vignette code extracted from base R\")\n )",
"Description" : "Collection of package development tools.",
"URL" : "https://github.com/hadley/devtools",
"BugReports" : "https://github.com/hadley/devtools/issues",
"Depends" : "\nR (>= 3.0.2)",
"Imports" : "\nhttr (>= 0.4),\nutils,\ntools,\nmethods,\nmemoise (>= 1.0.0),\nwhisker,\ndigest,\nrstudioapi (>= 0.2.0),\njsonlite,\nstats,\ngit2r (>= 0.11.0),\nwithr",
"Suggests" : "\ncurl (>= 0.9),\ncrayon,\ntestthat (>= 0.7),\nBiocInstaller,\nRcpp (>= 0.10.0),\nMASS,\nrmarkdown,\nknitr,\nlintr (>= 0.2.1),\nbitops,\nroxygen2 (>= 5.0.0),\nevaluate,\nrversions,\ncovr,\ngmailr (> 0.7.0)",
"Remotes" : "\njimhester/gmailr",
"License" : "GPL (>= 2)",
"VignetteBuilder" : "knitr",
"RoxygenNote" : "5.0.1",
"Author" : "Hadley Wickham [aut, cre],\n Winston Chang [aut],\n RStudio [cph],\n R Core team [ctb] (Some namespace and vignette code extracted from base\n R)",
"Maintainer" : "Hadley Wickham <[email protected]>",
"Built" : "R 3.2.1; i386-w64-mingw32; 2016-03-02 22:36:10 UTC; windows",
"RemoteType" : "github",
"RemoteHost" : "api.github.com",
"RemoteRepo" : "devtools",
"RemoteUsername" : "hadley",
"RemoteRef" : "master",
"RemoteSha" : "b6a23be508043fd0ffc24316034b5e45bfc1a941",
"GithubRepo" : "devtools",
"GithubUsername" : "hadley",
"GithubRef" : "master",
"GithubSHA1" : "b6a23be508043fd0ffc24316034b5e45bfc1a941"
}
},
"dichromat" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"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.3; ; 2015-12-11 01:25:44 UTC; windows"
}
},
"digest" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "digest",
"Version" : "0.6.9",
"Date" : "2016-01-07",
"Author" : "Dirk Eddelbuettel <[email protected]> with contributions \n by Antoine Lucas, Jarek Tuszynski, Henrik Bengtsson, Simon Urbanek,\n Mario Frasca, Bryan Lewis, Murray Stokely, Hannes Muehleisen,\n Duncan Murdoch, Jim Hester, Wush Wu and Thierry Onkelinx.",
"Maintainer" : "Dirk Eddelbuettel <[email protected]>",
"Title" : "Create Compact 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",
"Suggests" : "knitr, rmarkdown",
"VignetteBuilder" : "knitr",
"NeedsCompilation" : "yes",
"Packaged" : "2016-01-08 04:03:12.108104 UTC; edd",
"Repository" : "CRAN",
"Date/Publication" : "2016-01-08 08:49:46",
"Built" : "R 3.2.3; x86_64-w64-mingw32; 2016-03-02 01:46:10 UTC; windows"
}
},
"doParallel" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "doParallel",
"Type" : "Package",
"Title" : "Foreach Parallel Adaptor for the 'parallel' Package",
"Version" : "1.0.10",
"Authors@R" : "c(person(\"Rich\", \"Calaway\", role=\"cre\", email=\"[email protected]\"),\n person(\"Revolution\", \"Analytics\", role=c(\"aut\", \"cph\")),\n\t\t\t person(\"Steve\", \"Weston\", role=\"aut\"),\n\t\t\t person(\"Dan\", \"Tenenbaum\", role=\"ctb\"))",
"Description" : "Provides a parallel backend for the %dopar% function using\n the parallel package.",
"Depends" : "R (>= 2.14.0), foreach(>= 1.2.0), iterators(>= 1.0.0),\nparallel, utils",
"Suggests" : "caret, mlbench, rpart",
"Enhances" : "compiler, RUnit",
"License" : "GPL-2",
"Author" : "Rich Calaway [cre],\n Revolution Analytics [aut, cph],\n Steve Weston [aut],\n Dan Tenenbaum [ctb]",
"Maintainer" : "Rich Calaway <[email protected]>",
"Repository" : "CRAN",
"Repository/R-Forge/Project" : "doparallel",
"Repository/R-Forge/Revision" : "15",
"Repository/R-Forge/DateTimeStamp" : "2015-10-13 20:31:22",
"Date/Publication" : "2015-10-14 09:53:49",
"NeedsCompilation" : "no",
"Packaged" : "2015-10-13 20:46:30 UTC; rforge",
"Built" : "R 3.2.3; ; 2016-03-03 02:15:14 UTC; windows"
}
},
"doSNOW" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "doSNOW",
"Type" : "Package",
"Title" : "Foreach Parallel Adaptor for the 'snow' Package",
"Version" : "1.0.14",
"Authors@R" : "c(person(\"Rich\", \"Calaway\", role=\"cre\",\n\t\t\t\t\temail = \"[email protected]\"), \n person(\"Revolution Analytics\", role=c(\"aut\",\"cph\")),\n\t\t\t person(\"Stephen\", \"Weston\", role=\"aut\"))",
"Description" : "Provides a parallel backend for the %dopar% function using\n Luke Tierney's snow package.",
"Depends" : "R (>= 2.5.0), foreach(>= 1.2.0), iterators(>= 1.0.0), snow(>=\n0.3.0), utils",
"Suggests" : "compiler, RUnit, caret, mlbench, rpart",
"License" : "GPL-2",
"Author" : "Rich Calaway [cre],\n Revolution Analytics [aut, cph],\n Stephen Weston [aut]",
"Maintainer" : "Rich Calaway <[email protected]>",
"Repository" : "CRAN",
"Repository/R-Forge/Project" : "dosnow",
"Repository/R-Forge/Revision" : "27",
"Repository/R-Forge/DateTimeStamp" : "2015-10-13 20:31:49",
"Date/Publication" : "2015-10-14 09:53:50",
"NeedsCompilation" : "no",
"Packaged" : "2015-10-13 20:45:25 UTC; rforge",
"Built" : "R 3.2.4; ; 2016-03-15 01:50:26 UTC; windows"
}
},
"dplyr" : {
"Source" : "CRAN",
"Repository" : "http://cran.csie.ntu.edu.tw/",
"GithubRepo" : null,
"GithubUsername" : null,
"GithubRef" : null,
"GithubSha1" : null,
"description" : {
"Package" : "dplyr",
"Type" : "Package",
"Version" : "0.4.3",
"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.12.0), 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'\n'frame-data.R' 'funs.R' 'glimpse.R' 'group-by.r'\n'group-indices.R' 'group-size.r' 'grouped-df.r' 'grouped-dt.r'\n'id.r' 'inline.r' 'join.r' 'lead-lag.R' 'location.R' 'manip.r'\n'nth-value.R' 'order-by.R' 'over.R' 'partial-eval.r'\n'progress.R' 'query.r' 'rank.R' 'rbind.r' 'rowwise.r'\n'sample.R' 'select-utils.R' 'select-vars.R' 'sets.r'\n'sql-escape.r' 'sql-star.r' 'src-local.r' 'src-mysql.r'\n'src-postgres.r' 'src-sql.r' 'src-sqlite.r' 'src.r' 'tally.R'\n'tbl-cube.r' 'tbl-df.r' 'tbl-dt.r' 'tbl-sql.r' 'tbl.r'\n'top-n.R' '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-08-31 18:19:11 UTC; hadley",
"Author" : "Hadley Wickham [aut, cre],\n Romain Francois [aut],\n RStudio [cph]",