-
-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from mnwright/tree_splitweights
Tree split weights (issue #15)
- Loading branch information
Showing
12 changed files
with
121 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
Package: ranger | ||
Type: Package | ||
Title: A Fast Implementation of Random Forests | ||
Version: 0.3.4 | ||
Date: 2015-12-01 | ||
Version: 0.3.5 | ||
Date: 2015-12-03 | ||
Author: Marvin N. Wright | ||
Maintainer: Marvin N. Wright <[email protected]> | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#ifndef RANGER_VERSION | ||
#define RANGER_VERSION "0.3.4" | ||
#define RANGER_VERSION "0.3.5" | ||
#endif |