File tree 4 files changed +14
-29
lines changed
4 files changed +14
-29
lines changed Original file line number Diff line number Diff line change
1
+ ##### Version 0.4.0
2
+ * New CRAN version. New CRAN versions will be 0.x.0, development versions 0.x.y
3
+
1
4
##### Version 0.3.9
2
5
* Reduce memory usage of savest forest objects (changed child.nodeIDs interface)
3
6
4
7
##### Version 0.3.8
5
- * Remove tuning functions, please use mlr or caret.
8
+ * Remove tuning functions, please use mlr or caret
6
9
7
10
##### Version 0.3.7
8
11
* Fix bug with alternative interface and prediction
Original file line number Diff line number Diff line change 1
1
Package: ranger
2
2
Type: Package
3
3
Title: A Fast Implementation of Random Forests
4
- Version: 0.3.9
5
- Date: 2016-03-22
4
+ Version: 0.4.0
5
+ Date: 2016-04-07
6
6
Author: Marvin N. Wright
7
7
Maintainer: Marvin N. Wright <
[email protected] >
8
- Description: A fast implementation of Random Forests, particularly suited for high dimensional data. Ensembles of
9
- classification, regression, survival and probability prediction trees are supported. Data from
10
- genome-wide association studies can be analyzed efficiently. In addition to data frames, datasets of
11
- class 'gwaa.data' (R package GenABEL) can be directly analyzed.
8
+ Description: A fast implementation of Random Forests, particularly suited for high dimensional data. Ensembles
9
+ of classification, regression, survival and probability prediction trees are supported. Data from
10
+ genome-wide association studies can be analyzed efficiently. In addition to data frames, datasets
11
+ of class 'gwaa.data' (R package GenABEL) can be directly analyzed.
12
12
License: GPL-3
13
13
Imports: Rcpp (>= 0.11.2)
14
14
LinkingTo: Rcpp
Original file line number Diff line number Diff line change 1
- ##### Version 0.3.9
1
+ ##### Version 0.4.0
2
2
* Reduce memory usage of savest forest objects (changed child.nodeIDs interface)
3
-
4
- ##### Version 0.3.8
5
- * Remove tuning functions, please use mlr or caret.
6
-
7
- ##### Version 0.3.7
8
- * Fix bug with alternative interface and prediction
9
- * Small fixes
10
-
11
- ##### Version 0.3.6
12
3
* Add keep.inbag option to track in-bag counts
13
4
* Add option sample.fraction for fraction of sampled observations
14
-
15
- ##### Version 0.3.5
16
5
* Add tree-wise split.select.weights
17
-
18
- ##### Version 0.3.4
19
6
* Add predict.all option in predict() to get individual predictions for each tree for classification and regression
20
- * Small changes in documentation
21
-
22
- ##### Version 0.3.3
23
7
* Add case-specific random forests
24
-
25
- ##### Version 0.3.2
26
8
* Add case weights (weighted bootstrapping or subsampling)
27
-
28
- ##### Version 0.3.1
9
+ * Remove tuning functions, please use mlr or caret
29
10
* Catch error of outdated gcc not supporting C++11 completely
11
+ * Bug fixes
30
12
31
13
##### Version 0.3.0
32
14
* Allow the user to interrupt computation from R
Original file line number Diff line number Diff line change 1
1
#ifndef RANGER_VERSION
2
- #define RANGER_VERSION "0.3.9 "
2
+ #define RANGER_VERSION "0.4.0 "
3
3
#endif
You can’t perform that action at this time.
0 commit comments