[Distr-commits] r1385 - in pkg/distrTEst: . inst man tests/Examples
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sat Nov 12 22:38:34 CET 2022
Author: ruckdeschel
Date: 2022-11-12 22:38:34 +0100 (Sat, 12 Nov 2022)
New Revision: 1385
Modified:
pkg/distrTEst/DESCRIPTION
pkg/distrTEst/inst/NEWS
pkg/distrTEst/man/0distrTEst-package.Rd
pkg/distrTEst/man/Evaluation-class.Rd
pkg/distrTEst/man/EvaluationList-class.Rd
pkg/distrTEst/tests/Examples/distrTEst-Ex.Rout.save
Log:
[distrTEst] 2.8.1 ready for release -- included some cleanup during examples
Modified: pkg/distrTEst/DESCRIPTION
===================================================================
--- pkg/distrTEst/DESCRIPTION 2022-11-12 21:37:37 UTC (rev 1384)
+++ pkg/distrTEst/DESCRIPTION 2022-11-12 21:38:34 UTC (rev 1385)
@@ -1,17 +1,17 @@
Package: distrTEst
-Version: 2.8.0
-Date: 2019-03-12
+Version: 2.8.1
+Date: 2022-11-12
Title: Estimation and Testing Classes Based on Package 'distr'
Description: Evaluation (S4-)classes based on package distr for evaluating procedures
- (estimators/tests) at data/simulation in a unified way.
+ (estimators/tests) at data/simulation in a unified way.
Depends: R(>= 3.4), methods, graphics, setRNG(>= 2006.2-1), distrSim(>= 2.2)
Imports: startupmsg, utils
Suggests: distrEx(>= 2.2)
-Authors at R: c(person("Florian", "Camphausen", role="ctb", comment="contributed as student in the
- initial phase --2005"), person("Matthias", "Kohl", role=c("aut", "cph")),
- person("Peter", "Ruckdeschel", role=c("cre", "cph"),
- email="peter.ruckdeschel at uni-oldenburg.de"), person("Thomas", "Stabla", role="ctb",
- comment="contributed as student in the initial phase --2005"))
+Authors at R: c(person("Florian", "Camphausen", role="ctb", comment="contributed as student in
+ the initial phase --2005"), person("Matthias", "Kohl", role=c("aut", "cph")),
+ person("Peter", "Ruckdeschel", role=c("cre", "cph"),
+ email="peter.ruckdeschel at uni-oldenburg.de"), person("Thomas", "Stabla",
+ role="ctb", comment="contributed as student in the initial phase --2005"))
ByteCompile: yes
Encoding: latin1
License: LGPL-3
@@ -18,4 +18,4 @@
URL: http://distr.r-forge.r-project.org/
LastChangedDate: {$LastChangedDate$}
LastChangedRevision: {$LastChangedRevision$}
-VCS/SVNRevision: 1319
+VCS/SVNRevision: 1380
Modified: pkg/distrTEst/inst/NEWS
===================================================================
--- pkg/distrTEst/inst/NEWS 2022-11-12 21:37:37 UTC (rev 1384)
+++ pkg/distrTEst/inst/NEWS 2022-11-12 21:38:34 UTC (rev 1385)
@@ -18,6 +18,10 @@
\code{ggplot}) to produce the plot in a different framework. A more detailed description will follow in a subsequent version.
+ DESCRIPTION tag SVNRevision changed to VCS/SVNRevision
+under the hood:
++ fixed some broken URLs and changed URLs from http to https where possible
++ clean up in examples: files written to are unlinked at end of examples
+
##############
v 2.7
##############
Modified: pkg/distrTEst/man/0distrTEst-package.Rd
===================================================================
--- pkg/distrTEst/man/0distrTEst-package.Rd 2022-11-12 21:37:37 UTC (rev 1384)
+++ pkg/distrTEst/man/0distrTEst-package.Rd 2022-11-12 21:38:34 UTC (rev 1385)
@@ -15,15 +15,15 @@
\details{
\tabular{ll}{
Package: \tab distrTEst \cr
-Version: \tab 2.8.0 \cr
-Date: \tab 2019-03-12 \cr
+Version: \tab 2.8.1 \cr
+Date: \tab 2022-11-12 \cr
Depends: \tab R(>= 3.4), methods, graphics, setRNG(>= 2006.2-1), distrSim(>= 2.2) \cr
-Imports: \tab startupmsg, utils\cr
-Suggests: \tab distrEx(>= 2.2)\cr
+Imports: \tab startupmsg, utils \cr
+Suggests: \tab distrEx(>= 2.2) \cr
LazyLoad: \tab yes \cr
License: \tab LGPL-3 \cr
-URL: \tab http://distr.r-forge.r-project.org/\cr
-VCS/SVNRevision: \tab 1319 \cr
+URL: \tab https://distr.r-forge.r-project.org/\cr
+VCS/SVNRevision: \tab 1380 \cr
}}
\section{Classes}{
\preformatted{
@@ -38,7 +38,6 @@
}
Objects of class "Evaluation" are generated by a call to \code{\link{evaluate}}.
}
-
\section{Methods}{
\preformatted{
plot plot method for "Evaluation" and for "EvaluationList"
@@ -47,7 +46,6 @@
Data accessor method for "Evaluation", and, for "EvaluationList"
returns common Data
}}
-
\section{Slot accessors / -replacement functions}{
All slots are inspected / modified by corresponding
accessors / -replacement functions, e.g. \code{call.ev(X)}
@@ -54,42 +52,33 @@
or \code{filename(X)<-"myevaluation.sav"} for
an object of class \code{"Evaluation"}.
}
-
\section{Start-up-Banner}{
You may suppress the start-up banner/message completely by setting \code{options("StartupBanner"="off")}
somewhere before loading this package by \code{library} or \code{require} in your R-code / R-session.
-
If option \code{"StartupBanner"} is not defined (default) or setting
\code{options("StartupBanner"=NULL)} or \code{options("StartupBanner"="complete")}
the complete start-up banner is displayed.
-
For any other value of option \code{"StartupBanner"} (i.e., not in \code{c(NULL,"off","complete")})
only the version information is displayed.
-
The same can be achieved by wrapping the \code{library} or \code{require} call into
either \code{\link[startupmsg:StartupUtilities]{suppressStartupMessages}()} or
\code{\link[startupmsg:StartupUtilities]{onlytypeStartupMessages}(.,atypes="version")}.
-
As for general \code{packageStartupMessage}'s, you may also suppress all
the start-up banner by wrapping the \code{library} or \code{require}
call into \code{suppressPackageStartupMessages()} from
\pkg{startupmsg}-version 0.5 on.
}
-
\author{
Thomas Stabla \email{statho3 at web.de},\cr
Florian Camphausen \email{fcampi at gmx.de},\cr
Peter Ruckdeschel \email{peter.ruckdeschel at uni-oldenburg.de},\cr
Matthias Kohl \email{Matthias.Kohl at stamats.de}\cr
-
\emph{Maintainer:} Peter Ruckdeschel \email{peter.ruckdeschel at uni-oldenburg.de}
}
-
\note{Global options controlling the plots and summaries of Evaluationlist
objects may be inspected / set by \code{\link{distrTEstoptions}()}
and \code{\link{getdistrTEstOption}()}.
}
-
\section{Package versions}{
Note: The first two numbers of package versions do not necessarily reflect
package-individual development, but rather are chosen for the
@@ -96,19 +85,15 @@
distrXXX family as a whole in order to ease updating "depends"
information.
}
-
\references{
%A more detailed manual for \pkg{distr}, \pkg{distrSim}, \pkg{distrTEst}, and \pkg{distrEx} may be downloaded from
%\url{http://www.uni-bayreuth.de/departments/math/org/mathe7/DISTR/distr.pdf}.
-
A vignette for packages \pkg{distr}, \pkg{distrSim}, \pkg{distrTEst}, and \pkg{distrEx}
is included into the mere documentation package \pkg{distrDoc} and may be called by
\code{require("distrDoc");vignette("distr")}.
-
A homepage to this package is available under\cr
-\url{http://distr.r-forge.r-project.org/}
+\url{https://distr.r-forge.r-project.org/}
}
-
\keyword{ package }
\concept{S4 evaluation class}
\seealso{
@@ -115,4 +100,3 @@
\code{\link[distr:0distr-package]{distr-package}}, \code{\link[distrSim:0distrSim-package]{distrSim-package}},
\code{\link[setRNG]{setRNG}}
}
-
Modified: pkg/distrTEst/man/Evaluation-class.Rd
===================================================================
--- pkg/distrTEst/man/Evaluation-class.Rd 2022-11-12 21:37:37 UTC (rev 1384)
+++ pkg/distrTEst/man/Evaluation-class.Rd 2022-11-12 21:38:34 UTC (rev 1385)
@@ -96,6 +96,10 @@
ev1
plot(ev1)
#
+#clean up
+unlink("csim.mean")
+unlink("csim.mean.comment")
+#
#another function to be evaluated:
severalThings<- function(x) {list("mean"=mean(x),"sd"=sd(as.vector(x)), "mad"=mad(x))}
ev3 <- evaluate(cs, severalThings, resname="several")
Modified: pkg/distrTEst/man/EvaluationList-class.Rd
===================================================================
--- pkg/distrTEst/man/EvaluationList-class.Rd 2022-11-12 21:37:37 UTC (rev 1384)
+++ pkg/distrTEst/man/EvaluationList-class.Rd 2022-11-12 21:38:34 UTC (rev 1385)
@@ -93,6 +93,9 @@
plot(ElistObj,ylim=c(-0.5,0.5),main=c("location"),runs0=3:12,dims0=1,evals0=2)
ElistObj
summary(ElistObj)
+#clean up
+unlink("csim.mean")
+unlink("csim.mean.comment")
}
\keyword{list}
\keyword{manip}
Modified: pkg/distrTEst/tests/Examples/distrTEst-Ex.Rout.save
===================================================================
--- pkg/distrTEst/tests/Examples/distrTEst-Ex.Rout.save 2022-11-12 21:37:37 UTC (rev 1384)
+++ pkg/distrTEst/tests/Examples/distrTEst-Ex.Rout.save 2022-11-12 21:38:34 UTC (rev 1385)
@@ -1,7 +1,7 @@
-R Under development (unstable) (2019-02-27 r76167) -- "Unsuffered Consequences"
-Copyright (C) 2019 The R Foundation for Statistical Computing
-Platform: i386-w64-mingw32/i386 (32-bit)
+R Under development (unstable) (2022-09-25 r82916 ucrt) -- "Unsuffered Consequences"
+Copyright (C) 2022 The R Foundation for Statistical Computing
+Platform: x86_64-w64-mingw32/x64 (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
@@ -33,7 +33,7 @@
Loading required package: sfsmisc
:distr> Object Oriented Implementation of Distributions (version
-:distr> 2.8.0)
+:distr> 2.9.0)
:distr>
:distr> Attention: Arithmetics on distribution objects are
:distr> understood as operations on corresponding random variables
@@ -84,7 +84,7 @@
rbind
:distrTEst> Estimation and Testing Classes Based on Package
-:distrTEst> 'distr' (version 2.8.0)
+:distrTEst> 'distr' (version 2.8.1)
:distrTEst>
:distrTEst> For more information see ?"distrTEst",
:distrTEst> NEWS("distrTEst"), as well as
@@ -463,7 +463,7 @@
> cleanEx()
> options(digits = 7L)
> base::cat("Time elapsed: ", proc.time() - base::get("ptime", pos = 'CheckExEnv'),"\n")
-Time elapsed: 22.15 0.47 24.64 NA NA
+Time elapsed: 8.74 0.31 9.14 NA NA
> grDevices::dev.off()
null device
1
More information about the Distr-commits
mailing list