[Mboost-commits] r855 - / pkg/mboostDevel pkg/mboostDevel/R pkg/mboostPatch

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Jul 3 13:07:38 CEST 2015


Author: hofner
Date: 2015-07-03 13:07:37 +0200 (Fri, 03 Jul 2015)
New Revision: 855

Modified:
   README.md
   pkg/mboostDevel/DESCRIPTION
   pkg/mboostDevel/NAMESPACE
   pkg/mboostDevel/R/stabsel.R
   pkg/mboostPatch/DESCRIPTION
   pkg/mboostPatch/NAMESPACE
Log:
Adhere to CRAN policies regarding import of base packages

Modified: README.md
===================================================================
--- README.md	2015-06-24 14:51:11 UTC (rev 854)
+++ README.md	2015-07-03 11:07:37 UTC (rev 855)
@@ -7,7 +7,7 @@
 `mboost` implements boosting algorithms for fitting generalized linear, additive and interaction models 
 to potentially high-dimensional data. 
 
-This [github repositiry](https://github.com/hofnerb/mboost) is essentially just
+This [GitHub repository](https://github.com/hofnerb/mboost) is essentially just
 a copy of the r-forge repository which is hosted at
 [R-forge](https://r-forge.r-project.org/projects/mboost).
 
@@ -38,13 +38,13 @@
   ```
 
 - Alternatively, both the current patch and development versions of `mboost` (or `mboostDevel` respectively) 
-  can be downloaded from R-forge if the built was successfull:
+  can be downloaded from R-forge if it was successfully built:
   ```
   install.packages("mboost", repos = "http://r-forge.r-project.org")
   ## or
   install.packages("mboostDevel", repos = "http://r-forge.r-project.org")
   ```
-  However, currently these builts often don't succeed and furthemore are only available 
+  However, currently these builds often don't succeed and furthermore are only available 
   for recent versions of R.
   
 ## Using mboost

Modified: pkg/mboostDevel/DESCRIPTION
===================================================================
--- pkg/mboostDevel/DESCRIPTION	2015-06-24 14:51:11 UTC (rev 854)
+++ pkg/mboostDevel/DESCRIPTION	2015-07-03 11:07:37 UTC (rev 855)
@@ -16,7 +16,8 @@
   trees as base-learners for fitting generalized linear, additive
   and interaction models to potentially high-dimensional data.
 Depends: R (>= 2.14.0), methods, stats, parallel, stabs (>= 0.5-0)
-Imports: Matrix, survival, splines, lattice, nnls, quadprog, utils
+Imports: Matrix, survival, splines, lattice, nnls, quadprog, utils,
+ 	graphics, grDevices
 Suggests: party (>= 1.0-3), TH.data, MASS, fields, BayesX, gbm, mlbench,
         RColorBrewer, rpart (>= 4.0-3), randomForest, nnet
 LazyData: yes

Modified: pkg/mboostDevel/NAMESPACE
===================================================================
--- pkg/mboostDevel/NAMESPACE	2015-06-24 14:51:11 UTC (rev 854)
+++ pkg/mboostDevel/NAMESPACE	2015-07-03 11:07:37 UTC (rev 855)
@@ -11,6 +11,8 @@
 importFrom(nnls, nnls)
 importFrom(quadprog, solve.QP)
 importFrom(utils, packageDescription)
+importFrom("graphics", "abline", "axis", "box", "lines", "matlines", "matplot", "plot", "points", "polygon")
+importFrom("grDevices", "hcl", "rgb")
 
 export(glmboost,
        gamboost,

Modified: pkg/mboostDevel/R/stabsel.R
===================================================================
--- pkg/mboostDevel/R/stabsel.R	2015-06-24 14:51:11 UTC (rev 854)
+++ pkg/mboostDevel/R/stabsel.R	2015-07-03 11:07:37 UTC (rev 855)
@@ -37,7 +37,7 @@
     if (!extends(class(x), "glmboost"))
         nms <- names(nms)
 
-    ## if verbose, count violations (i.e., mstop too small)
+    ## count violations (i.e., mstop too small)
     violations <- rep(FALSE, ifelse(sampling.type == "MB", B, 2 * B))
 
     if (verbose)

Modified: pkg/mboostPatch/DESCRIPTION
===================================================================
--- pkg/mboostPatch/DESCRIPTION	2015-06-24 14:51:11 UTC (rev 854)
+++ pkg/mboostPatch/DESCRIPTION	2015-07-03 11:07:37 UTC (rev 855)
@@ -16,7 +16,8 @@
   trees as base-learners for fitting generalized linear, additive
   and interaction models to potentially high-dimensional data.
 Depends: R (>= 2.14.0), methods, stats, parallel, stabs (>= 0.5-0)
-Imports: Matrix, survival, splines, lattice, nnls, quadprog, utils
+Imports: Matrix, survival, splines, lattice, nnls, quadprog, utils,
+	graphics, grDevices
 Suggests: party (>= 1.0-3), TH.data, MASS, fields, BayesX, gbm, mlbench,
         RColorBrewer, rpart (>= 4.0-3), randomForest, nnet
 LazyData: yes

Modified: pkg/mboostPatch/NAMESPACE
===================================================================
--- pkg/mboostPatch/NAMESPACE	2015-06-24 14:51:11 UTC (rev 854)
+++ pkg/mboostPatch/NAMESPACE	2015-07-03 11:07:37 UTC (rev 855)
@@ -11,6 +11,8 @@
 importFrom(nnls, nnls)
 importFrom(quadprog, solve.QP)
 importFrom(utils, packageDescription)
+importFrom("graphics", "abline", "axis", "box", "lines", "matlines", "matplot", "plot", "points", "polygon")
+importFrom("grDevices", "hcl", "rgb")
 
 export(glmboost,
        gamboost,



More information about the Mboost-commits mailing list