[Distr-commits] r330 - in pkg: distrEx/chm distrMod/R distrMod/chm distrMod/man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Nov 12 22:18:34 CET 2008
Author: ruckdeschel
Date: 2008-11-12 22:18:32 +0100 (Wed, 12 Nov 2008)
New Revision: 330
Added:
pkg/distrEx/chm/plot-methods.html
Modified:
pkg/distrMod/R/AllShow.R
pkg/distrMod/chm/0distrMod-package.html
pkg/distrMod/chm/Confint-class.html
pkg/distrMod/chm/distrMod.chm
pkg/distrMod/man/Confint-class.Rd
Log:
modified output in show - Confint-class
Added: pkg/distrEx/chm/plot-methods.html
===================================================================
--- pkg/distrEx/chm/plot-methods.html (rev 0)
+++ pkg/distrEx/chm/plot-methods.html 2008-11-12 21:18:32 UTC (rev 330)
@@ -0,0 +1,66 @@
+<html><head><title>Methods for Function plot in Package ‘distrEx’</title>
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+<link rel="stylesheet" type="text/css" href="Rchm.css">
+</head>
+<body>
+
+<table width="100%"><tr><td>plot-methods(distrEx)</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: plot">
+<param name="keyword" value="R: plot-methods">
+<param name="keyword" value="R: plot,UnivariateCondDistribution,missing-method">
+<param name="keyword" value="R: plot,MultivariateDistribution,missing-method">
+<param name="keyword" value=" Methods for Function plot in Package ‘distrEx’">
+</object>
+
+
+<h2>Methods for Function plot in Package ‘distrEx’</h2>
+
+
+<h3>Description</h3>
+
+<p>
+plot-methods
+</p>
+
+
+<h3>Usage</h3>
+
+<pre>plot(x, y, ...)
+## S4 method for signature 'UnivariateCondDistribution,
+## missing':
+plot(x, y, ...)
+## S4 method for signature 'MultivariateDistribution,
+## missing':
+plot(x, y, ...)
+</pre>
+
+
+<h3>Arguments</h3>
+
+<table summary="R argblock">
+<tr valign="top"><td><code>x</code></td>
+<td>
+object of class
+<code>"UnivariateCondDistribution"</code> or class
+<code>"MultivariateDistribution"</code>:
+distribution(s) which should be plotted </td></tr>
+<tr valign="top"><td><code>y</code></td>
+<td>
+missing </td></tr>
+<tr valign="top"><td><code>...</code></td>
+<td>
+addtional arguments </td></tr>
+</table>
+
+<h3>Details</h3>
+
+<p>
+upto now only warnings are issued that the corresponding
+method is not yet implemented;
+</p>
+
+
+
+<hr><div align="center">[Package <em>distrEx</em> version 2.0.2 <a href="00Index.html">Index]</a></div>
+
+</body></html>
Modified: pkg/distrMod/R/AllShow.R
===================================================================
--- pkg/distrMod/R/AllShow.R 2008-11-06 17:00:59 UTC (rev 329)
+++ pkg/distrMod/R/AllShow.R 2008-11-12 21:18:32 UTC (rev 330)
@@ -232,7 +232,12 @@
setMethod("show", "Confint",
function(object){
- cat(gettextf("A[n] %s confidence interval:\n",type(object)))
+ if (length(type(object)<2))
+ cat(gettextf("A[n] %s confidence interval:\n",type(object)))
+ else{
+ cat(gettextf("A[n] %s confidence interval:\n",type(object)[1]))
+ cat(gettextf("%s\n",type(object)[-1]), sep = " ")
+ }
print(confint(object), quote = FALSE)
if(getdistrModOption("show.details")!="minimal"){
cat(gettextf("Type of estimator: %s\n", name.estimate(object)))
Modified: pkg/distrMod/chm/0distrMod-package.html
===================================================================
--- pkg/distrMod/chm/0distrMod-package.html 2008-11-06 17:00:59 UTC (rev 329)
+++ pkg/distrMod/chm/0distrMod-package.html 2008-11-12 21:18:32 UTC (rev 330)
@@ -31,10 +31,10 @@
<td align="left">Package: </td> <td align="left"> distrMod</td>
</tr>
<tr>
- <td align="left"> Version: </td> <td align="left"> 2.0 </td>
+ <td align="left"> Version: </td> <td align="left"> 2.0.2 </td>
</tr>
<tr>
- <td align="left"> Date: </td> <td align="left"> 2008-08-26 </td>
+ <td align="left"> Date: </td> <td align="left"> 2008-11-05 </td>
</tr>
<tr>
<td align="left"> Depends: </td> <td align="left"> R(>= 2.6.0), methods, startupmsg, distr(>= 2.0), distrEx(>= 2.0), </td>
@@ -46,7 +46,7 @@
<td align="left"> LazyLoad: </td> <td align="left"> yes</td>
</tr>
<tr>
- <td align="left"> License: </td> <td align="left"> GPL (version 2 or later)</td>
+ <td align="left"> License: </td> <td align="left"> LGPL-3</td>
</tr>
<tr>
<td align="left"> URL: </td> <td align="left"> http://distr.r-forge.r-project.org/</td>
@@ -405,6 +405,6 @@
-<hr><div align="center">[Package <em>distrMod</em> version 2.0 <a href="00Index.html">Index]</a></div>
+<hr><div align="center">[Package <em>distrMod</em> version 2.0.2 <a href="00Index.html">Index]</a></div>
</body></html>
Modified: pkg/distrMod/chm/Confint-class.html
===================================================================
--- pkg/distrMod/chm/Confint-class.html 2008-11-06 17:00:59 UTC (rev 329)
+++ pkg/distrMod/chm/Confint-class.html 2008-11-12 21:18:32 UTC (rev 330)
@@ -50,7 +50,10 @@
<dl>
<dt><code>type</code>:</dt><dd>Object of class <code>"character"</code>:
-type of the confidence interval (asymptotic, bootstrap,...). </dd>
+type of the confidence interval (asymptotic, bootstrap,...).
+Can be of length <code>>2</code>. Then in printing, the first element
+is printed in the gap '[...]' in 'an [...] confidence interval',
+while the other elements are printed below.</dd>
<dt><code>confint</code>:</dt><dd>Object of class <code>"array"</code>:
the confidence interval(s).</dd>
<dt><code>call.estimate</code>:</dt><dd>Object of class <code>"call"</code>:
@@ -113,7 +116,7 @@
but with additional arguments <code>digits</code>.</dd>
</dl>
-<h3>Details for methods this-is-escaped-codenormal-bracket108bracket-normal, this-is-escaped-codenormal-bracket109bracket-normal</h3>
+<h3>Details for methods this-is-escaped-codenormal-bracket109bracket-normal, this-is-escaped-codenormal-bracket110bracket-normal</h3>
<p>
Detailedness of output by methods <code>show</code>, <code>print</code> is controlled
@@ -194,6 +197,6 @@
-<hr><div align="center">[Package <em>distrMod</em> version 2.0 <a href="00Index.html">Index]</a></div>
+<hr><div align="center">[Package <em>distrMod</em> version 2.0.2 <a href="00Index.html">Index]</a></div>
</body></html>
Modified: pkg/distrMod/chm/distrMod.chm
===================================================================
(Binary files differ)
Modified: pkg/distrMod/man/Confint-class.Rd
===================================================================
--- pkg/distrMod/man/Confint-class.Rd 2008-11-06 17:00:59 UTC (rev 329)
+++ pkg/distrMod/man/Confint-class.Rd 2008-11-12 21:18:32 UTC (rev 330)
@@ -29,7 +29,10 @@
\section{Slots}{
\describe{
\item{\code{type}:}{Object of class \code{"character"}:
- type of the confidence interval (asymptotic, bootstrap,\dots). }
+ type of the confidence interval (asymptotic, bootstrap,\dots).
+ Can be of length \code{>2}. Then in printing, the first element
+ is printed in the gap '[...]' in 'an [...] confidence interval',
+ while the other elements are printed below.}
\item{\code{confint}:}{Object of class \code{"array"}:
the confidence interval(s).}
\item{\code{call.estimate}:}{Object of class \code{"call"}:
More information about the Distr-commits
mailing list