[Distr-commits] r1477 - pkg/distr/R pkg/distrDoc pkg/distrDoc/inst pkg/distrDoc/man www

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Oct 22 22:59:39 CEST 2024


Author: ruckdeschel
Date: 2024-10-22 22:59:37 +0200 (Tue, 22 Oct 2024)
New Revision: 1477

Modified:
   pkg/distr/R/makedots.R
   pkg/distr/R/plot-methods.R
   pkg/distrDoc/DESCRIPTION
   pkg/distrDoc/inst/NEWS
   pkg/distrDoc/man/0distrDoc-package.Rd
   www/distrDoc.html
Log:
[distrDoc] trunk -> some preparation for bug fix 

Modified: pkg/distr/R/makedots.R
===================================================================
--- pkg/distr/R/makedots.R	2024-09-28 15:11:08 UTC (rev 1476)
+++ pkg/distr/R/makedots.R	2024-10-22 20:59:37 UTC (rev 1477)
@@ -23,7 +23,7 @@
 }
 .makedotsPt <- function(dots){
     dots <- dots[names(dots) %in% c("bg", "lwd", "lty")]
-    dots["pch"] <- NULL
+    dots$pch <- NULL
     if (length(dots) == 0 ) dots <- NULL
     dots
 }

Modified: pkg/distr/R/plot-methods.R
===================================================================
--- pkg/distr/R/plot-methods.R	2024-09-28 15:11:08 UTC (rev 1476)
+++ pkg/distr/R/plot-methods.R	2024-10-22 20:59:37 UTC (rev 1477)
@@ -53,7 +53,7 @@
                       col.sub = col.sub, cex.points = cex.points,
                       pch.u = pch.u, pch.a = pch.a, mfColRow = mfColRow,
                       to.draw.arg = to.draw.arg, withSubst = withSubst),
-                      to.draw=to.draw, panelFirst = pF,
+                      to.draw = to.draw, panelFirst = pF,
                       panelLast = pL)
 
      plotInfo$to.draw <- to.draw
@@ -65,9 +65,10 @@
 
      dots.for.points <- .makedotsPt(dots)
 
-     dots.lowlevel <- .makedotsLowLevel(dots)
-     dots.without.pch <- dots.lowlevel[! (names(dots.lowlevel) %in% c("col", "pch"))]
-     if(!is(x,"AbscontDistribution"))
+     dots.without.pch <- dots.lowlevel <- .makedotsLowLevel(dots)
+	 dots.without.pch$col <- dots.without.pch$pch <- NULL
+	 
+	 if(!is(x,"AbscontDistribution"))
          x <- .ULC.cast(x)     
      ###
      if(!is.logical(inner))
@@ -277,7 +278,7 @@
          plotInfo$dplot$plot <- c(list(x = grid, dxg, type = "l",
              ylim = ylim1,  ylab = ylab0[["d"]], xlab = xlab0[["d"]], log = logpd),
              dots.lowlevel)
-         do.call(plot, c(list(x = grid, dxg, type = "l",
+         (plot, c(list(x = grid, dxg, type = "l",
              ylim = ylim1,  ylab = ylab0[["d"]], xlab = xlab0[["d"]], log = logpd),
              dots.lowlevel))
          plotInfo$dplot$usr <- par("usr")

Modified: pkg/distrDoc/DESCRIPTION
===================================================================
--- pkg/distrDoc/DESCRIPTION	2024-09-28 15:11:08 UTC (rev 1476)
+++ pkg/distrDoc/DESCRIPTION	2024-10-22 20:59:37 UTC (rev 1477)
@@ -1,6 +1,6 @@
 Package: distrDoc
-Version: 2.8.3
-Date: 2024-09-28
+Version: 2.8.4
+Date: 2024-10-22
 Title: Documentation for 'distr' Family of R Packages
 Description: Provides documentation in form of a common vignette to packages 'distr',
             'distrEx', 'distrMod', 'distrSim', 'distrTEst', 'distrTeach', and 'distrEllipse'.
@@ -21,4 +21,4 @@
 URL: http://distr.r-forge.r-project.org/
 LastChangedDate: {$LastChangedDate$}
 LastChangedRevision: {$LastChangedRevision$}
-VCS/SVNRevision: 1435
+VCS/SVNRevision: 1476

Modified: pkg/distrDoc/inst/NEWS
===================================================================
--- pkg/distrDoc/inst/NEWS	2024-09-28 15:11:08 UTC (rev 1476)
+++ pkg/distrDoc/inst/NEWS	2024-10-22 20:59:37 UTC (rev 1477)
@@ -7,6 +7,11 @@
  distrXXX family as a whole in order to ease updating "depends" 
  information)
 
+##############
+v 2.8.4
+##############
+under the hood:
++ fixed some (LaTeX-)encoding issue
 
 ##############
 v 2.8

Modified: pkg/distrDoc/man/0distrDoc-package.Rd
===================================================================
--- pkg/distrDoc/man/0distrDoc-package.Rd	2024-09-28 15:11:08 UTC (rev 1476)
+++ pkg/distrDoc/man/0distrDoc-package.Rd	2024-10-22 20:59:37 UTC (rev 1477)
@@ -13,8 +13,8 @@
 \details{
 \tabular{ll}{
 Package: \tab distrDoc \cr
-Version: \tab 2.8.2 \cr
-Date: \tab 2024-02-01 \cr
+Version: \tab 2.8.4 \cr
+Date: \tab 2024-10-22 \cr
 Depends: \tab R(>= 3.4) \cr
 Imports: \tab distr(>= 2.2.0), distrEx(>= 2.2.0), distrSim(>= 2.2.0), distrTEst(>= 2.2.0),distrTeach(>= 2.2.0), RandVar(>= 0.7), distrMod(>= 2.2.0), MASS, methods,
 startupmsg \cr
@@ -22,7 +22,7 @@
 ByteCompile: \tab yes \cr
 License: \tab LGPL-3 \cr
 URL: \tab https://distr.r-forge.r-project.org/\cr
-VCS/SVNRevision: \tab 1435 \cr
+VCS/SVNRevision: \tab 1476 \cr
 }}
 \section{Acknowledgement}{
 The idea to split off a common vignette for a set of packages 

Modified: www/distrDoc.html
===================================================================
--- www/distrDoc.html	2024-09-28 15:11:08 UTC (rev 1476)
+++ www/distrDoc.html	2024-10-22 20:59:37 UTC (rev 1477)
@@ -27,10 +27,10 @@
 
 
 <hr style="width: 100%; height: 2px;">
-<div style="text-align: justify;"> Version: 2.8.2 <br>
+<div style="text-align: justify;"> Version: 2.8.4 <br>
 
 
-Release Date: 2024-02-01 <br>
+Release Date: 2024-10-22 <br>
 
 
 Authors: <a href="mailto:peter.ruckdeschel at uni-oldenburg.de?subject=%5Bdistr%5D">Peter
@@ -456,7 +456,7 @@
 <div style="text-align: justify; color: rgb(0, 0, 0);">This page is
 maintained by <a href="mailto:peter.ruckdeschel at uni-oldenburg.de?subject=distr-package">Peter
 Ruckdeschel</a> (created by Thomas Stabla<a href="mailto:statho3 at web.de">)</a>
-and last updated on 2024-02-01. <br>
+and last updated on 2024-10-22. <br>
 
 
 </div>



More information about the Distr-commits mailing list