[Distr-commits] r1167 - in branches/distr-2.7/pkg/distrTeach: R inst man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun Jul 8 14:36:41 CEST 2018
Author: ruckdeschel
Date: 2018-07-08 14:36:39 +0200 (Sun, 08 Jul 2018)
New Revision: 1167
Modified:
branches/distr-2.7/pkg/distrTeach/R/illustLLN.R
branches/distr-2.7/pkg/distrTeach/inst/CITATION
branches/distr-2.7/pkg/distrTeach/inst/NEWS
branches/distr-2.7/pkg/distrTeach/man/0distrTeach-package.Rd
branches/distr-2.7/pkg/distrTeach/man/IllustCLT.Rd
Log:
[branches: distrTeach]: began with major update to version 2.7 / updated manual (to speed examples up), use q.l() instead of q() in R-code, updated ref to stamats, https instead of http, NEWS
Modified: branches/distr-2.7/pkg/distrTeach/R/illustLLN.R
===================================================================
--- branches/distr-2.7/pkg/distrTeach/R/illustLLN.R 2018-07-08 12:33:05 UTC (rev 1166)
+++ branches/distr-2.7/pkg/distrTeach/R/illustLLN.R 2018-07-08 12:36:39 UTC (rev 1167)
@@ -136,7 +136,7 @@
for(j in seq(1, m, by = step))
{LLNin(Distr, n, j, j+step-1)
do.call(matplot, args = c(list(Ns, t(da), pch = pch, col=col,
- axes = FALSE, ylim = q(Distr)(c(0.02,0.98)),
+ axes = FALSE, ylim = q.l(Distr)(c(0.02,0.98)),
xlab = xlab, ylab = "", main = main), dots.for.matplot ))
title(ylab = ylab, line = 1.7)
Modified: branches/distr-2.7/pkg/distrTeach/inst/CITATION
===================================================================
--- branches/distr-2.7/pkg/distrTeach/inst/CITATION 2018-07-08 12:33:05 UTC (rev 1166)
+++ branches/distr-2.7/pkg/distrTeach/inst/CITATION 2018-07-08 12:36:39 UTC (rev 1167)
@@ -12,7 +12,7 @@
month="July",
year="2008",
address="{Kaiserslautern, Germany}",
- URL = "http://cran.r-project.org/web/packages/distrDoc/vignettes/distr.pdf",
+ URL = "https://CRAN.R-project.org/web/packages/distrDoc/vignettes/distr.pdf",
textVersion = paste("Ruckdeschel, P., Kohl, M., Stabla, T., & Camphausen, F. (2006): ",
"S4 Classes for Distributions---a manual for packages distr, distrSim, distrTEst, distrEx, ",
"distrMod, and distrTeach")
Modified: branches/distr-2.7/pkg/distrTeach/inst/NEWS
===================================================================
--- branches/distr-2.7/pkg/distrTeach/inst/NEWS 2018-07-08 12:33:05 UTC (rev 1166)
+++ branches/distr-2.7/pkg/distrTeach/inst/NEWS 2018-07-08 12:36:39 UTC (rev 1167)
@@ -8,6 +8,17 @@
information)
##############
+v 2.7
+##############
+
+user-visible CHANGES:
++ fixed some URLs in https style
+
+under the hood:
++ wherever possible also use q.l internally instead of q to
+ provide functionality in IRKernel
+
+##############
v 2.6
##############
Modified: branches/distr-2.7/pkg/distrTeach/man/0distrTeach-package.Rd
===================================================================
--- branches/distr-2.7/pkg/distrTeach/man/0distrTeach-package.Rd 2018-07-08 12:33:05 UTC (rev 1166)
+++ branches/distr-2.7/pkg/distrTeach/man/0distrTeach-package.Rd 2018-07-08 12:36:39 UTC (rev 1167)
@@ -117,7 +117,7 @@
M. Kohl (2005): \emph{Numerical Contributions to the Asymptotic
Theory of Robustness.} PhD Thesis. Bayreuth. Available as
-\url{http://www.stamats.de/ThesisMKohl.pdf}
+\url{http://www.stamats.de/wp-content/uploads/2018/04/ThesisMKohl.pdf}
}
\keyword{package}
\concept{LLN}
Modified: branches/distr-2.7/pkg/distrTeach/man/IllustCLT.Rd
===================================================================
--- branches/distr-2.7/pkg/distrTeach/man/IllustCLT.Rd 2018-07-08 12:33:05 UTC (rev 1166)
+++ branches/distr-2.7/pkg/distrTeach/man/IllustCLT.Rd 2018-07-08 12:36:39 UTC (rev 1167)
@@ -36,11 +36,11 @@
Peter Ruckdeschel \email{peter.ruckdeschel at uni-oldenburg.de}}
\examples{
distroptions("DefaultNrFFTGridPointsExponent" = 13)
-illustrateCLT(Distr = Unif(), len = 20)
+illustrateCLT(Distr = Unif(), len = 10)
distroptions("DefaultNrFFTGridPointsExponent" = 12)
-illustrateCLT(Distr = Pois(lambda = 2), len = 20)
+illustrateCLT(Distr = Pois(lambda = 2), len = 10)
distroptions("DefaultNrFFTGridPointsExponent" = 13)
-illustrateCLT(Distr = Pois(lambda = 2)+Unif(), len = 20)
+illustrateCLT(Distr = Pois(lambda = 2)+Unif(), len = 10)
illustrateCLT.tcl(Distr = Unif(), k = 4, "Unif()")
}
More information about the Distr-commits
mailing list