[Distr-commits] r526 - in branches/distr-2.2/pkg: SweaveListingUtils SweaveListingUtils/R SweaveListingUtils/chm distr distr/chm distrDoc distrDoc/R distrDoc/chm distrEllipse distrEllipse/chm distrEllipse/man distrEx distrEx/chm distrMod distrMod/chm distrSim distrSim/chm distrTEst distrTEst/chm distrTeach distrTeach/chm startupmsg startupmsg/chm
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Aug 17 01:37:00 CEST 2009
Author: ruckdeschel
Date: 2009-08-17 01:36:58 +0200 (Mon, 17 Aug 2009)
New Revision: 526
Modified:
branches/distr-2.2/pkg/SweaveListingUtils/DESCRIPTION
branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R
branches/distr-2.2/pkg/SweaveListingUtils/chm/SweaveListingUtils.chm
branches/distr-2.2/pkg/distr/DESCRIPTION
branches/distr-2.2/pkg/distr/chm/Distr.chm
branches/distr-2.2/pkg/distrDoc/DESCRIPTION
branches/distr-2.2/pkg/distrDoc/R/distrDoc.R
branches/distr-2.2/pkg/distrDoc/chm/distrDoc.chm
branches/distr-2.2/pkg/distrEllipse/DESCRIPTION
branches/distr-2.2/pkg/distrEllipse/chm/00Index.html
branches/distr-2.2/pkg/distrEllipse/chm/EllipticalParameter-class.html
branches/distr-2.2/pkg/distrEllipse/chm/MultivarMixingDistribution-class.html
branches/distr-2.2/pkg/distrEllipse/chm/MvnormParameter-class.html
branches/distr-2.2/pkg/distrEllipse/chm/MvtParameter-class.html
branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.chm
branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.hhp
branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.toc
branches/distr-2.2/pkg/distrEllipse/man/EllipticalParameter-class.Rd
branches/distr-2.2/pkg/distrEllipse/man/MultivarMixingDistribution-class.Rd
branches/distr-2.2/pkg/distrEllipse/man/MvnormParameter-class.Rd
branches/distr-2.2/pkg/distrEllipse/man/MvtParameter-class.Rd
branches/distr-2.2/pkg/distrEx/DESCRIPTION
branches/distr-2.2/pkg/distrEx/chm/00Index.html
branches/distr-2.2/pkg/distrEx/chm/E.html
branches/distr-2.2/pkg/distrEx/chm/distrEx.chm
branches/distr-2.2/pkg/distrEx/chm/distrEx.hhp
branches/distr-2.2/pkg/distrEx/chm/distrEx.toc
branches/distr-2.2/pkg/distrMod/DESCRIPTION
branches/distr-2.2/pkg/distrMod/chm/distrMod.chm
branches/distr-2.2/pkg/distrSim/DESCRIPTION
branches/distr-2.2/pkg/distrSim/chm/00Index.html
branches/distr-2.2/pkg/distrSim/chm/distrSim.chm
branches/distr-2.2/pkg/distrSim/chm/distrSim.hhp
branches/distr-2.2/pkg/distrSim/chm/distrSim.toc
branches/distr-2.2/pkg/distrSim/chm/summary-methods.html
branches/distr-2.2/pkg/distrTEst/DESCRIPTION
branches/distr-2.2/pkg/distrTEst/chm/distrTEst.chm
branches/distr-2.2/pkg/distrTEst/chm/distrTEst.hhp
branches/distr-2.2/pkg/distrTeach/DESCRIPTION
branches/distr-2.2/pkg/distrTeach/chm/distrTeach.chm
branches/distr-2.2/pkg/startupmsg/DESCRIPTION
branches/distr-2.2/pkg/startupmsg/chm/startupmsg.chm
Log:
added field "Encoding: latin1" to all DESCRIPTION files in order to avoid problems with e.g. Windows locale when
svn replaces $LastChangedDate
fixed some buglets in documentation to distrEllipse
fixed some buglet in SweaveListingUtils.R (only appeared when vignette building was skipped)
Modified: branches/distr-2.2/pkg/SweaveListingUtils/DESCRIPTION
===================================================================
--- branches/distr-2.2/pkg/SweaveListingUtils/DESCRIPTION 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/SweaveListingUtils/DESCRIPTION 2009-08-16 23:36:58 UTC (rev 526)
@@ -1,5 +1,6 @@
Package: SweaveListingUtils
Title: Utilities for Sweave together with TeX listings package
+Encoding: latin1
Version: 0.4
Depends: R(>= 2.0.0), startupmsg
Suggests: distr
Modified: branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R
===================================================================
--- branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R 2009-08-16 23:36:58 UTC (rev 526)
@@ -423,23 +423,25 @@
lE <- length(erg)
if(withLines){
for(k in 1:lE){
- if( k == 1 ) {
- if( ( lineNr[[k]][1] < lineNr[[k]][2] ) || ( lE>1 ) )
- cat("lines ")
- else cat("line ")
- }else{
- if( k < lE )
- cat(", \n")
- else cat(", and\n")
- }
- if(lineNr[[k]][1] < lineNr[[k]][2])
- cat(lineNr[[k]][1], "--", lineNr[[k]][2], sep = "")
- else cat(lineNr[[k]][1])
+ if( !is.null(lineNr[[k]])){
+ if( k == 1 ) {
+ if( ( lineNr[[k]][1] < lineNr[[k]][2] ) || ( lE>1 ) )
+ cat("lines ")
+ else cat("line ")
+ }else{
+ if( k < lE )
+ cat(", \n")
+ else cat(", and\n")
+ }
+ if(lineNr[[k]][1] < lineNr[[k]][2])
+ cat(lineNr[[k]][1], "--", lineNr[[k]][2], sep = "")
+ else cat(lineNr[[k]][1])
+ }
}
cat("\n")
}
for(k in 1:length(erg)){
- if(lR[[k]]){
+ if(!is.null(lR[[k]])){ if(lR[[k]]){
todo <- NULL
if(TYPE=="man"){
ex.from <- if(length(gr <- grep("\\\\examples\\{",RL[[k]]))) gr[1] else lR[[k]]
@@ -466,7 +468,7 @@
writeLines(RL[[k]])
}
cat("\\end{lstlisting}\n",line,"%\n\n",sep="")
- }
+ }}
}
return(invisible())
}
Modified: branches/distr-2.2/pkg/SweaveListingUtils/chm/SweaveListingUtils.chm
===================================================================
(Binary files differ)
Modified: branches/distr-2.2/pkg/distr/DESCRIPTION
===================================================================
--- branches/distr-2.2/pkg/distr/DESCRIPTION 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distr/DESCRIPTION 2009-08-16 23:36:58 UTC (rev 526)
@@ -10,6 +10,7 @@
SweaveListingUtils
Imports: stats
LazyLoad: yes
+Encoding: latin1
License: LGPL-3
URL: http://distr.r-forge.r-project.org/
LastChangedDate: {$LastChangedDate$}
Modified: branches/distr-2.2/pkg/distr/chm/Distr.chm
===================================================================
(Binary files differ)
Modified: branches/distr-2.2/pkg/distrDoc/DESCRIPTION
===================================================================
--- branches/distr-2.2/pkg/distrDoc/DESCRIPTION 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrDoc/DESCRIPTION 2009-08-16 23:36:58 UTC (rev 526)
@@ -8,9 +8,10 @@
Stabla
Maintainer: Peter Ruckdeschel <Peter.Ruckdeschel at itwm.fraunhofer.de>
Depends: R(>= 2.6.0), tools, distr(>= 2.2.0), startupmsg, distrEx(>= 2.2.0), distrSim(>= 2.2.0), distrTEst(>= 2.2.0),
- distrTeach(>= 2.2.0), distrMod(>= 2.2.0)
+ distrTeach(>= 2.2.0), RandVar(>= 0.7), distrMod(>= 2.2.0), MASS, methods
Suggests: Biobase
LazyLoad: yes
+Encoding: latin1
License: LGPL-3
URL: http://distr.r-forge.r-project.org/
LastChangedDate: {$LastChangedDate$}
Modified: branches/distr-2.2/pkg/distrDoc/R/distrDoc.R
===================================================================
--- branches/distr-2.2/pkg/distrDoc/R/distrDoc.R 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrDoc/R/distrDoc.R 2009-08-16 23:36:58 UTC (rev 526)
@@ -1,4 +1,8 @@
-.First.lib <- function(libname, pkgname)
+.onLoad <- function(lib, pkg) { # extended 03-28-06: P.R.
+ require("methods", character = TRUE, quietly = TRUE)
+}
+
+.onAttach <- function(libname, pkgname)
{
if (.Platform$OS.type == "windows" && require("Biobase")
&& interactive() && .Platform$GUI == "Rgui")
Modified: branches/distr-2.2/pkg/distrDoc/chm/distrDoc.chm
===================================================================
(Binary files differ)
Modified: branches/distr-2.2/pkg/distrEllipse/DESCRIPTION
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/DESCRIPTION 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/DESCRIPTION 2009-08-16 23:36:58 UTC (rev 526)
@@ -10,5 +10,6 @@
LazyLoad: yes
License: LGPL-3
URL: http://distr.r-forge.r-project.org/
+Encoding: latin1
LastChangedDate: {$LastChangedDate: 2009-03-31 15:31:30 +0200 (Di, 31 Mrz 2009) $}
LastChangedRevision: {$LastChangedRevision: 447 $}
Modified: branches/distr-2.2/pkg/distrEllipse/chm/00Index.html
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/chm/00Index.html 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/chm/00Index.html 2009-08-16 23:36:58 UTC (rev 526)
@@ -172,11 +172,11 @@
<tr><td width="25%"><a href="distrEllipseMASK.html">MASKING</a></td>
<td>Masking of/by other functions in package "distrEllipse"</td></tr>
<tr><td width="25%"><a href="MvnormParameter-class.html">mean</a></td>
-<td>Paramter of a multivariate normal distribution</td></tr>
+<td>Paramter of a multivariate normal distribution</td></tr>
<tr><td width="25%"><a href="MvnormDistribution-class.html">mean,MVNormDistribution-method</a></td>
<td>MVNorm distribution class</td></tr>
<tr><td width="25%"><a href="MvnormParameter-class.html">mean,MVNormParameter-method</a></td>
-<td>Paramter of a multivariate normal distribution</td></tr>
+<td>Paramter of a multivariate normal distribution</td></tr>
<tr><td width="25%"><a href="MultivarMixingDistribution-class.html">mixCoeff</a></td>
<td>Class "MultivarMixingDistribution"</td></tr>
<tr><td width="25%"><a href="MultivarMixingDistribution-class.html">mixCoeff,MultivarMixingDistribution-method</a></td>
@@ -218,7 +218,7 @@
<tr><td width="25%"><a href="MvnormDistribution-class.html">MVNormDistribution-class</a></td>
<td>MVNorm distribution class</td></tr>
<tr><td width="25%"><a href="MvnormParameter-class.html">MVNormParameter-class</a></td>
-<td>Paramter of a multivariate normal distribution</td></tr>
+<td>Paramter of a multivariate normal distribution</td></tr>
<tr><td width="25%"><a href="MvtDistribution.html">MVt</a></td>
<td>Generating function for MvtDistribution-class</td></tr>
<tr><td width="25%"><a href="MvtDistribution.html">MVtDistribution</a></td>
@@ -315,11 +315,11 @@
<tr><td width="25%"><a href="SphericalDistribution-class.html">showobj,SphericalDistribution-method</a></td>
<td>Spherical distribution class</td></tr>
<tr><td width="25%"><a href="MvnormParameter-class.html">sigma</a></td>
-<td>Paramter of a multivariate normal distribution</td></tr>
+<td>Paramter of a multivariate normal distribution</td></tr>
<tr><td width="25%"><a href="MvnormDistribution-class.html">sigma,MVNormDistribution-method</a></td>
<td>MVNorm distribution class</td></tr>
<tr><td width="25%"><a href="MvnormParameter-class.html">sigma,MVNormParameter-method</a></td>
-<td>Paramter of a multivariate normal distribution</td></tr>
+<td>Paramter of a multivariate normal distribution</td></tr>
<tr><td width="25%"><a href="MvtDistribution-class.html">sigma,MVtDistribution-method</a></td>
<td>MVt distribution class</td></tr>
<tr><td width="25%"><a href="MvtParameter-class.html">sigma,MVtParameter-method</a></td>
Modified: branches/distr-2.2/pkg/distrEllipse/chm/EllipticalParameter-class.html
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/chm/EllipticalParameter-class.html 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/chm/EllipticalParameter-class.html 2009-08-16 23:36:58 UTC (rev 526)
@@ -1,10 +1,10 @@
<html><head><title>Paramter of an Elliptical distributions</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="Rchm.css">
-</head>
-<body>
+</head><body>
-<table width="100%"><tr><td>EllipticalParameter-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table><object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
+<table width="100%"><tr><td>EllipticalParameter-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table>
+<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
<param name="keyword" value="R: EllipticalParameter-class">
<param name="keyword" value="R: location">
<param name="keyword" value="R: location,EllipticalParameter-method">
@@ -23,9 +23,7 @@
<h3>Description</h3>
-<p>
-The class of the parameter of Elliptical distributions.
-</p>
+<p>The class of the parameter of Elliptical distributions.</p>
<h3>Objects from the Class</h3>
@@ -37,14 +35,19 @@
<h3>Slots</h3>
+<p>
+
<dl>
-<dt><code>location</code>:</dt><dd>numeric; center / location of the distribution. </dd>
-<dt><code>scale</code>:</dt><dd>matrix; the scale matrix; the number of rows of this
+<dt><code>loc</code>:</dt><dd> numeric; center / location of the distribution. </dd>
+<dt><code>scale</code>:</dt><dd> matrix; the scale matrix; the number of rows of this
matrix must be the same as the length of <code>location</code>.</dd>
-<dt><code>name</code>:</dt><dd>default name is
+<dt><code>name</code>:</dt><dd> default name is
“parameter of a Elliptical distribution”. </dd>
</dl>
+</p>
+
+
<h3>Extends</h3>
<p>
@@ -55,6 +58,8 @@
<h3>Methods</h3>
+<p>
+
<dl>
<dt>location</dt><dd><code>signature(object = "EllipticalParameter")</code>: access method for
slot <code>location</code>. </dd>
@@ -66,18 +71,17 @@
slot <code>scale</code>. </dd>
</dl>
+</p>
+
+
<h3>Author(s)</h3>
-<p>
-Peter Ruckdeschel <a href="mailto:Peter.Ruckdeschel at itwm.fraunhofer.de">Peter.Ruckdeschel at itwm.fraunhofer.de</a>
-</p>
+<p>Peter Ruckdeschel <a href="mailto:Peter.Ruckdeschel at itwm.fraunhofer.de">Peter.Ruckdeschel at itwm.fraunhofer.de</a></p>
<h3>See Also</h3>
-<p>
-<code><a href="EllipticalDistribution-class.html">EllipticalDistribution-class</a></code>, <code><a onclick="findlink('distr', 'Parameter-class.html')" style="text-decoration: underline; color: blue; cursor: hand">Parameter-class</a></code>
-</p>
+<p><code></code>, <code><a onclick="findlink('distr', 'Parameter-class.html')" style="text-decoration: underline; color: blue; cursor: hand">Parameter-class</a></code></p>
<h3>Examples</h3>
@@ -96,7 +100,5 @@
}
</script>
-
-<hr><div align="center">[Package <em>distrEllipse</em> version 0.1 <a href="00Index.html">Index</a>]</div>
-
+<hr><div align="center">[Package <em>distrEllipse</em> version 0.2 <a href="00Index.html">Index</a>]</div>
</body></html>
Modified: branches/distr-2.2/pkg/distrEllipse/chm/MultivarMixingDistribution-class.html
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/chm/MultivarMixingDistribution-class.html 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/chm/MultivarMixingDistribution-class.html 2009-08-16 23:36:58 UTC (rev 526)
@@ -1,10 +1,10 @@
<html><head><title>Class "MultivarMixingDistribution"</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="Rchm.css">
-</head>
-<body>
+</head><body>
-<table width="100%"><tr><td>MultivarMixingDistribution-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table><object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
+<table width="100%"><tr><td>MultivarMixingDistribution-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table>
+<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
<param name="keyword" value="R: MultivarMixingDistribution-class">
<param name="keyword" value="R: mixCoeff">
<param name="keyword" value="R: mixDistr">
@@ -28,20 +28,18 @@
<param name="keyword" value="R: E,MultivarMixingDistribution,ANY,ANY-method">
<param name="keyword" value="R: show,MultivarMixingDistribution-method">
<param name="keyword" value="R: showobj,MultivarMixingDistribution-method">
-<param name="keyword" value=" Class 'MultivarMixingDistribution'">
+<param name="keyword" value=" Class "MultivarMixingDistribution"">
</object>
-<h2>Class 'MultivarMixingDistribution'</h2>
+<h2>Class "MultivarMixingDistribution"</h2>
<h3>Description</h3>
-<p>
-<code>MultivarMixingDistribution</code>-class is a class to formalize
+<p><code>MultivarMixingDistribution</code>-class is a class to formalize
multivariate mixing distributions; it is a subclass to
-class <code>MultivariateDistribution</code>.
-</p>
+class <code>MultivariateDistribution</code>.</p>
<h3>Objects from the Class</h3>
@@ -50,12 +48,14 @@
Objects can be created by calls of the form
<code>new("MultivarMixingDistribution", ...)</code>.
More frequently they are created via the generating function
-<code><a href="MultivarMixingDistribution.html">MultivarMixingDistribution</a></code>.
+<code></code>.
</p>
<h3>Slots</h3>
+<p>
+
<dl>
<dt><code>mixCoeff</code>:</dt><dd>Object of class <code>"numeric"</code>: a vector of
probabilities for the mixing components.</dd>
@@ -70,9 +70,6 @@
<dt><code>d</code>:</dt><dd>fixed to <code>NULL</code></dd>
<dt><code>p</code>:</dt><dd>Object of class <code>"OptionalFunction"</code>: if non-null cumulative distribution function</dd>
<dt><code>q</code>:</dt><dd>Object of class <code>"OptionalFunction"</code>: if non-null quantile function</dd>
-<dt><code>support</code>:</dt><dd>numeric vector — the union of all support slots of components, if existing</dd>
-<dt><code>gaps</code>:</dt><dd>(numeric) matrix or <code>NULL</code>; the merged <code>gaps</code> slots of all components,
-if existing (else NULL)</dd>
<dt><code>.withArith</code>:</dt><dd>logical: used internally to issue warnings as to interpretation of arithmetics</dd>
<dt><code>.withSim</code>:</dt><dd>logical: used internally to issue warnings as to accuracy</dd>
<dt><code>.logExact</code>:</dt><dd>logical: used internally to flag the case where there are explicit formulae for the
@@ -83,6 +80,9 @@
used internally to avoid unnecessary calculations.</dd>
</dl>
+</p>
+
+
<h3>Extends</h3>
<p>
@@ -93,6 +93,8 @@
<h3>Methods</h3>
+<p>
+
<dl>
<dt>show</dt><dd><code>signature(object = "MultivarMixingDistribution")</code> prints the object</dd>
<dt>mixCoeff<-</dt><dd><code>signature(object = "MultivarMixingDistribution")</code> replaces the corresponding slot</dd>
@@ -114,7 +116,7 @@
newer version of its class by <code><a onclick="findlink('distr', 'conv2NewVersion.html')" style="text-decoration: underline; color: blue; cursor: hand">conv2NewVersion</a></code> and
returns the corresponding slot of the converted object.</dd>
<dt>plot</dt><dd><code>signature(x = "MultivarMixingDistribution", y = "missing")</code>:
-plot for an spherically symmetric distribution; see <code><a href="plot-methods.html">plot-methods</a></code>.
+plot for an spherically symmetric distribution; see <code></code>.
</dd>
<dt>E</dt><dd>corresponding expectation — see <code><a onclick="findlink('distrEx', 'E.html')" style="text-decoration: underline; color: blue; cursor: hand">E</a></code>.</dd>
<dt>dimension</dt><dd>dim of the range space.</dd>
@@ -127,6 +129,9 @@
</dd>
</dl>
+</p>
+
+
<h3>Author(s)</h3>
<p>
@@ -178,7 +183,5 @@
}
</script>
-
-<hr><div align="center">[Package <em>distrEllipse</em> version 0.1 <a href="00Index.html">Index</a>]</div>
-
+<hr><div align="center">[Package <em>distrEllipse</em> version 0.2 <a href="00Index.html">Index</a>]</div>
</body></html>
Modified: branches/distr-2.2/pkg/distrEllipse/chm/MvnormParameter-class.html
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/chm/MvnormParameter-class.html 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/chm/MvnormParameter-class.html 2009-08-16 23:36:58 UTC (rev 526)
@@ -1,10 +1,10 @@
<html><head><title>Paramter of a multivariate normal distribution</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="Rchm.css">
-</head>
-<body>
+</head><body>
-<table width="100%"><tr><td>MVNormParameter-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table><object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
+<table width="100%"><tr><td>MVNormParameter-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table>
+<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
<param name="keyword" value="R: MVNormParameter-class">
<param name="keyword" value="R: mean">
<param name="keyword" value="R: mean,MVNormParameter-method">
@@ -19,9 +19,7 @@
<h3>Description</h3>
-<p>
-The class of the parameter of MVNorm distributions.
-</p>
+<p>The class of the parameter of MVNorm distributions.</p>
<h3>Objects from the Class</h3>
@@ -33,14 +31,19 @@
<h3>Slots</h3>
+<p>
+
<dl>
-<dt><code>location</code>:</dt><dd>numeric; center / location of the distribution. </dd>
-<dt><code>scale</code>:</dt><dd>matrix; the scale matrix; the number of rows of this
+<dt><code>loc</code>:</dt><dd> numeric; center / location of the distribution. </dd>
+<dt><code>scale</code>:</dt><dd> matrix; the scale matrix; the number of rows of this
matrix must be the same as the length of <code>location</code>.</dd>
-<dt><code>name</code>:</dt><dd>default name is
+<dt><code>name</code>:</dt><dd> default name is
“parameter of a Elliptical distribution”. </dd>
</dl>
+</p>
+
+
<h3>Extends</h3>
<p>
@@ -52,6 +55,8 @@
<h3>Methods</h3>
+<p>
+
<dl>
<dt>mean</dt><dd><code>signature(object = "MVNormParameter")</code>: access method for
slot <code>location</code>. </dd>
@@ -60,18 +65,17 @@
</code> for <code>S=scale(x)</code>. </dd>
</dl>
+</p>
+
+
<h3>Author(s)</h3>
-<p>
-Peter Ruckdeschel <a href="mailto:Peter.Ruckdeschel at itwm.fraunhofer.de">Peter.Ruckdeschel at itwm.fraunhofer.de</a>
-</p>
+<p>Peter Ruckdeschel <a href="mailto:Peter.Ruckdeschel at itwm.fraunhofer.de">Peter.Ruckdeschel at itwm.fraunhofer.de</a></p>
<h3>See Also</h3>
-<p>
-<code><a href="MvnormDistribution-class.html">MVNormDistribution-class</a></code>, <code><a onclick="findlink('distr', 'Parameter-class.html')" style="text-decoration: underline; color: blue; cursor: hand">Parameter-class</a></code>
-</p>
+<p><code></code>, <code><a onclick="findlink('distr', 'Parameter-class.html')" style="text-decoration: underline; color: blue; cursor: hand">Parameter-class</a></code></p>
<h3>Examples</h3>
@@ -90,7 +94,5 @@
}
</script>
-
-<hr><div align="center">[Package <em>distrEllipse</em> version 0.1 <a href="00Index.html">Index</a>]</div>
-
+<hr><div align="center">[Package <em>distrEllipse</em> version 0.2 <a href="00Index.html">Index</a>]</div>
</body></html>
Modified: branches/distr-2.2/pkg/distrEllipse/chm/MvtParameter-class.html
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/chm/MvtParameter-class.html 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/chm/MvtParameter-class.html 2009-08-16 23:36:58 UTC (rev 526)
@@ -1,10 +1,10 @@
<html><head><title>Paramter of a multivariate t distribution</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="Rchm.css">
-</head>
-<body>
+</head><body>
-<table width="100%"><tr><td>MVtParameter-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table><object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
+<table width="100%"><tr><td>MVtParameter-class(distrEllipse)</td><td align="right">R Documentation</td></tr></table>
+<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
<param name="keyword" value="R: MVtParameter-class">
<param name="keyword" value="R: sigma,MVtParameter-method">
<param name="keyword" value="R: df,MVtParameter-method">
@@ -18,9 +18,7 @@
<h3>Description</h3>
-<p>
-The class of the parameter of MVt distributions.
-</p>
+<p>The class of the parameter of MVt distributions.</p>
<h3>Objects from the Class</h3>
@@ -32,16 +30,21 @@
<h3>Slots</h3>
+<p>
+
<dl>
-<dt><code>location</code>:</dt><dd>numeric; center / location of the distribution. </dd>
-<dt><code>scale</code>:</dt><dd>matrix; the scale matrix; the number of rows of this
+<dt><code>loc</code>:</dt><dd> numeric; center / location of the distribution. </dd>
+<dt><code>scale</code>:</dt><dd> matrix; the scale matrix; the number of rows of this
matrix must be the same as the length of <code>location</code>.</dd>
-<dt><code>df</code>:</dt><dd>integer; the degrees of freedom. </dd>
-<dt><code>ncp</code>:</dt><dd>positive real; the non-centrality parameter.</dd>
-<dt><code>name</code>:</dt><dd>default name is
+<dt><code>df</code>:</dt><dd> integer; the degrees of freedom. </dd>
+<dt><code>ncp</code>:</dt><dd> positive real; the non-centrality parameter.</dd>
+<dt><code>name</code>:</dt><dd> default name is
“parameter of a Elliptical distribution”. </dd>
</dl>
+</p>
+
+
<h3>Extends</h3>
<p>
@@ -52,6 +55,8 @@
<h3>Methods</h3>
+<p>
+
<dl>
<dt>mean</dt><dd><code>signature(object = "MVnormParameter")</code>: access method for
slot <code>location</code>. </dd>
@@ -64,18 +69,17 @@
<code>df</code>. </dd>
</dl>
+</p>
+
+
<h3>Author(s)</h3>
-<p>
-Peter Ruckdeschel <a href="mailto:Peter.Ruckdeschel at itwm.fraunhofer.de">Peter.Ruckdeschel at itwm.fraunhofer.de</a>
-</p>
+<p>Peter Ruckdeschel <a href="mailto:Peter.Ruckdeschel at itwm.fraunhofer.de">Peter.Ruckdeschel at itwm.fraunhofer.de</a></p>
<h3>See Also</h3>
-<p>
-<code><a href="MvtDistribution-class.html">MVtDistribution-class</a></code>, <code><a onclick="findlink('distr', 'Parameter-class.html')" style="text-decoration: underline; color: blue; cursor: hand">Parameter-class</a></code>
-</p>
+<p><code></code>, <code><a onclick="findlink('distr', 'Parameter-class.html')" style="text-decoration: underline; color: blue; cursor: hand">Parameter-class</a></code></p>
<h3>Examples</h3>
@@ -94,7 +98,5 @@
}
</script>
-
-<hr><div align="center">[Package <em>distrEllipse</em> version 0.1 <a href="00Index.html">Index</a>]</div>
-
+<hr><div align="center">[Package <em>distrEllipse</em> version 0.2 <a href="00Index.html">Index</a>]</div>
</body></html>
Modified: branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.chm
===================================================================
(Binary files differ)
Modified: branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.hhp
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.hhp 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.hhp 2009-08-16 23:36:58 UTC (rev 526)
@@ -12,22 +12,4 @@
[FILES]
00Index.html
-0distrEllipse-package.html
-EllipticalDistribution-class.html
-EllipticalDistribution.html
-EllipticalParameter-class.html
-MultivarDistrList-class.html
-MultivarDistrList.html
-MultivarMixingDistribution-class.html
-MultivarMixingDistribution.html
-MvnormDistribution-class.html
-MvnormDistribution.html
-MvnormParameter-class.html
-MvtDistribution-class.html
-MvtDistribution.html
-MvtParameter-class.html
-SphericalDistribution-class.html
-SphericalDistribution.html
-distrEllipseMASK.html
-distrEllipseoptions.html
-plot-methods.html
+
Modified: branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.toc
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.toc 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/chm/distrEllipse.toc 2009-08-16 23:36:58 UTC (rev 526)
@@ -567,7 +567,7 @@
<param name="Local" value="MvtDistribution-class.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Paramter of a multivariate normal distribution">
+<param name="Name" value="Paramter of a multivariate normal distribution">
<param name="Local" value="MvnormParameter-class.html">
</OBJECT>
<LI> <OBJECT type="text/sitemap">
Modified: branches/distr-2.2/pkg/distrEllipse/man/EllipticalParameter-class.Rd
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/man/EllipticalParameter-class.Rd 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/man/EllipticalParameter-class.Rd 2009-08-16 23:36:58 UTC (rev 526)
@@ -17,7 +17,7 @@
}
\section{Slots}{
\describe{
- \item{\code{location}:}{ numeric; center / location of the distribution. }
+ \item{\code{loc}:}{ numeric; center / location of the distribution. }
\item{\code{scale}:}{ matrix; the scale matrix; the number of rows of this
matrix must be the same as the length of \code{location}.}
\item{\code{name}:}{ default name is
Modified: branches/distr-2.2/pkg/distrEllipse/man/MultivarMixingDistribution-class.Rd
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/man/MultivarMixingDistribution-class.Rd 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/man/MultivarMixingDistribution-class.Rd 2009-08-16 23:36:58 UTC (rev 526)
@@ -49,9 +49,6 @@
\item{\code{d}:}{fixed to \code{NULL}}
\item{\code{p}:}{Object of class \code{"OptionalFunction"}: if non-null cumulative distribution function}
\item{\code{q}:}{Object of class \code{"OptionalFunction"}: if non-null quantile function}
- \item{\code{support}:}{numeric vector --- the union of all support slots of components, if existing}
- \item{\code{gaps}:}{(numeric) matrix or \code{NULL}; the merged \code{gaps} slots of all components,
- if existing (else NULL)}
\item{\code{.withArith}:}{logical: used internally to issue warnings as to interpretation of arithmetics}
\item{\code{.withSim}:}{logical: used internally to issue warnings as to accuracy}
\item{\code{.logExact}:}{logical: used internally to flag the case where there are explicit formulae for the
Modified: branches/distr-2.2/pkg/distrEllipse/man/MvnormParameter-class.Rd
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/man/MvnormParameter-class.Rd 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/man/MvnormParameter-class.Rd 2009-08-16 23:36:58 UTC (rev 526)
@@ -13,7 +13,7 @@
}
\section{Slots}{
\describe{
- \item{\code{location}:}{ numeric; center / location of the distribution. }
+ \item{\code{loc}:}{ numeric; center / location of the distribution. }
\item{\code{scale}:}{ matrix; the scale matrix; the number of rows of this
matrix must be the same as the length of \code{location}.}
\item{\code{name}:}{ default name is
Modified: branches/distr-2.2/pkg/distrEllipse/man/MvtParameter-class.Rd
===================================================================
--- branches/distr-2.2/pkg/distrEllipse/man/MvtParameter-class.Rd 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEllipse/man/MvtParameter-class.Rd 2009-08-16 23:36:58 UTC (rev 526)
@@ -12,7 +12,7 @@
}
\section{Slots}{
\describe{
- \item{\code{location}:}{ numeric; center / location of the distribution. }
+ \item{\code{loc}:}{ numeric; center / location of the distribution. }
\item{\code{scale}:}{ matrix; the scale matrix; the number of rows of this
matrix must be the same as the length of \code{location}.}
\item{\code{df}:}{ integer; the degrees of freedom. }
Modified: branches/distr-2.2/pkg/distrEx/DESCRIPTION
===================================================================
--- branches/distr-2.2/pkg/distrEx/DESCRIPTION 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEx/DESCRIPTION 2009-08-16 23:36:58 UTC (rev 526)
@@ -10,6 +10,7 @@
Maintainer: Matthias Kohl <Matthias.Kohl at stamats.de>
LazyLoad: yes
License: LGPL-3
+Encoding: latin1
URL: http://distr.r-forge.r-project.org/
LastChangedDate: {$LastChangedDate$}
LastChangedRevision: {$LastChangedRevision$}
Modified: branches/distr-2.2/pkg/distrEx/chm/00Index.html
===================================================================
--- branches/distr-2.2/pkg/distrEx/chm/00Index.html 2009-08-12 22:10:14 UTC (rev 525)
+++ branches/distr-2.2/pkg/distrEx/chm/00Index.html 2009-08-16 23:36:58 UTC (rev 526)
@@ -103,21 +103,29 @@
<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>
@@ -139,13 +147,13 @@
<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>
[TRUNCATED]
To get the complete diff run:
svnlook diff /svnroot/distr -r 526
More information about the Distr-commits
mailing list