[Robast-commits] r228 - in pkg: ROptEst/inst ROptRegTS/inst RobLox/inst RobRex/inst

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Nov 28 17:08:47 CET 2008


Author: stamats
Date: 2008-11-28 17:08:47 +0100 (Fri, 28 Nov 2008)
New Revision: 228

Added:
   pkg/ROptEst/inst/NEWS
   pkg/ROptRegTS/inst/NEWS
   pkg/RobLox/inst/NEWS
   pkg/RobRex/inst/NEWS
Modified:
   pkg/ROptEst/inst/CITATION
   pkg/ROptRegTS/inst/CITATION
   pkg/RobLox/inst/CITATION
   pkg/RobRex/inst/CITATION
Log:
added NEWS files, updated CITATION files using code by A. Zeileis

Modified: pkg/ROptEst/inst/CITATION
===================================================================
--- pkg/ROptEst/inst/CITATION	2008-11-28 14:21:50 UTC (rev 227)
+++ pkg/ROptEst/inst/CITATION	2008-11-28 16:08:47 UTC (rev 228)
@@ -1,3 +1,7 @@
+if(!exists("meta") || is.null(meta)) meta <- packageDescription("ROptEst")
+year <- sub("-.*", "", meta$Date)
+note <- sprintf("R package version %s", meta$Version)
+
 citHeader("To cite package ROptEst in publications use:")
 
 citEntry(entry="Manual",
@@ -5,8 +9,12 @@
          author = personList(as.person("M. Kohl"),
                              as.person("P. Ruckdeschel")),
          language = "English",
-         year = 2008,
+         year = year,
+         note = note,
          type = "R package",
          url = "http://robast.r-forge.r-project.org/",
-         textVersion = paste("Kohl, M., and Ruckdeschel, P. (2008).", 
-                             "ROptEst: Optimally robust estimation.", "R package."))
+         textVersion = paste("Kohl, M., and Ruckdeschel, P.",
+                             sprintf("(%s).", year),
+                             "ROptEst: Optimally robust estimation.",
+                             paste(note, ".", sep = ""),
+                             "URL http://robast.r-forge.r-project.org/"))

Added: pkg/ROptEst/inst/NEWS
===================================================================
--- pkg/ROptEst/inst/NEWS	                        (rev 0)
+++ pkg/ROptEst/inst/NEWS	2008-11-28 16:08:47 UTC (rev 228)
@@ -0,0 +1,14 @@
+###############################################################################
+##  News: to package ROptEst
+###############################################################################
+
+#######################################
+version 0.6.2
+#######################################
++ added functions to compute and plot cniper contamination and cniper points, 
+  respectively.
++ introduced option("newDevice") to control new opening of graphic devices
++ use of on.exit() to restore old settings for options() and par() at the end 
+  of functions
++ introduction of NEWS-file
++ update of CITATION-file (based on code provided by A. Zeileis on R help)
\ No newline at end of file

Modified: pkg/ROptRegTS/inst/CITATION
===================================================================
--- pkg/ROptRegTS/inst/CITATION	2008-11-28 14:21:50 UTC (rev 227)
+++ pkg/ROptRegTS/inst/CITATION	2008-11-28 16:08:47 UTC (rev 228)
@@ -1,3 +1,7 @@
+if(!exists("meta") || is.null(meta)) meta <- packageDescription("RobLox")
+year <- sub("-.*", "", meta$Date)
+note <- sprintf("R package version %s", meta$Version)
+
 citHeader("To cite package ROptRegTS in publications use:")
 
 citEntry(entry="Manual",
@@ -5,8 +9,12 @@
          author = personList(as.person("M. Kohl"),
                              as.person("P. Ruckdeschel")),
          language = "English",
-         year = 2008,
+         year = year,
+         note = note,
          type = "R package",
          url = "http://robast.r-forge.r-project.org/",
-         textVersion = paste("Kohl, M., and Ruckdeschel, P. (2008).", 
-                             "ROptRegTS: Optimally robust estimation for regression-type models.", "R package."))
+         textVersion = paste("Kohl, M., and Ruckdeschel, P.",
+                             sprintf("(%s).", year),
+                             "ROptRegTS: Optimally robust estimation for regression-type models.",
+                             paste(note, ".", sep = ""),
+                             "URL http://robast.r-forge.r-project.org/"))

Added: pkg/ROptRegTS/inst/NEWS
===================================================================
--- pkg/ROptRegTS/inst/NEWS	                        (rev 0)
+++ pkg/ROptRegTS/inst/NEWS	2008-11-28 16:08:47 UTC (rev 228)
@@ -0,0 +1,12 @@
+###############################################################################
+##  News: to package ROptRegTS
+###############################################################################
+
+#######################################
+version 0.6.1
+#######################################
++ introduced option("newDevice") to control new opening of graphic devices
++ use of on.exit() to restore old settings for options() and par() at the end 
+  of functions
++ introduction of NEWS-file
++ update of CITATION-file (based on code provided by A. Zeileis on R help)
\ No newline at end of file

Modified: pkg/RobLox/inst/CITATION
===================================================================
--- pkg/RobLox/inst/CITATION	2008-11-28 14:21:50 UTC (rev 227)
+++ pkg/RobLox/inst/CITATION	2008-11-28 16:08:47 UTC (rev 228)
@@ -1,3 +1,7 @@
+if(!exists("meta") || is.null(meta)) meta <- packageDescription("RobLox")
+year <- sub("-.*", "", meta$Date)
+note <- sprintf("R package version %s", meta$Version)
+
 citHeader("To cite package RobLox in publications use:")
 
 citEntry(entry="Manual",
@@ -4,8 +8,12 @@
          title = "RobLox: Optimally robust influence curves for location and scale",
          author = personList(as.person("M. Kohl")),
          language = "English",
-         year = 2008,
+         year = year,
+         note = note,
          type = "R package",
          url = "http://robast.r-forge.r-project.org/",
-         textVersion = paste("Kohl, M. (2008).", 
-                             "RobLox: Optimally robust influence curves for location and scale.", "R package."))
+         textVersion = paste("Kohl, M.",
+                             sprintf("(%s).", year),
+                             "RobLox: Optimally robust influence curves for location and scale.",
+                             paste(note, ".", sep = ""),
+                             "URL http://robast.r-forge.r-project.org/"))

Added: pkg/RobLox/inst/NEWS
===================================================================
--- pkg/RobLox/inst/NEWS	                        (rev 0)
+++ pkg/RobLox/inst/NEWS	2008-11-28 16:08:47 UTC (rev 228)
@@ -0,0 +1,11 @@
+###############################################################################
+##  News: to package RobLox
+###############################################################################
+
+#######################################
+version 0.6.1
+#######################################
++ bug in computation of as. covariance in roblox corrected.
++ bug in rsOptIC corrected.
++ introduction of NEWS-file
++ update of CITATION-file (based on code provided by A. Zeileis on R help)
\ No newline at end of file

Modified: pkg/RobRex/inst/CITATION
===================================================================
--- pkg/RobRex/inst/CITATION	2008-11-28 14:21:50 UTC (rev 227)
+++ pkg/RobRex/inst/CITATION	2008-11-28 16:08:47 UTC (rev 228)
@@ -1,3 +1,7 @@
+if(!exists("meta") || is.null(meta)) meta <- packageDescription("RobLox")
+year <- sub("-.*", "", meta$Date)
+note <- sprintf("R package version %s", meta$Version)
+
 citHeader("To cite package RobRex in publications use:")
 
 citEntry(entry="Manual",
@@ -4,8 +8,12 @@
          title = "RobRex: Optimally robust influence curves for regression and scale",
          author = personList(as.person("M. Kohl")),
          language = "English",
-         year = 2008,
+         year = year,
+         note = note,
          type = "R package",
          url = "http://robast.r-forge.r-project.org/",
-         textVersion = paste("Kohl, M. (2008).", 
-                             "RobRex: Optimally robust influence curves for regression and scale.", "R package."))
+         textVersion = paste("Kohl, M.",
+                             sprintf("(%s).", year),
+                             "RobRex: Optimally robust influence curves for regression and scale.",
+                             paste(note, ".", sep = ""),
+                             "URL http://robast.r-forge.r-project.org/"))

Added: pkg/RobRex/inst/NEWS
===================================================================
--- pkg/RobRex/inst/NEWS	                        (rev 0)
+++ pkg/RobRex/inst/NEWS	2008-11-28 16:08:47 UTC (rev 228)
@@ -0,0 +1,9 @@
+###############################################################################
+##  News: to package ROptRegTS
+###############################################################################
+
+#######################################
+version 0.6.1
+#######################################
++ introduction of NEWS-file
++ update of CITATION-file (based on code provided by A. Zeileis on R help)
\ No newline at end of file



More information about the Robast-commits mailing list