[Robast-commits] r1079 - branches/robast-1.1/pkg/RobAStBase branches/robast-1.1/pkg/RobAStBase/R branches/robast-1.1/pkg/RobAStBase/man branches/robast-1.2/pkg/RobAStBase branches/robast-1.2/pkg/RobAStBase/R branches/robast-1.2/pkg/RobAStBase/man pkg/RobAStBase pkg/RobAStBase/R pkg/RobAStBase/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Jul 31 22:53:06 CEST 2018


Author: ruckdeschel
Date: 2018-07-31 22:53:06 +0200 (Tue, 31 Jul 2018)
New Revision: 1079

Modified:
   branches/robast-1.1/pkg/RobAStBase/DESCRIPTION
   branches/robast-1.1/pkg/RobAStBase/R/RobAStBaseOptions.R
   branches/robast-1.1/pkg/RobAStBase/man/RobAStBaseOptions.Rd
   branches/robast-1.2/pkg/RobAStBase/DESCRIPTION
   branches/robast-1.2/pkg/RobAStBase/R/RobAStBaseOptions.R
   branches/robast-1.2/pkg/RobAStBase/man/RobAStBaseOptions.Rd
   pkg/RobAStBase/DESCRIPTION
   pkg/RobAStBase/R/RobAStBaseOptions.R
   pkg/RobAStBase/man/RobAStBaseOptions.Rd
Log:
[RobAStBase] trunk & branch 1.1 & branch 1.2:
+ DESCRIPTION suggests ROptEst >= 1.1.0
+ new RobAStBaseOption modifyICwarn to possibly avoid unnecessary warnings in Infos 


Modified: branches/robast-1.1/pkg/RobAStBase/DESCRIPTION
===================================================================
--- branches/robast-1.1/pkg/RobAStBase/DESCRIPTION	2018-07-31 13:36:27 UTC (rev 1078)
+++ branches/robast-1.1/pkg/RobAStBase/DESCRIPTION	2018-07-31 20:53:06 UTC (rev 1079)
@@ -5,7 +5,7 @@
 Description: Base S4-classes and functions for robust asymptotic statistics.
 Depends: R(>= 2.14.0), methods, rrcov, distr(>= 2.5.2), distrEx(>= 2.5), distrMod(>= 2.5.2),
         RandVar(>= 0.9.2)
-Suggests: ROptEst, RUnit (>= 0.4.26)
+Suggests: ROptEst(>=1.1.0), RUnit(>= 0.4.26)
 Imports: startupmsg, graphics, grDevices, stats
 Authors at R: c(person("Matthias", "Kohl", role=c("cre", "cph", "aut"),
         email="Matthias.Kohl at stamats.de"), person("Peter", "Ruckdeschel",role=c("aut", "cph")),

Modified: branches/robast-1.1/pkg/RobAStBase/R/RobAStBaseOptions.R
===================================================================
--- branches/robast-1.1/pkg/RobAStBase/R/RobAStBaseOptions.R	2018-07-31 13:36:27 UTC (rev 1078)
+++ branches/robast-1.1/pkg/RobAStBase/R/RobAStBaseOptions.R	2018-07-31 20:53:06 UTC (rev 1079)
@@ -4,7 +4,8 @@
     IC.UpdateInKer = NULL,
     all.verbose = FALSE,
     withICList = FALSE,
-    withPICList = FALSE
+    withPICList = FALSE,
+    modifyICwarn = TRUE
 )
 
 RobAStBaseOptions <- function(...) {

Modified: branches/robast-1.1/pkg/RobAStBase/man/RobAStBaseOptions.Rd
===================================================================
--- branches/robast-1.1/pkg/RobAStBase/man/RobAStBaseOptions.Rd	2018-07-31 13:36:27 UTC (rev 1078)
+++ branches/robast-1.1/pkg/RobAStBase/man/RobAStBaseOptions.Rd	2018-07-31 20:53:06 UTC (rev 1079)
@@ -2,7 +2,15 @@
 \alias{RobAStBaseOptions}
 \alias{getRobAStBaseOption}
 \alias{kStepUseLast}
+\alias{modifyICwarn}
+\alias{withUpdateInKer}
+\alias{IC.UpdateInKer}
+\alias{all.verbose}
+\alias{withICList}
+\alias{withPICList}
+\alias{modifyICwarn}
 
+
 \title{Function to change the global variables of the package `RobAStBase' }
 \description{With \code{RobAStBaseOptions} you can inspect and change 
   the global variables of the package \pkg{RobAStBase}. }
@@ -30,17 +38,20 @@
     the value of the one- resp. k-step estimate which may take quite a long 
     time depending on the model. }
   \item{withUpdateInKer:}{if there is a non-trivial trafo in the model with matrix \eqn{D}, shall
-  the parameter be updated on \eqn{{\rm ker}(D)}{ker(D)}? defaults to \code{FALSE}.}
+  the parameter be updated on \eqn{{\rm ker}(D)}{ker(D)}? Defaults to \code{FALSE}.}
   \item{IC.UpdateInKer:}{if there is a non-trivial trafo in the model with matrix \eqn{D},
   the IC to be used for this; if \code{NULL} the result of \code{getboundedIC(L2Fam,D)} is taken;
   this IC will then be projected onto \eqn{{\rm ker}(D)}{ker(D)}; defaults to \code{NULL}.}
   \item{all.verbose:}{argument \code{verbose} passed on by default to many calls of
   \code{optIC}, \code{radiusminimaxIC}, \code{getinfRobIC} etc.; well suited
-  for testing purposes.}
+  for testing purposes. Defaults to \code{FALSE}.}
   \item{withPICList:}{logical: shall slot \code{pICList} of return value of \code{kStepEstimator}
-  be filled?}
+  be filled? Defaults to \code{FALSE}.}
   \item{withICList:}{logical: shall slot \code{ICList} of return value of \code{kStepEstimator}
-  be filled?}
+  be filled? Defaults to \code{FALSE}.}
+  \item{modifyICwarn:}{logical: should a (warning) information be added if \code{modifyIC}
+  is applied and hence some optimality information could no longer be valid? Defaults to
+  \code{TRUE}.}
 }
 }
 %\references{}

Modified: branches/robast-1.2/pkg/RobAStBase/DESCRIPTION
===================================================================
--- branches/robast-1.2/pkg/RobAStBase/DESCRIPTION	2018-07-31 13:36:27 UTC (rev 1078)
+++ branches/robast-1.2/pkg/RobAStBase/DESCRIPTION	2018-07-31 20:53:06 UTC (rev 1079)
@@ -4,7 +4,7 @@
 Title: Robust Asymptotic Statistics
 Description: Base S4-classes and functions for robust asymptotic statistics.
 Depends: R(>= 2.14.0), methods, rrcov, distr(>= 2.5.2), distrEx(>= 2.5), distrMod(>= 2.5.2), RandVar(>= 0.9.2)
-Suggests: ROptEst, RUnit (>= 0.4.26)
+Suggests: ROptEst(>= 1.1.0), RUnit(>= 0.4.26)
 Imports: startupmsg, graphics, grDevices, stats
 Authors at R: c(person("Matthias", "Kohl", role=c("cre", "cph", "aut"), email="Matthias.Kohl at stamats.de"), person("Peter",
             "Ruckdeschel",role=c("aut", "cph")), person("Mykhailo", "Pupashenko", role="ctb", comment="contributed wrapper functions for

Modified: branches/robast-1.2/pkg/RobAStBase/R/RobAStBaseOptions.R
===================================================================
--- branches/robast-1.2/pkg/RobAStBase/R/RobAStBaseOptions.R	2018-07-31 13:36:27 UTC (rev 1078)
+++ branches/robast-1.2/pkg/RobAStBase/R/RobAStBaseOptions.R	2018-07-31 20:53:06 UTC (rev 1079)
@@ -4,7 +4,8 @@
     IC.UpdateInKer = NULL,
     all.verbose = FALSE,
     withICList = FALSE,
-    withPICList = FALSE
+    withPICList = FALSE,
+    modifyICwarn = TRUE
 )
 
 RobAStBaseOptions <- function(...) {

Modified: branches/robast-1.2/pkg/RobAStBase/man/RobAStBaseOptions.Rd
===================================================================
--- branches/robast-1.2/pkg/RobAStBase/man/RobAStBaseOptions.Rd	2018-07-31 13:36:27 UTC (rev 1078)
+++ branches/robast-1.2/pkg/RobAStBase/man/RobAStBaseOptions.Rd	2018-07-31 20:53:06 UTC (rev 1079)
@@ -2,7 +2,15 @@
 \alias{RobAStBaseOptions}
 \alias{getRobAStBaseOption}
 \alias{kStepUseLast}
+\alias{modifyICwarn}
+\alias{withUpdateInKer}
+\alias{IC.UpdateInKer}
+\alias{all.verbose}
+\alias{withICList}
+\alias{withPICList}
+\alias{modifyICwarn}
 
+
 \title{Function to change the global variables of the package `RobAStBase' }
 \description{With \code{RobAStBaseOptions} you can inspect and change 
   the global variables of the package \pkg{RobAStBase}. }
@@ -30,17 +38,20 @@
     the value of the one- resp. k-step estimate which may take quite a long 
     time depending on the model. }
   \item{withUpdateInKer:}{if there is a non-trivial trafo in the model with matrix \eqn{D}, shall
-  the parameter be updated on \eqn{{\rm ker}(D)}{ker(D)}? defaults to \code{FALSE}.}
+  the parameter be updated on \eqn{{\rm ker}(D)}{ker(D)}? Defaults to \code{FALSE}.}
   \item{IC.UpdateInKer:}{if there is a non-trivial trafo in the model with matrix \eqn{D},
   the IC to be used for this; if \code{NULL} the result of \code{getboundedIC(L2Fam,D)} is taken;
   this IC will then be projected onto \eqn{{\rm ker}(D)}{ker(D)}; defaults to \code{NULL}.}
   \item{all.verbose:}{argument \code{verbose} passed on by default to many calls of
   \code{optIC}, \code{radiusminimaxIC}, \code{getinfRobIC} etc.; well suited
-  for testing purposes.}
+  for testing purposes. Defaults to \code{FALSE}.}
   \item{withPICList:}{logical: shall slot \code{pICList} of return value of \code{kStepEstimator}
-  be filled?}
+  be filled? Defaults to \code{FALSE}.}
   \item{withICList:}{logical: shall slot \code{ICList} of return value of \code{kStepEstimator}
-  be filled?}
+  be filled? Defaults to \code{FALSE}.}
+  \item{modifyICwarn:}{logical: should a (warning) information be added if \code{modifyIC}
+  is applied and hence some optimality information could no longer be valid? Defaults to
+  \code{TRUE}.}
 }
 }
 %\references{}

Modified: pkg/RobAStBase/DESCRIPTION
===================================================================
--- pkg/RobAStBase/DESCRIPTION	2018-07-31 13:36:27 UTC (rev 1078)
+++ pkg/RobAStBase/DESCRIPTION	2018-07-31 20:53:06 UTC (rev 1079)
@@ -5,7 +5,7 @@
 Description: Base S4-classes and functions for robust asymptotic statistics.
 Depends: R(>= 2.14.0), methods, rrcov, distr(>= 2.5.2), distrEx(>= 2.5), distrMod(>= 2.5.2), RandVar(>=
          0.9.2)
-Suggests: ROptEst, RUnit (>= 0.4.26)
+Suggests: ROptEst(>=1.1.0), RUnit(>= 0.4.26)
 Imports: startupmsg, graphics, grDevices, stats
 Authors at R: c(person("Matthias", "Kohl", role=c("cre", "cph", "aut"), email="Matthias.Kohl at stamats.de"),
          person("Peter", "Ruckdeschel",role=c("aut", "cph")), person("Mykhailo", "Pupashenko", role="ctb",

Modified: pkg/RobAStBase/R/RobAStBaseOptions.R
===================================================================
--- pkg/RobAStBase/R/RobAStBaseOptions.R	2018-07-31 13:36:27 UTC (rev 1078)
+++ pkg/RobAStBase/R/RobAStBaseOptions.R	2018-07-31 20:53:06 UTC (rev 1079)
@@ -4,7 +4,8 @@
     IC.UpdateInKer = NULL,
     all.verbose = FALSE,
     withICList = FALSE,
-    withPICList = FALSE
+    withPICList = FALSE,
+    modifyICwarn = TRUE
 )
 
 RobAStBaseOptions <- function(...) {

Modified: pkg/RobAStBase/man/RobAStBaseOptions.Rd
===================================================================
--- pkg/RobAStBase/man/RobAStBaseOptions.Rd	2018-07-31 13:36:27 UTC (rev 1078)
+++ pkg/RobAStBase/man/RobAStBaseOptions.Rd	2018-07-31 20:53:06 UTC (rev 1079)
@@ -2,7 +2,15 @@
 \alias{RobAStBaseOptions}
 \alias{getRobAStBaseOption}
 \alias{kStepUseLast}
+\alias{modifyICwarn}
+\alias{withUpdateInKer}
+\alias{IC.UpdateInKer}
+\alias{all.verbose}
+\alias{withICList}
+\alias{withPICList}
+\alias{modifyICwarn}
 
+
 \title{Function to change the global variables of the package `RobAStBase' }
 \description{With \code{RobAStBaseOptions} you can inspect and change 
   the global variables of the package \pkg{RobAStBase}. }
@@ -30,17 +38,20 @@
     the value of the one- resp. k-step estimate which may take quite a long 
     time depending on the model. }
   \item{withUpdateInKer:}{if there is a non-trivial trafo in the model with matrix \eqn{D}, shall
-  the parameter be updated on \eqn{{\rm ker}(D)}{ker(D)}? defaults to \code{FALSE}.}
+  the parameter be updated on \eqn{{\rm ker}(D)}{ker(D)}? Defaults to \code{FALSE}.}
   \item{IC.UpdateInKer:}{if there is a non-trivial trafo in the model with matrix \eqn{D},
   the IC to be used for this; if \code{NULL} the result of \code{getboundedIC(L2Fam,D)} is taken;
   this IC will then be projected onto \eqn{{\rm ker}(D)}{ker(D)}; defaults to \code{NULL}.}
   \item{all.verbose:}{argument \code{verbose} passed on by default to many calls of
   \code{optIC}, \code{radiusminimaxIC}, \code{getinfRobIC} etc.; well suited
-  for testing purposes.}
+  for testing purposes. Defaults to \code{FALSE}.}
   \item{withPICList:}{logical: shall slot \code{pICList} of return value of \code{kStepEstimator}
-  be filled?}
+  be filled? Defaults to \code{FALSE}.}
   \item{withICList:}{logical: shall slot \code{ICList} of return value of \code{kStepEstimator}
-  be filled?}
+  be filled? Defaults to \code{FALSE}.}
+  \item{modifyICwarn:}{logical: should a (warning) information be added if \code{modifyIC}
+  is applied and hence some optimality information could no longer be valid? Defaults to
+  \code{TRUE}.}
 }
 }
 %\references{}



More information about the Robast-commits mailing list