Skip to content

Commit

Permalink
release new CRAN version
Browse files Browse the repository at this point in the history
  • Loading branch information
Marvin Wright committed Apr 7, 2016
1 parent 1ff6246 commit 538caff
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 29 deletions.
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
##### Version 0.4.0
* New CRAN version. New CRAN versions will be 0.x.0, development versions 0.x.y

##### Version 0.3.9
* Reduce memory usage of savest forest objects (changed child.nodeIDs interface)

##### Version 0.3.8
* Remove tuning functions, please use mlr or caret.
* Remove tuning functions, please use mlr or caret

##### Version 0.3.7
* Fix bug with alternative interface and prediction
Expand Down
12 changes: 6 additions & 6 deletions ranger-r-package/ranger/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package: ranger
Type: Package
Title: A Fast Implementation of Random Forests
Version: 0.3.9
Date: 2016-03-22
Version: 0.4.0
Date: 2016-04-07
Author: Marvin N. Wright
Maintainer: Marvin N. Wright <wright@imbs.uni-luebeck.de>
Description: A fast implementation of Random Forests, particularly suited for high dimensional data. Ensembles of
classification, regression, survival and probability prediction trees are supported. Data from
genome-wide association studies can be analyzed efficiently. In addition to data frames, datasets of
class 'gwaa.data' (R package GenABEL) can be directly analyzed.
Description: A fast implementation of Random Forests, particularly suited for high dimensional data. Ensembles
of classification, regression, survival and probability prediction trees are supported. Data from
genome-wide association studies can be analyzed efficiently. In addition to data frames, datasets
of class 'gwaa.data' (R package GenABEL) can be directly analyzed.
License: GPL-3
Imports: Rcpp (>= 0.11.2)
LinkingTo: Rcpp
Expand Down
24 changes: 3 additions & 21 deletions ranger-r-package/ranger/NEWS
Original file line number Diff line number Diff line change
@@ -1,32 +1,14 @@
##### Version 0.3.9
##### Version 0.4.0
* Reduce memory usage of savest forest objects (changed child.nodeIDs interface)

##### Version 0.3.8
* Remove tuning functions, please use mlr or caret.

##### Version 0.3.7
* Fix bug with alternative interface and prediction
* Small fixes

##### Version 0.3.6
* Add keep.inbag option to track in-bag counts
* Add option sample.fraction for fraction of sampled observations

##### Version 0.3.5
* Add tree-wise split.select.weights

##### Version 0.3.4
* Add predict.all option in predict() to get individual predictions for each tree for classification and regression
* Small changes in documentation

##### Version 0.3.3
* Add case-specific random forests

##### Version 0.3.2
* Add case weights (weighted bootstrapping or subsampling)

##### Version 0.3.1
* Remove tuning functions, please use mlr or caret
* Catch error of outdated gcc not supporting C++11 completely
* Bug fixes

##### Version 0.3.0
* Allow the user to interrupt computation from R
Expand Down
2 changes: 1 addition & 1 deletion source/src/version.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#ifndef RANGER_VERSION
#define RANGER_VERSION "0.3.9"
#define RANGER_VERSION "0.4.0"
#endif

0 comments on commit 538caff

Please sign in to comment.