[Distr-commits] r398 - in branches/distr-2.1/pkg/distrEx: R chm src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Feb 16 12:43:25 CET 2009


Author: ruckdeschel
Date: 2009-02-16 12:43:25 +0100 (Mon, 16 Feb 2009)
New Revision: 398

Modified:
   branches/distr-2.1/pkg/distrEx/R/Functionals.R
   branches/distr-2.1/pkg/distrEx/R/Kurtosis.R
   branches/distr-2.1/pkg/distrEx/R/Skewness.R
   branches/distr-2.1/pkg/distrEx/chm/00Index.html
   branches/distr-2.1/pkg/distrEx/chm/distrEx.chm
   branches/distr-2.1/pkg/distrEx/chm/distrEx.toc
   branches/distr-2.1/pkg/distrEx/src/distrEx.dll
Log:
fixed the "Note" appearing in R CMD check for distrEx

Modified: branches/distr-2.1/pkg/distrEx/R/Functionals.R
===================================================================
--- branches/distr-2.1/pkg/distrEx/R/Functionals.R	2009-02-09 03:12:20 UTC (rev 397)
+++ branches/distr-2.1/pkg/distrEx/R/Functionals.R	2009-02-16 11:43:25 UTC (rev 398)
@@ -45,6 +45,7 @@
 
 setMethod("var", signature(x = "CompoundDistribution"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
          return(var(as(x,"UnivarLebDecDistribution"),...))
     else{
@@ -163,6 +164,7 @@
 #################################################################
 setMethod("var", signature(x = "Norm"),
     function(x,...){ 
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(var(as(x,"AbscontDistribution"),...))
     else
@@ -171,6 +173,7 @@
 
 setMethod("var", signature(x = "Binom"),
     function(x,...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
         return(var(as(x,"DiscreteDistribution"),...))
     else
@@ -179,6 +182,7 @@
 
 setMethod("var", signature(x = "Cauchy"),
     function(x,...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
       return(var(as(x,"AbscontDistribution"),...))
     else
@@ -187,6 +191,7 @@
 
 setMethod("var", signature(x = "Chisq"),
     function(x,...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(var(as(x,"AbscontDistribution"),...))
     else
@@ -199,6 +204,7 @@
 
 setMethod("var", signature(x = "DExp"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(var(as(x,"AbscontDistribution"),...))
     else
@@ -207,6 +213,7 @@
 
 setMethod("var", signature(x = "Exp"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(var(as(x,"AbscontDistribution"),...))
     else
@@ -216,6 +223,7 @@
 
 setMethod("var", signature(x = "Fd"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(var(as(x,"AbscontDistribution"),...))
     else
@@ -229,6 +237,7 @@
 
 setMethod("var", signature(x = "Gammad"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(var(as(x,"AbscontDistribution"),...))
     else
@@ -237,6 +246,7 @@
 
 setMethod("var", signature(x = "Geom"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(var(as(x,"DiscreteDistribution"),...))
     else {p <- prob(x); e <- 1/p-1; return(e+e^2)}
@@ -244,6 +254,7 @@
 
 setMethod("var", signature(x = "Hyper"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(var(as(x,"DiscreteDistribution"),...))
     else
@@ -255,6 +266,7 @@
 
 setMethod("var", signature(x = "Logis"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(var(as(x,"AbscontDistribution"),...))
     else
@@ -263,6 +275,7 @@
 
 setMethod("var", signature(x = "Lnorm"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(var(as(x,"AbscontDistribution"),...))
     else
@@ -271,6 +284,7 @@
 
 setMethod("var", signature(x = "Nbinom"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(var(as(x,"DiscreteDistribution"),...))
     else {p <- prob(x); e <- 1/p-1; return(size(x)*(e+e^2))}
@@ -278,6 +292,7 @@
 
 setMethod("var", signature(x = "Pois"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(var(as(x,"DiscreteDistribution"),...))
     else
@@ -286,6 +301,7 @@
 
 setMethod("var", signature(x = "Td"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(var(as(x,"AbscontDistribution"),...))
     else
@@ -299,6 +315,7 @@
 
 setMethod("var", signature(x = "Unif"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(var(as(x,"AbscontDistribution"),...))
     else
@@ -307,6 +324,7 @@
 
 setMethod("var", signature(x = "Weibull"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(var(as(x,"AbscontDistribution"),...))
     else
@@ -315,6 +333,7 @@
     
 setMethod("var", signature(x = "Beta"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))||(!isTRUE(all.equal(ncp(x),0)))) 
         return(var(as(x,"AbscontDistribution"),...))
     else

Modified: branches/distr-2.1/pkg/distrEx/R/Kurtosis.R
===================================================================
--- branches/distr-2.1/pkg/distrEx/R/Kurtosis.R	2009-02-09 03:12:20 UTC (rev 397)
+++ branches/distr-2.1/pkg/distrEx/R/Kurtosis.R	2009-02-16 11:43:25 UTC (rev 398)
@@ -60,6 +60,7 @@
 ###
 setMethod("kurtosis", signature(x = "Norm"),
     function(x,...){ 
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -68,6 +69,7 @@
 #
 setMethod("kurtosis", signature(x = "Binom"),
     function(x,  ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(kurtosis(as(x,"DiscreteDistribution"),...))
     else
@@ -78,6 +80,7 @@
 #
 setMethod("kurtosis", signature(x = "Cauchy"),
     function(x,...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
       return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -86,6 +89,7 @@
 #
 setMethod("kurtosis", signature(x = "Chisq"),
     function(x,...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -98,6 +102,7 @@
 #
 setMethod("kurtosis", signature(x = "DExp"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -106,6 +111,7 @@
 #
 setMethod("kurtosis", signature(x = "Exp"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -115,6 +121,7 @@
 #
 setMethod("kurtosis", signature(x = "Fd"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) {
          return(kurtosis(as(x,"AbscontDistribution"),...))
     }else {
@@ -139,6 +146,7 @@
 #
 setMethod("kurtosis", signature(x = "Gammad"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -147,6 +155,7 @@
 #
 setMethod("kurtosis", signature(x = "Geom"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(kurtosis(as(x,"DiscreteDistribution"),...))
     else
@@ -155,6 +164,7 @@
 #
 setMethod("kurtosis", signature(x = "Hyper"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(kurtosis(as(x,"DiscreteDistribution"),...))
     else
@@ -171,6 +181,7 @@
 #
 setMethod("kurtosis", signature(x = "Logis"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -179,6 +190,7 @@
 #
 setMethod("kurtosis", signature(x = "Lnorm"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) {
         return(kurtosis(as(x,"AbscontDistribution"),...))
     } else {
@@ -189,6 +201,7 @@
 #
 setMethod("kurtosis", signature(x = "Nbinom"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(kurtosis(as(x,"DiscreteDistribution"),...))
     else
@@ -197,6 +210,7 @@
 #
 setMethod("kurtosis", signature(x = "Pois"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(kurtosis(as(x,"DiscreteDistribution"),...))
     else
@@ -205,6 +219,7 @@
 #
 setMethod("kurtosis", signature(x = "Td"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))){ 
         return(kurtosis(as(x,"AbscontDistribution"),...))
     } else {
@@ -224,6 +239,7 @@
 #
 setMethod("kurtosis", signature(x = "Unif"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -232,6 +248,7 @@
 #
 setMethod("kurtosis", signature(x = "Weibull"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(kurtosis(as(x,"AbscontDistribution"),...))
     else
@@ -245,6 +262,7 @@
 #    
 setMethod("kurtosis", signature(x = "Beta"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))||(!isTRUE(all.equal(ncp(x),0)))) 
         return(kurtosis(as(x,"AbscontDistribution"),...))
     else

Modified: branches/distr-2.1/pkg/distrEx/R/Skewness.R
===================================================================
--- branches/distr-2.1/pkg/distrEx/R/Skewness.R	2009-02-09 03:12:20 UTC (rev 397)
+++ branches/distr-2.1/pkg/distrEx/R/Skewness.R	2009-02-16 11:43:25 UTC (rev 398)
@@ -51,6 +51,7 @@
 #
 setMethod("skewness", signature(x = "Norm"),
     function(x,...){ 
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -59,6 +60,7 @@
 #
 setMethod("skewness", signature(x = "Binom"),
     function(x,  ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(skewness(as(x,"DiscreteDistribution"),...))
     else
@@ -68,6 +70,7 @@
 #
 setMethod("skewness", signature(x = "Cauchy"),
     function(x,...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
       return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -76,6 +79,7 @@
 #
 setMethod("skewness", signature(x = "Chisq"),
     function(x,...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond)))
        return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -88,6 +92,7 @@
 #
 setMethod("skewness", signature(x = "DExp"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -96,6 +101,7 @@
 #
 setMethod("skewness", signature(x = "Exp"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -105,6 +111,7 @@
 #
 setMethod("skewness", signature(x = "Fd"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))){
          return(skewness(as(x,"AbscontDistribution"),...))
     }else {
@@ -126,6 +133,7 @@
 #
 setMethod("skewness", signature(x = "Gammad"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -134,6 +142,7 @@
 #
 setMethod("skewness", signature(x = "Geom"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(skewness(as(x,"DiscreteDistribution"),...))
     else
@@ -142,6 +151,7 @@
 #
 setMethod("skewness", signature(x = "Hyper"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(skewness(as(x,"DiscreteDistribution"),...))
     else
@@ -154,6 +164,7 @@
 #
 setMethod("skewness", signature(x = "Logis"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -162,6 +173,7 @@
 #
 setMethod("skewness", signature(x = "Lnorm"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) {
         return(skewness(as(x,"AbscontDistribution"),...))
     } else {
@@ -172,6 +184,7 @@
 #
 setMethod("skewness", signature(x = "Nbinom"),
     function(x, ...){    
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
          return(skewness(as(x,"DiscreteDistribution"),...))
     else
@@ -180,6 +193,7 @@
 #
 setMethod("skewness", signature(x = "Pois"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(skewness(as(x,"DiscreteDistribution"),...))
     else
@@ -188,6 +202,7 @@
 #
 setMethod("skewness", signature(x = "Td"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) {
         return(skewness(as(x,"AbscontDistribution"),...))
     } else {
@@ -206,6 +221,7 @@
 #
 setMethod("skewness", signature(x = "Unif"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -214,6 +230,7 @@
 #
 setMethod("skewness", signature(x = "Weibull"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))) 
         return(skewness(as(x,"AbscontDistribution"),...))
     else
@@ -225,6 +242,7 @@
 #    
 setMethod("skewness", signature(x = "Beta"),
     function(x, ...){
+    fun <- NULL; cond <- NULL
     if((hasArg(fun))||(hasArg(cond))||(!isTRUE(all.equal(ncp(x),0)))) 
         return(skewness(as(x,"AbscontDistribution"),...))
     else

Modified: branches/distr-2.1/pkg/distrEx/chm/00Index.html
===================================================================
--- branches/distr-2.1/pkg/distrEx/chm/00Index.html	2009-02-09 03:12:20 UTC (rev 397)
+++ branches/distr-2.1/pkg/distrEx/chm/00Index.html	2009-02-16 11:43:25 UTC (rev 398)
@@ -13,8 +13,8 @@
 <h2>Help pages for package &lsquo;distrEx&rsquo; version 2.1</h2>
 
 <p align="center">
+<a href="# "> </a>
 <a href="#"></a>
-<a href="# "> </a>
 <a href="#A">A</a>
 <a href="#C">C</a>
 <a href="#D">D</a>
@@ -33,14 +33,13 @@
 <a href="#U">U</a>
 <a href="#V">V</a>
 </p>
-<table width="100%">
-</table>
 
+
 <h2><a name=" ">--   --</a></h2>
 
 <table width="100%">
 <tr><td width="25%"><a href="0distrEx-package.html">distrEx-package</a></td>
-<td>distrEx - Extensions of package distr </td></tr>
+<td>distrEx - Extensions of package distr</td></tr>
 </table>
 
 <h2><a name="">--  --</a></h2>
@@ -69,21 +68,21 @@
 <tr><td width="25%"><a href="Condition-class.html">Condition-class</a></td>
 <td>Conditions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize,AbscontDistribution,AbscontDistribution-method</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize,AcDcLcDistribution,AcDcLcDistribution-method</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize,DiscreteDistribution,DiscreteDistribution-method</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize,DiscreteDistribution,LatticeDistribution-method</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize,LatticeDistribution,DiscreteDistribution-method</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize,LatticeDistribution,LatticeDistribution-method</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ContaminationSize.html">ContaminationSize-methods</a></td>
-<td>Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions</td></tr>
+<td>Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions</td></tr>
 <tr><td width="25%"><a href="ConvexContamination.html">ConvexContamination</a></td>
 <td>Generic Function for Generating Convex Contaminations</td></tr>
 <tr><td width="25%"><a href="ConvexContamination.html">ConvexContamination,AbscontDistribution,AbscontDistribution,numeric-method</a></td>
@@ -105,24 +104,24 @@
 <tr><td width="25%"><a href="ConvexContamination.html">ConvexContamination-methods</a></td>
 <td>Generic Function for Generating Convex Contaminations</td></tr>
 <tr><td width="25%"><a href="CvMDist.html">CvMDist</a></td>
-<td>Generic function for the computation of the Cramer - von Mises  distance of two distributions</td></tr>
+<td>Generic function for the computation of the Cramer - von Mises distance of two distributions</td></tr>
 <tr><td width="25%"><a href="CvMDist.html">CvMDist,numeric,UnivariateDistribution-method</a></td>
-<td>Generic function for the computation of the Cramer - von Mises  distance of two distributions</td></tr>
+<td>Generic function for the computation of the Cramer - von Mises distance of two distributions</td></tr>
 <tr><td width="25%"><a href="CvMDist.html">CvMDist,UnivariateDistribution,UnivariateDistribution-method</a></td>
-<td>Generic function for the computation of the Cramer - von Mises  distance of two distributions</td></tr>
+<td>Generic function for the computation of the Cramer - von Mises distance of two distributions</td></tr>
 <tr><td width="25%"><a href="CvMDist.html">CvMDist-methods</a></td>
-<td>Generic function for the computation of the Cramer - von Mises  distance of two distributions</td></tr>
+<td>Generic function for the computation of the Cramer - von Mises distance of two distributions</td></tr>
 </table>
 
 <h2><a name="D">-- D --</a></h2>
 
 <table width="100%">
 <tr><td width="25%"><a href="dim-methods.html">dim</a></td>
-<td>Methods for Function dim in Package &lsquo;distrEx&rsquo; </td></tr>
+<td>Methods for Function dim in Package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="dim-methods.html">dim,DiscreteMVDistribution-method</a></td>
-<td>Methods for Function dim in Package &lsquo;distrEx&rsquo; </td></tr>
+<td>Methods for Function dim in Package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="dim-methods.html">dim-methods</a></td>
-<td>Methods for Function dim in Package &lsquo;distrEx&rsquo; </td></tr>
+<td>Methods for Function dim in Package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="DiscreteCondDistribution-class.html">DiscreteCondDistribution-class</a></td>
 <td>Discrete conditional distribution</td></tr>
 <tr><td width="25%"><a href="DiscreteMVDistribution.html">DiscreteMVDistribution</a></td>
@@ -130,15 +129,15 @@
 <tr><td width="25%"><a href="DiscreteMVDistribution-class.html">DiscreteMVDistribution-class</a></td>
 <td>Discrete Multivariate Distributions</td></tr>
 <tr><td width="25%"><a href="0distrEx-package.html">distrEx</a></td>
-<td>distrEx - Extensions of package distr </td></tr>
+<td>distrEx - Extensions of package distr</td></tr>
 <tr><td width="25%"><a href="distrExIntegrate.html">distrExIntegrate</a></td>
 <td>Integration of One-Dimensional Functions</td></tr>
 <tr><td width="25%"><a href="distrExMASK.html">distrExMASK</a></td>
 <td>Masking of/by other functions in package "distrEx"</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">distrExOptions</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">distrExoptions</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 </table>
 
 <h2><a name="E">-- E --</a></h2>
@@ -247,28 +246,28 @@
 <tr><td width="25%"><a href="E.html">E-methods</a></td>
 <td>Generic Function for the Computation of (Conditional) Expectations</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">ElowerTruncQuantile</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">ErelativeTolerance</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="EuclCondition.html">EuclCondition</a></td>
 <td>Generating function for EuclCondition-class</td></tr>
 <tr><td width="25%"><a href="EuclCondition-class.html">EuclCondition-class</a></td>
 <td>Conditioning by an Euclidean space.</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">EupperTruncQuantile</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 </table>
 
 <h2><a name="G">-- G --</a></h2>
 
 <table width="100%">
 <tr><td width="25%"><a href="distrExOptions.html">getdistrExOption</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="GLIntegrate.html">GLIntegrate</a></td>
 <td>Gauss-Legendre Quadrature</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">GLIntegrateOrder</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">GLIntegrateTruncQuantile</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="Gumbel.html">Gumbel</a></td>
 <td>Generating function for Gumbel-class</td></tr>
 <tr><td width="25%"><a href="Gumbel-class.html">Gumbel-class</a></td>
@@ -309,7 +308,7 @@
 <tr><td width="25%"><a href="HellingerDist.html">HellingerDist-methods</a></td>
 <td>Generic function for the computation of the Hellinger distance of two distributions</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">hSmooth</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 </table>
 
 <h2><a name="I">-- I --</a></h2>
@@ -444,11 +443,11 @@
 
 <table width="100%">
 <tr><td width="25%"><a href="liesInSupport.html">liesInSupport,DiscreteMVDistribution,matrix-method</a></td>
-<td>Generic Function for Testing the Support of a Distribution </td></tr>
+<td>Generic Function for Testing the Support of a Distribution</td></tr>
 <tr><td width="25%"><a href="liesInSupport.html">liesInSupport,DiscreteMVDistribution,numeric-method</a></td>
-<td>Generic Function for Testing the Support of a Distribution </td></tr>
+<td>Generic Function for Testing the Support of a Distribution</td></tr>
 <tr><td width="25%"><a href="LMCondDistribution.html">LMCondDistribution</a></td>
-<td>Generating function for the conditional distribution    of a linear regression model.</td></tr>
+<td>Generating function for the conditional distribution of a linear regression model.</td></tr>
 <tr><td width="25%"><a href="LMParameter.html">LMParameter</a></td>
 <td>Generating function for LMParameter-class</td></tr>
 <tr><td width="25%"><a href="LMParameter-class.html">LMParameter-class</a></td>
@@ -459,6 +458,8 @@
 <td>Gumbel distribution</td></tr>
 <tr><td width="25%"><a href="GumbelParameter-class.html">loc,GumbelParameter-method</a></td>
 <td>Paramter of Gumbel distributions</td></tr>
+<tr><td width="25%"><a href="GumbelParameter-class.html">loc&lt;-</a></td>
+<td>Paramter of Gumbel distributions</td></tr>
 <tr><td width="25%"><a href="Gumbel-class.html">loc&lt;-,Gumbel-method</a></td>
 <td>Gumbel distribution</td></tr>
 <tr><td width="25%"><a href="GumbelParameter-class.html">loc&lt;-,GumbelParameter-method</a></td>
@@ -493,9 +494,9 @@
 <tr><td width="25%"><a href="m1df.html">m1df-methods</a></td>
 <td>Generic Function for the Computation of Clipped First Moments</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">m1dfLowerTruncQuantile</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">m1dfRelativeTolerance</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="m2df.html">m2df</a></td>
 <td>Generic function for the computation of clipped second moments</td></tr>
 <tr><td width="25%"><a href="m2df.html">m2df,AbscontDistribution-method</a></td>
@@ -519,9 +520,9 @@
 <tr><td width="25%"><a href="m2df.html">m2df-methods</a></td>
 <td>Generic function for the computation of clipped second moments</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">m2dfLowerTruncQuantile</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">m2dfRelativeTolerance</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="Var.html">mad</a></td>
 <td>Generic Functions for the Computation of Functionals</td></tr>
 <tr><td width="25%"><a href="Var.html">mad,AffLinAbscontDistribution-method</a></td>
@@ -561,7 +562,7 @@
 <tr><td width="25%"><a href="distrExMASK.html">MASKING</a></td>
 <td>Masking of/by other functions in package "distrEx"</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">MCIterations</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="Var.html">median</a></td>
 <td>Generic Functions for the Computation of Functionals</td></tr>
 <tr><td width="25%"><a href="Var.html">median,AffLinAbscontDistribution-method</a></td>
@@ -610,24 +611,24 @@
 <tr><td width="25%"><a href="Condition-class.html">name&lt;-,Condition-method</a></td>
 <td>Conditions</td></tr>
 <tr><td width="25%"><a href="distrExOptions.html">nDiscretize</a></td>
-<td>Function to change the global variables of the package &lsquo;distrEx&rsquo; </td></tr>
+<td>Function to change the global variables of the package 'distrEx'</td></tr>
 </table>
 
 <h2><a name="P">-- P --</a></h2>
 
 <table width="100%">
 <tr><td width="25%"><a href="plot-methods.html">plot</a></td>
-<td>Methods for Function plot in Package &lsquo;distrEx&rsquo; </td></tr>
+<td>Methods for Function plot in Package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="plot-methods.html">plot,MultivariateDistribution,missing-method</a></td>
-<td>Methods for Function plot in Package &lsquo;distrEx&rsquo; </td></tr>
+<td>Methods for Function plot in Package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="MultivariateDistribution-class.html">plot,MultivariateDistribution-method</a></td>
 <td>Multivariate Distributions</td></tr>
 <tr><td width="25%"><a href="plot-methods.html">plot,UnivariateCondDistribution,missing-method</a></td>
-<td>Methods for Function plot in Package &lsquo;distrEx&rsquo; </td></tr>
+<td>Methods for Function plot in Package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="UnivariateCondDistribution-class.html">plot,UnivariateCondDistribution-method</a></td>
 <td>Univariate conditional distribution</td></tr>
 <tr><td width="25%"><a href="plot-methods.html">plot-methods</a></td>
-<td>Methods for Function plot in Package &lsquo;distrEx&rsquo; </td></tr>
+<td>Methods for Function plot in Package 'distrEx'</td></tr>
 <tr><td width="25%"><a href="PrognCondDistribution-class.html">PrognCondDistribution</a></td>
 <td>Posterior distribution in convolution</td></tr>
 <tr><td width="25%"><a href="PrognCondDistribution-class.html">PrognCondDistribution-class</a></td>

Modified: branches/distr-2.1/pkg/distrEx/chm/distrEx.chm
===================================================================
(Binary files differ)

Modified: branches/distr-2.1/pkg/distrEx/chm/distrEx.toc
===================================================================
--- branches/distr-2.1/pkg/distrEx/chm/distrEx.toc	2009-02-09 03:12:20 UTC (rev 397)
+++ branches/distr-2.1/pkg/distrEx/chm/distrEx.toc	2009-02-16 11:43:25 UTC (rev 398)
@@ -1463,11 +1463,11 @@
 <param name="Local" value="DiscreteMVDistribution-class.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="distrEx -- Extensions of package distr ">
+<param name="Name" value="distrEx - Extensions of package distr">
 <param name="Local" value="0distrEx-package.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Function to change the global variables of the package `distrEx' ">
+<param name="Name" value="Function to change the global variables of the package 'distrEx'">
 <param name="Local" value="distrExOptions.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
@@ -1491,7 +1491,7 @@
 <param name="Local" value="LMParameter.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Generating function for the conditional distribution    of a linear regression model.">
+<param name="Name" value="Generating function for the conditional distribution of a linear regression model.">
 <param name="Local" value="LMCondDistribution.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
@@ -1499,7 +1499,7 @@
 <param name="Local" value="ConvexContamination.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Generic Function for Testing the Support of a Distribution ">
+<param name="Name" value="Generic Function for Testing the Support of a Distribution">
 <param name="Local" value="liesInSupport.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
@@ -1515,11 +1515,11 @@
 <param name="Local" value="m2df.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Generic Function for the Computation of the Convex Contamination      (Pseudo-)Distance of Two Distributions">
+<param name="Name" value="Generic Function for the Computation of the Convex Contamination (Pseudo-)Distance of Two Distributions">
 <param name="Local" value="ContaminationSize.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Generic function for the computation of the Cramer - von Mises  distance of two distributions">
+<param name="Name" value="Generic function for the computation of the Cramer - von Mises distance of two distributions">
 <param name="Local" value="CvMDist.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
@@ -1551,11 +1551,11 @@
 <param name="Local" value="distrExMASK.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Methods for Function dim in Package `distrEx' ">
+<param name="Name" value="Methods for Function dim in Package 'distrEx'">
 <param name="Local" value="dim-methods.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Methods for Function plot in Package `distrEx' ">
+<param name="Name" value="Methods for Function plot in Package 'distrEx'">
[TRUNCATED]

To get the complete diff run:
    svnlook diff /svnroot/distr -r 398


More information about the Distr-commits mailing list