-
Notifications
You must be signed in to change notification settings - Fork 11
/
ChangeLog
2141 lines (1332 loc) · 60.9 KB
/
ChangeLog
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
commit 8b734570565aa6c65070321b56f73b16273ba433
Author: Benjamin Hofner <[email protected]>
Release version 2.0-7
- Fixed S3 argument mismatch
- Updated CITATION file to reflect current guidance on how to cite in packages
commit 4084658ba3a8bcc1830656e03f4ba22ac7771822
Author: Benjamin Hofner <[email protected]>
Release gamboostLSS 2.0-6
commit 276770e46647683c794d01ba100473bae699432c
Author: Benjamin Hofner <[email protected]>
Update cvrisk.nc_mboostLSS.R
commit 6cf9cb8e2f3a5c6861c10cef443013b3b99eea25
Author: Benjamin Hofner <[email protected]>
Update cvrisk.R
commit d3225c431bd18d240d63e95c9f531ccac107771c
Author: Andreas Mayr <[email protected]>
Try again...
commit a898c9746fdd24f1e29e4e3d8657be769b6cb2f4
Author: Andreas Mayr <[email protected]>
Update mboostLSS.R
commit 7c756897d4a2cd89c8c3d2c764ae3fe7c77bce70
Author: Andreas Mayr <[email protected]>
fix issue of oobag risk in non-cyclical fitting
commit 7792951d2984f289ed7e530befa42a2a4cb04d1d
Author: Benjamin Hofner <[email protected]>
Release gamboostLSS 2.0-5
commit 753f22dde4128cf586ea604938bdc95821140e15
Author: Benjamin Hofner <[email protected]>
Relase gamboostLSS 2.0-4
commit dff2d2c78378dd102e73bea249c631947b98aa4c
Author: Benjamin Hofner <[email protected]>
Release gamboostLSS 2.0-3
commit 3a70423c519e0e7a4fb9c60f5a8caa4d58d9317f
Author: Benjamin Hofner <[email protected]>
Release gamboostLSS 2.0-2
commit 14dddb703d9ca8cb914efe74c6caae258e276bf1
Author: Benjamin Hofner <[email protected]>
Replaced DOI references with \doi
commit dcd64622bcd76095a81779279c6ae66bf66ff6ff
Author: Benjamin Hofner <[email protected]>
Fixed CRAN checks
commit db087e7a86999f17b85981b38dfdfb5dc324dfc0
Author: Benjamin Hofner <[email protected]>
Updated hyperlink to https
commit bbe656b4e16fdc16f8ceb449404283561dac64e2
Author: mayrandy <[email protected]>
Fixing Family problem, closes #53
commit ad864dd82c8a757b8e1b2a383a212c9c331190b0
Author: mayrandy <[email protected]>
Bugfix. Closes #55
commit 4989474e42ea74fe7e56e2faa37fa980d9faad9d
Author: sbrockhaus <[email protected]>
Fix stabsel.mboostLSS for models fitted with FDboostLSS. Closes #51
commit f97c8906fc9d78e05cb28823789b12cd31c06fdc
Author: Benjamin Hofner <[email protected]>
Avoid building the vignette twice
commit b871cbfe019dac19e8989ce847fd5e4274a8c4aa
Author: Benjamin Hofner <[email protected]>
Initialize combined_risk in mboostLSS_fit to avoid writing (and overwriting) the combined risk in the global environment. Closes #49.
commit ac3af5c8998a3995415e87b3dc05329f52cb6b0b
Author: Hofner <[email protected]>
Duplicated vignette with some modifications to reduce package size; used for CRAN only
commit 120fef64eba3cafdcce1fddc06ed6855cc1bf0f9
Author: Benjamin Hofner <[email protected]>
Release gamboostLSS 2.0-1
commit 1cb93d2b89db47090470741e251fbb5766ae59f3
Author: Benjamin Hofner <[email protected]>
Update .Rout.save
commit a462d46caca91fe1869c8c6d82c379df469647f2
Author: Benjamin Hofner <[email protected]>
Updated Thomas et al to final reference. Closes #47 once more.
commit 00145b64e3df3ca2ca59ecdad2fbf739c7040e13
Author: Benjamin Hofner <[email protected]>
fix merge conflict
commit 6af980e94b1d594f9a3a26bff13fc38e54aac742
Merge: 09af4f0 13e9b2d
Author: Benjamin Hofner <[email protected]>
Merge branch 'master' of https://github.com/boost-R/gamboostLSS
commit 09af4f04ebf66aa66b2712c1f9838aca10af99be
Author: Benjamin Hofner <[email protected]>
export predict.mboostLSS
commit 13e9b2d094e952382e52f97613ad5b5ce94604f0
Author: Benjamin Hofner <[email protected]>
fix citation
commit 780e8abaf1970eaf3c3aaf6576fce55b49e32680
Author: Benjamin Hofner <[email protected]>
README
commit 6d385df8f5d82ab0834e79792b986a1e8a75fd78
Author: Benjamin Hofner <[email protected]>
Update reference for non-cyclic boosting (closes #47)
commit 70a30c47e9c6e6112a1b31cd5f871a9356c7541c
Author: Benjamin Hofner <[email protected]>
Update DESCRIPTION
commit 3449299f6b2c848d1ceb854dfd46cccbbe59fcd5
Author: Benjamin Hofner <[email protected]>
Updated further manuals regarding various classes of results
commit c962e3b4766f43e562fa03a2e94cd95ecb4994a4
Author: Benjamin Hofner <[email protected]>
updated cvrisk manual (closes #46)
commit 7f0b37cdb917d558f97595f6effd8a22839a86ad
Author: Benjamin Hofner <[email protected]>
streamlined interfaces of cvrisk
commit 8750ae0652bf71fe21ade698de01fe13404347e1
Author: Benjamin Hofner <[email protected]>
export various plot functions and cvrisk (see #46)
commit 95b48b944ab9c139abc5520a889f66d2a49d9307
Author: Benjamin Hofner <[email protected]>
Release gamboostLSS 2.0-0
commit d903d34da5ed1cbef1be1914d3f1e4628ed0baba
Author: Benjamin Hofner <[email protected]>
Updated release SOPs to reflect new repository structure
commit 54dbcd9d9664078798b455586f37477e63b13248
Author: Benjamin Hofner <[email protected]>
Updated check results
commit 8b7001081b225aca47563683d32a3685c6c55987
Author: Benjamin Hofner <[email protected]>
Also update inst/CITATION
commit 8c0d47564d2a477105f3287251c978fea54ac678
Author: Benjamin Hofner <[email protected]>
Updated maintainer's email address
commit b259544ad6accd0874e31c42b288d0380179ef25
Author: Benjamin Hofner <[email protected]>
Updated reference to Thomas et al (2017). Closes #45
commit 2de0e6c9944fd24c54fd365216f91e5508a9ff8c
Merge: 2599aed 8333592
Author: Benjamin Hofner <[email protected]>
Merge pull request #38 from sbrockhaus/master
commit 833359289f9b9946353caf3b3f06faa08ba43582
Merge: ef96def 2599aed
Author: sbrockhaus <[email protected]>
Merge remote-tracking branch 'upstream/master'
commit ef96defb1708701433c62ce39ddab4fdfaa5cebd
Author: sbrockhaus <[email protected]>
report in NEWS that mboostLSS_fit() is adapted for FDboostLSS()
commit 2599aed3de6884b9fc2cca45879477ebf5b5ca1f
Author: Benjamin Hofner <[email protected]>
Updated SOPs for CRAN upload regarding vignette
commit 658599c7add6cfefb24bee0653ae6dfc1cccef25
Merge: 88449e3 36aee6e
Author: Benjamin Hofner <[email protected]>
Merge pull request #44 from boost-R/fix_stabsel_plot
commit 95c79f2d97ec02ed8c88adfadabcf37b56f525ea
Author: sbrockhaus <[email protected]>
use fitted.mboost() as fitted.FDboost() returns matrix
commit 36aee6ed2de9cef84f9d79c83429764fadf542e5
Author: ja-thomas <[email protected]>
Update mboostLSS.R
commit ecc63ed3afd5ce7e022d533a81ecacea1172f7c6
Author: ja-thomas <[email protected]>
Update regtest-noncyclic_fitting.R
commit 71ad6e9dbcb48dbc5486655ca59021956edb90c8
Author: Janek <[email protected]>
add additional test
commit fa8bcd32b2beb40471fe15157c366531eb2e1c45
Author: Janek <[email protected]>
fix stabsel plot
commit d1dbb32bc42664bdc123dbb7e2029bc62259308f
Merge: e04a6c4 88449e3
Author: sbrockhaus <[email protected]>
Merge remote-tracking branch 'upstream/master'
commit e04a6c4a7370cfd14bd2f68321d143cdfb33383c
Author: sbrockhaus <[email protected]>
fix computation of offset
commit 88449e33822f9b197147c3eee7fef07aa70890f8
Author: Benjamin Hofner <[email protected]>
check results of stabsel
commit cf6ae9c669674a3d3e3e069d26bd00a06e2c9003
Author: Benjamin Hofner <[email protected]>
fix summary. closes #43.
commit 57117da7d03effb1b788d3f7f1daba7da782eb9b
Merge: b66755c 1e606c7
Author: Benjamin Hofner <[email protected]>
Merge pull request #41 from boost-R/fix_selected
commit fe83199db8aa4b4199be0e30b5f8efb0a9ffce46
Author: sbrockhaus <[email protected]>
new argument allow_matrix = FALSE in check_y_family() to allow for matrix response
commit 6243369c152d5191c85ac5c3e670f2b1f321b82e
Author: sbrockhaus <[email protected]>
argument timeformula into dots, check_timeformula into helpers
commit 1e606c72e9db6776a87b17e89291e744280665ec
Author: Janek <[email protected]>
fix selected and adapt tests
commit bc826eae98b81915baef6ee1341bc2838c04c088
Merge: cac3809 b66755c
Author: sbrockhaus <[email protected]>
solve conflict in manual
commit b66755c06da6a6e130eede3dae1956b8a3cce149
Author: Benjamin Hofner <[email protected]>
Updated tests
commit f78a0aad44c3a657859d807ee73fada011f1cd73
Author: Benjamin Hofner <[email protected]>
More tests
commit d7a21ad784c561d734d33f3306ba1f13e82418bc
Author: Benjamin Hofner <[email protected]>
Started fixing stabsel (see <FIXME> for open issues)
commit ccb833f17f62354f2de873a966b8008f733e26e4
Author: Benjamin Hofner <[email protected]>
Update Readme
commit 90cede61fc295c81063f00c62167dffefcaa5c63
Author: Benjamin Hofner <[email protected]>
Add reverse dependency checks
commit 3084a39a834c628a056557c2432130c7d6f45784
Author: Benjamin Hofner <[email protected]>
make sure the repository is set
commit 1f66eba5a0673726d9b04d042d2190653513bb30
Author: Benjamin Hofner <[email protected]>
Fixes typo
commit 9c8cc8a17b703c0c286b910fcc6fc2a8825943de
Author: sbrockhaus <[email protected]>
give more details in manual
commit cac3809d1d7586416d39c7c3fec0d77b48b675d2
Author: sbrockhaus <[email protected]>
give more details in manual
commit a16eb633de9b6999698b012e0bc8fe86a704f6e3
Author: sbrockhaus <[email protected]>
adapt mboostLSS_fit() such that it works with FDboost to get FDboostLSS
commit 814c60d90e56aaeec91a7d1ea110e073d5440376
Author: Benjamin Hofner <[email protected]>
Updated NEWS.Rd
commit c2db923cf84db32e6e89db644ee7ef4d684d35e8
Author: Benjamin Hofner <[email protected]>
cosmetics
commit 8ef6fb1f9de3e7d3fa848f4b185afa1629cf5c54
Author: Benjamin Hofner <[email protected]>
package now requires mboost >= 2.8-0
commit e29d8d1c63b42aff4cefd948562e99eaf5fcd3bf
Author: Benjamin Hofner <[email protected]>
Updated readme
commit abf76529b23d2897d7f141eff3c3e0d225c0f68d
Author: Benjamin Hofner <[email protected]>
risk(, merge = TRUE) did not correct for new offset risk. Fixes #37
commit 6ab3cc0cef24648c65414c8aea4db8cc5b4aad31
Author: Benjamin Hofner <[email protected]>
cosmetics
commit 87dc35acaa93f9ec70a8e97ae5a09014ee654caa
Author: Benjamin Hofner <[email protected]>
Updated references and really refer to Thomas et al in the manuals
commit 9e4238441ce7adbedadfdb226e402b70b3df9382
Author: Benjamin Hofner <[email protected]>
Updated DESCIPTION
commit c88eaa08f07c5d1a9cdb7f287224842169bdfec9
Author: Benjamin Hofner <[email protected]>
revert unwanted changes in README
commit 3602b027644ea9e52af63efdd119a10885d19a11
Merge: b0263d8 59566be
Author: Benjamin Hofner <[email protected]>
Merge pull request #36 from boost-R/devel
commit 59566be7abd6d4004e4739774732f6afa5bc5dd8
Author: Benjamin Hofner <[email protected]>
Use trusty distribution on travis
commit af370568e8c0a7158564b5af81b8288f2080f9c2
Author: Benjamin Hofner <[email protected]>
Update NEWS.Rd
commit 880294c5978d11251b68999e9700c8a39a7a8f84
Merge: 8dc9450 b0263d8
Author: Benjamin Hofner <[email protected]>
Merge recent changes from master branch to devel
commit 8dc9450b2288f42add3cc33b39e3284654a7637e
Author: Benjamin Hofner <[email protected]>
changed order of suggested packages
commit 0ae4dc73b7ee837ce1cf41b095cc2b581f8ef60b
Author: Benjamin Hofner <[email protected]>
typo
commit ce94c7b8fe65c799b34dddfc45d2662bc1832458
Author: Benjamin Hofner <[email protected]>
re-indent code
commit bb9a1da0f489f2f3be5d9bfbe9eb7fabfd15849e
Merge: 4f21eb6 6309410
Author: Benjamin Hofner <[email protected]>
Merge pull request #31 from boost-R/refactor_noncyc
commit 6309410fc4538f1a4bac3e15c673185bc9c78d06
Author: Janek <[email protected]>
initialize combined_risk in subset
commit 4c2d159f4ecfbddba851eda3e85a3ab67d42e1f0
Author: Janek <[email protected]>
remove notes
commit 86ebeb2a55e37c727d7443a192895bb313d15e87
Author: Benjamin Hofner <[email protected]>
initialize combined risk
commit 019666251f6e372511293f513245b72d36186769
Author: Benjamin Hofner <[email protected]>
reindent lines
commit 50ddb7b036f82b3abeb071d597407beae12634e5
Author: Benjamin Hofner <[email protected]>
shorten \usage lines wider than 90 characters
commit de4be0dec1c1e9b0fe7205ad9feb7521cb01a73b
Author: Benjamin Hofner <[email protected]>
make appveyor use github packages
commit b0263d8e8d1272f6d066103be6aa195875991b5d
Author: Benjamin Hofner <[email protected]>
make appveyor use github packages
commit 5b5190d7256f57a85feddd62959648f77fee271d
Author: Janek <[email protected]>
fix citation... again
commit 0dd7fe31853b29db050f3fba30f275abd4d0eb51
Author: Janek <[email protected]>
fix trace
commit 4f21eb6b32d17fb91e7aa2e9df573bdd976e14f7
Author: Benjamin Hofner <[email protected]>
Update DESCRIPTION
commit b41a55627245ca5b9526bdbeafec55bb32c52a2a
Author: Janek <[email protected]>
fix citation
commit f6b551c828643a16e4e18625c4e4433f3191e748
Author: Janek <[email protected]>
fix subset increase from zero
commit f76606c86576472def047946a97ad3bea50b3a08
Merge: 7e061b4 d675d3d
Author: Janek <[email protected]>
mstop=0
commit 7e061b49534ebca65365e7c9fa977cc9bb23baed
Author: Janek <[email protected]>
fix risk
commit 17c9674d59d4907014b6d304e7c1813b3331ef3b
Author: Janek <[email protected]>
start with mstop=0
commit d675d3dd2e18f2ad4fc662e10038d5a6d1e5cea3
Author: mayrandy <[email protected]>
fix tutorial issue #32 also for devel
commit 691048a4c7752faee57f8cb86741fbdceba9310a
Author: Benjamin Hofner <[email protected]>
Make risk work again (Fixes #32)
commit 0218d4efcc07eec8091f74b388e3b4343a26b248
Author: mayrandy <[email protected]>
make mixed type 4-parametric families work, fixes #28
commit 4a2d2349b7b2f3a9bfe8c6c171c482c7cc5a3876
Author: mayrandy <[email protected]>
update README
commit 371267b3da8a4896ef8bb150cac9925fd7dedd87
Author: Janek <[email protected]>
stop destroying the CITATION file...
commit f22530c035f332de281315718ee172a4c7c75f91
Author: Janek <[email protected]>
missing , -.-
commit 942b6317f6463720e472b0c71531a29bb852364b
Author: Janek <[email protected]>
cleanup
commit 9585836295cd2a8761a92e798ae5a0254acf845e
Author: Janek <[email protected]>
slight speed improvements
commit ec4b3f356c5ea1e194edcdba3a60a56fcfc3b4e9
Author: Janek <[email protected]>
Readme
commit 993167f528f4b187b383f4eccd5650a37d5064b8
Author: Janek <[email protected]>
citation
commit 34891bda05346e525f15f6c2e6deae43ff9d2b9a
Author: Janek <[email protected]>
remove outer version, rename inner to noncyclical
commit c865ee7caad15c035b4d52ddb40bb61ffd44f6c9
Author: Janek <[email protected]>
refactor noncyc fitting
commit 7f542a51fc12bd7b6ac1d2f186594f4ce7c98383
Author: mayrandy <[email protected]>
Include official tutoral paper in README.md
commit 94cd3e45fae059592f85c853f083a577cc24eaaa
Author: mayrandy <[email protected]>
incorporate JSS reference in vignette
commit cb5c07f8c0f4b49ceed0610195b210e8c20fa580
Author: mayrandy <[email protected]>
update ULRs using canonical form
commit 4f2f392ea81e1e6c2e36c76b1395ad74ec769c44
Author: mayrandy <[email protected]>
Update citations for JSS paper and CRAN update
commit 0d94a467398e0964662ac7c82f2e58b64f5f1bc9
Author: mayrandy <[email protected]>
Adding some tests
commit 32f0e6d621ef5bf441ccb0abb258c762fc927ad7
Author: mayrandy <[email protected]>
Include new option stabilization = "L2" which divides ngradient through mean(ngr^2).
commit f7a32e3e25d463c20655060a6762968bdf622c6b
Author: mayrandy <[email protected]>
re-order arguments in rd file
commit a981957a7f0d01f806a7ef3a0244dcdbd6cb4938
Author: mayrandy <[email protected]>
Include different links in as.families(), see #25
commit 4619cfe889679f9b7009ab193e514499cda77050
Author: Benjamin Hofner <[email protected]>
Do not use plot.cvrisk from mboost but plot.cvriskLSS(..., type = "line")
fixed some typoes etc.
commit ba403b17c316d790f7331f0ece6103ce6f1f9dd0
Author: Benjamin Hofner <[email protected]>
merged changes from #18 to devel
commit eb4e59aca44a9f98f4b3afd3b996252115068502
Author: Benjamin Hofner <[email protected]>
reindent lines
commit 4abbee41c80a53ec17a5c44d6c785ae49b3f4fb3
Merge: 2321180 e377769
Author: Benjamin Hofner <[email protected]>
Merge pull request #20 from boost-R/mstop_nc_fit
commit e377769df5f515917b34bef16bf249f5fb6aec53
Author: Benjamin Hofner <[email protected]>
use correct syntax; closes #19
commit 73ca5bc3c891355f9d01b21435814a9493020979
Author: mayrandy <[email protected]>
Update families.R
commit e64737dc9320d5020aabe61d3dbc6cd39ab4ee74
Author: Janek <[email protected]>
change mstop definition for noncyclical fitting
commit 23211807854e2c5ae4d96179416d792336182ca8
Author: Benjamin Hofner <[email protected]>
Added test and close #12
commit 109daf34aba93ff1821bb29df5c480348b99d2b3
Author: mayrandy <[email protected]>
Update as.families.R
commit e4b7cd07060fa34f9fdecd415565f012b2794f47
Merge: 84e7740 8e9083a
Author: Benjamin Hofner <[email protected]>
Merge branch 'devel' of https://github.com/boost-R/gamboostLSS into devel
commit 84e7740683bf6a40da3229cd0e2334990eb36853
Author: Benjamin Hofner <[email protected]>
Increased version to 1.5-0
Changed sequence of authors
commit b810261ca6968eba945c1a4a22a23e68fd873ba0
Author: Benjamin Hofner <[email protected]>
Update README.md
commit 8e9083a8b9d6baa8d9b97980e4a97d24067f84f3
Author: Benjamin Hofner <[email protected]>
Update README.md
commit 21b6e197ba14c011ccfcf2abc26734b7274d6dc7
Author: Benjamin Hofner <[email protected]>
Added tests for cvrisk and risk
commit ecfe9d22b818d440d1174a0015bb2cdb817ac51c
Author: Benjamin Hofner <[email protected]>
fixed coverage badge
commit 82683adb416a44fca3a194836c292b22de2c6eb0
Author: Benjamin Hofner <[email protected]>
Readme in devel branch supposed to show devel stats
commit bb3dc5e99ba719f6cf2ad7dedae6e61ca9d84799
Author: Benjamin Hofner <[email protected]>
Updated README.md
commit df49b82334ae34588dd43d4084e400adecab9989
Author: Benjamin Hofner <[email protected]>
Updated README.md
commit d303e4b276f025477557ac8e15ec6c426562a581
Author: Benjamin Hofner <[email protected]>
Updated travis-ci and appveyor
commit 7a9baad69ca73f9d994746d8f5b9ef5e330ee431
Author: Benjamin Hofner <[email protected]>
Fixed .travis.yml
Updated .Rbuildignore
commit a82f782cdb5df7c0ca49ec8c1e38e73f9d402e80
Author: Benjamin Hofner <[email protected]>
Fixed .travis.yml
Updated .Rbuildignore
commit 62d1cfeb765f23e65a1b4b3c3d4d999799a396d2
Author: Benjamin Hofner <[email protected]>
Updated travis-ci and appveyor
commit 9f50b4377aaaf1bfb24761aa8d03bdd23bbeddf5
Author: Benjamin Hofner <[email protected]>
Moved patch/ to parent directory
commit aab749b8104d7de448217e3c0697cbc8d0835e14
Author: Benjamin Hofner <[email protected]>
Moved pkg/ to parent folder
commit 530dafd8fd814437f5ad697408b1419ddeceb22c
Author: Benjamin Hofner <[email protected]>
Updated NEWS.md
commit f0f1c060e98c1bf376094089a184d4c1be380551
Author: Benjamin Hofner <[email protected]>
added Janek as author
commit 19626ead366e06b973553620525509560141b29e
Author: mayrandy <[email protected]>
fix error in manual
commit 4d2455196c712f6163acd3e6672b00c8afe676e2
Merge: 6f6aa6d 97e8f86
Author: ja-thomas <[email protected]>
Merge pull request #14 from fabian-s/fix-stabsel-for-listdata
commit 97e8f86da75512da45e02a1bf85645d90f72a69e
Author: fabian-s <[email protected]>
make stabsel work for list-shaped <data> coming from FDboost: use `<model>[[1]]$ydim` instead of `dim(attr(<model>, "data"))`
commit 0ef3caf74db0d92158b058b1d6e9ae98158bef26
Author: fabian-s <[email protected]>
make stabsel work fpr list-shaped <data>: use `<model>[[1]]$ydim` instead of `dim(attr(<model>, "data"))`
commit 6f6aa6dacae4aa5e79250b3865b0856c6c21c6f8
Author: janek <[email protected]>
help file for stabsel, closes #11
commit b6f80aeb4ad1b1e43306f1f09a4e79381084c556
Author: janek <[email protected]>
fixed issue #10
commit 7fbb813a8ddd19aba2c39fe4b823ca79e40dbc9f
Author: Benjamin Hofner <[email protected]>
Update appveyor.yml
commit 0f6f5e528281e943fbe4016b15df3f9565267d5d
Author: Benjamin Hofner <[email protected]>
Update repository to boost-R
commit 9cab89468aca9f35ac56e542401c3512cffa155b
Author: Benjamin Hofner <[email protected]>
Merged gamboostLSS 1.2-1 to pkg
commit bf344e5dcd36eb34eb312f0980838615b3d77842
Author: Benjamin Hofner <[email protected]>
gamboostLSS 1.2-1 on its way to CRAN
commit 1486382e5c226ab743756bbe5379a818d1c7c230
Author: Benjamin Hofner <[email protected]>
Updated .Rout.save files
commit 2c552a9a61c8befccbb28ebec102a473a7e7c0a4
Author: Benjamin Hofner <[email protected]>
Cleanup
commit 082c25cda9627b5e4074357da9f36dba4b11228c
Merge: 1464e83 d9667c6
Author: Benjamin Hofner <[email protected]>
Merge branch 'master' of github.com:hofnerb/gamboostLSS
commit 1464e83e50ff921f2b15baf4e8e69b2d87892034
Author: Benjamin Hofner <[email protected]>
Merge changes from patch to pkg
commit 11548528476620626780709bf1df8b3016ab76f1
Author: Benjamin Hofner <[email protected]>
Release candidate 1.2-1
commit a28230488ccf390979fc3674a7a36c867341909f
Author: Benjamin Hofner <[email protected]>
Fixed bug in cvrisk when no families are specified. Closes #9
commit 8b93bdc1f8ae2131dcdaf89726fd754dd43f763a
Author: Benjamin Hofner <[email protected]>
Added gamboostLSS_intern to NAMESPACE and patch/...
commit d9667c60ecbd5189b6cc57d1be161ddadc00a646
Merge: 7daead6 bfa9727
Author: janek <[email protected]>
Merge branch 'noncyclical_fitting'
commit bfa97275fd5cc896167ceec9bbbd49a65713d6b1
Author: janek <[email protected]>
replaced = with <-
commit 7daead622a6abcca16b88549e4ced3ebf9dc8e96
Merge: 07747d1 becee65
Author: Benjamin Hofner <[email protected]>
Merge branch 'master' of github.com:hofnerb/gamboostLSS
commit 07747d1882bebd2e2bd71c1586c44de3b3610330
Author: Benjamin Hofner <[email protected]>
Added gamboostLSS_intern to make FDboost happy
commit becee653b8a8f467e1578877356b649c69d12170
Author: Benjamin Hofner <[email protected]>
Update README.md
commit 9dbbb204883ec3b15091d66f1f9f4eaa6d20e2c8
Author: Benjamin Hofner <[email protected]>
Update README.md
commit c0c634c957291a96b7af6ada3ea684af2e6507d8
Author: Benjamin Hofner <[email protected]>
Update README.md
commit 9d7202f5503f18f45bb4531c9db8382be2aeb114
Author: janek <[email protected]>
fixed missing match.arg in mboostLSS
commit ae00aaa56dc27c8d4c7cd649d53816b2323581ae
Author: Benjamin Hofner <[email protected]>
AppVeyor
commit 38634d2b5cb030f7a7fd1a178e23f81a78d57204
Author: janek <[email protected]>
added selected merge, and stabsel for nc fitting
commit 4c0942b343bd4c4280f5a5efc58fe3e0f71cd0ab
Author: Benjamin Hofner <[email protected]>
also modified test for pkg/
commit 3cec7e04e6bd92a1353e6068b302fb1a84cc1571
Author: Benjamin Hofner <[email protected]>
Modified test as stabilized WeibullLSS cannot be fitted to the simulated data
commit 355a0a89cb399ed3dc14a2076c629386e61c36a0
Author: Benjamin Hofner <[email protected]>
Updated .Rout.save files
commit 7b320a72eda720c858565cdb7b303053abc9564d
Author: Benjamin Hofner <[email protected]>
AppVeyor: try to make artefacts available
commit 592dd9ad4d35082c1fcc997cadae9e3c6bc67625
Author: janek <[email protected]>
fixed bug for outer fitting, where u was not updated
commit 8d1798c63f136278bf9016e723f9d14fabbcb4c7
Author: janek <[email protected]>
fixed wrong definition again, names are confusing...
commit e26ccc01ba9af8ad0810c42d1b732665268afa0e
Author: janek <[email protected]>
fixed wrong definition of Iboost inner and outer
commit d76bb85be5122d4010c9d17e99f231a990296e3e
Author: janek <[email protected]>
new tests, model reduction for inner still not correctly working
commit df0c35bc9226081c5eb24eb1445a3a271408bd40
Author: janek <[email protected]>
moved fitting function to method call, which uses different iBoost variants
commit b9bd78cd2b8fcfbc62a8274521edb4b99569b46e
Author: janek <[email protected]>
fixed bug with oobrisk but no weights
commit 50773ef27a93f1f1c706147ba594a1ad14492d26
Author: janek <[email protected]>
added gammboost outer loss functionality
commit f6db804758da48a1f7d58d9bd8e83c5d822ee5f8
Author: janek <[email protected]>
outer loss fitting with bols
commit 2149e2f293e12ba0e1241dee21dcf954e0fab376
Author: janek <[email protected]>
experimental fitting with outer loss
commit 89d0535bd08f98e64f2485b8c9bfc0b39de40084
Author: Benjamin Hofner <[email protected]>
Improve output of print and summary for models (closes #7)
commit e833780fc0a7f67dafc6150e1320959dc2b5fb1a
Author: janek <[email protected]>
second fix for wrong oob weights
commit 729391a47bba44934e1301e1fd37a99a5a9a463a
Author: janek <[email protected]>
fixed bug, where the subset function startet with wrong nuisence update
commit e5422ba15c16f37082b34086730dfd7427cd86e1
Merge: a5a9267 daa7a4a
Author: janek <[email protected]>
Merge branch 'master' of https://github.com/hofnerb/gamboostLSS into noncyclical_fitting
commit a5a92676b41790ae9194f21827e5908f4ecd4b3a
Author: janek <[email protected]>
test for oob fitting bug
commit 033800421678f35501edc0b479af0f1734e3e6de
Author: janek <[email protected]>
fixed bug where oob weights where used to fit the model
commit 95fd89d4f1e2dee4a8aceb298de03a469004a375
Author: janek <[email protected]>
added test function for nc fitting
commit 9e9077fa57b772b015e90883594314b9b5db3ae0
Author: janek <[email protected]>
fixed error in combined_risk init
commit 0b3c4b477fc08c826d9749e2f6fddda883ff7a37