[Distr-commits] r509 - branches/distr-2.2/pkg/SweaveListingUtils/R branches/distr-2.2/pkg/SweaveListingUtils/chm branches/distr-2.2/pkg/SweaveListingUtils/inst/doc branches/distr-2.2/pkg/distrEx/chm branches/distr-2.2/pkg/distrEx/src branches/distr-2.2/pkg/distrMod/chm branches/distr-2.2/pkg/distrMod/man branches/distr-2.2/pkg/distrSim/chm pkg/SweaveListingUtils/chm pkg/SweaveListingUtils/inst/doc pkg/distrMod/man pkg/distrSim/man pkg/distrTEst/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Jul 16 14:59:27 CEST 2009


Author: ruckdeschel
Date: 2009-07-16 14:59:22 +0200 (Thu, 16 Jul 2009)
New Revision: 509

Modified:
   branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R
   branches/distr-2.2/pkg/SweaveListingUtils/chm/SweaveListingUtils.chm
   branches/distr-2.2/pkg/SweaveListingUtils/inst/doc/preambleExp.tex
   branches/distr-2.2/pkg/distrEx/chm/distrEx.chm
   branches/distr-2.2/pkg/distrEx/src/distrEx.dll
   branches/distr-2.2/pkg/distrMod/chm/distrMod.chm
   branches/distr-2.2/pkg/distrMod/man/asSemivar-class.Rd
   branches/distr-2.2/pkg/distrSim/chm/distrSim.chm
   pkg/SweaveListingUtils/chm/00Index.html
   pkg/SweaveListingUtils/chm/SweaveListingOptions.html
   pkg/SweaveListingUtils/chm/SweaveListingPreparations.html
   pkg/SweaveListingUtils/chm/SweaveListingUtils.chm
   pkg/SweaveListingUtils/chm/SweaveListingUtils.toc
   pkg/SweaveListingUtils/chm/lstinputSourceFromRForge.html
   pkg/SweaveListingUtils/chm/lstset.html
   pkg/SweaveListingUtils/chm/taglist.html
   pkg/SweaveListingUtils/inst/doc/preambleExp.tex
   pkg/distrMod/man/Estimate-class.Rd
   pkg/distrMod/man/asSemivar-class.Rd
   pkg/distrSim/man/summary-methods.Rd
   pkg/distrTEst/man/Evaluation-class.Rd
Log:
fixed some documentation issues

Modified: branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R
===================================================================
--- branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R	2009-07-16 09:21:26 UTC (rev 508)
+++ branches/distr-2.2/pkg/SweaveListingUtils/R/SweaveListingUtils.R	2009-07-16 12:59:22 UTC (rev 509)
@@ -223,7 +223,6 @@
 
 cat(line,"%Preparations for Sweave and Listings\n",line,"%\n", sep = "")
 
-
 cat("\\RequirePackage{color}\n")
 cat("\\definecolor{Rcolor}{rgb}{",paste(Rcolor,collapse=", "),"}\n", sep = "")
 cat("\\definecolor{RRecomdcolor}{rgb}{",paste(RRecomdcolor,collapse=", "),"}\n", sep = "")
@@ -252,24 +251,24 @@
 cat(line,"%copying relevant parts of Sweave.sty\n",line,"%\n", sep = "")
 
 cat("\\RequirePackage{ifthen}%\n")
-cat("\\newboolean{Sweave at gin}%\n")
-if(gin)
+### you might still want to have the boolean TeX
+#   variables available in your code
+if(gin){
+  cat("\\newboolean{Sweave at gin}%\n")
   cat("\\setboolean{Sweave at gin}{true}%\n")
-else
-  cat("\\setboolean{Sweave at gin}{true}%\n")
-cat("\\newboolean{Sweave at ae}\n")
-if(ae)
+  cat("\\setkeys{Gin}{width=0.8\\textwidth}%\n")
+}
+
+if(ae){
+   cat("\\newboolean{Sweave at ae}\n")
    cat("\\setboolean{Sweave at ae}{true}%\n")
-else
-   cat("\\setboolean{Sweave at ae}{true}%\n")
+   cat("\\RequirePackage[T1]{fontenc}\n",
+       "\\RequirePackage{ae}\n%\n", sep ="")
+}
 
 cat("\\RequirePackage{graphicx,fancyvrb}%\n")
 cat("\\IfFileExists{upquote.sty}{\\RequirePackage{upquote}}{}%\n")
 
-cat("\\ifthenelse{\\boolean{Sweave at gin}}{\\setkeys{Gin}{width=0.8\\textwidth}}{}%\n")
-cat("\\ifthenelse{\\boolean{Sweave at ae}}{%\n",
-    "\\RequirePackage[T1]{fontenc}\n",
-    "\\RequirePackage{ae}\n}{}%\n", sep ="")
 
 cat("\\newenvironment{Schunk}{}{}\n\n")
 

Modified: branches/distr-2.2/pkg/SweaveListingUtils/chm/SweaveListingUtils.chm
===================================================================
(Binary files differ)

Modified: branches/distr-2.2/pkg/SweaveListingUtils/inst/doc/preambleExp.tex
===================================================================
--- branches/distr-2.2/pkg/SweaveListingUtils/inst/doc/preambleExp.tex	2009-07-16 09:21:26 UTC (rev 508)
+++ branches/distr-2.2/pkg/SweaveListingUtils/inst/doc/preambleExp.tex	2009-07-16 12:59:22 UTC (rev 509)
@@ -68,11 +68,9 @@
 \setboolean{Sweave at ae}{true}%
 \RequirePackage{graphicx,fancyvrb}%
 \IfFileExists{upquote.sty}{\RequirePackage{upquote}}{}%
-\ifthenelse{\boolean{Sweave at gin}}{\setkeys{Gin}{width=0.8\textwidth}}{}%
-\ifthenelse{\boolean{Sweave at ae}}{%
+\setkeys{Gin}{width=0.8\textwidth}
 \RequirePackage[T1]{fontenc}
 \RequirePackage{ae}
-}{}%
 \newenvironment{Schunk}{}{}
 
 \newcommand{\Sconcordance}[1]{%

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

Modified: branches/distr-2.2/pkg/distrEx/src/distrEx.dll
===================================================================
(Binary files differ)

Modified: branches/distr-2.2/pkg/distrMod/chm/distrMod.chm
===================================================================
(Binary files differ)

Modified: branches/distr-2.2/pkg/distrMod/man/asSemivar-class.Rd
===================================================================
--- branches/distr-2.2/pkg/distrMod/man/asSemivar-class.Rd	2009-07-16 09:21:26 UTC (rev 508)
+++ branches/distr-2.2/pkg/distrMod/man/asSemivar-class.Rd	2009-07-16 12:59:22 UTC (rev 509)
@@ -21,15 +21,21 @@
       norm in which a multivariate parameter is considered}
   }
 }
+\section{Methods}{
+  \describe{
+    \item{sign}{\code{signature(object = "asSemivar")}:
+      accessor function for slot \code{sign}. }
+    \item{sign<-}{\code{signature(object = "asSemivar", value = "numeric")}:
+      replacement function for slot \code{sign}. }
+        }
+}
+
 \section{Extends}{
 Class \code{"asGRisk"}, directly.\cr
 Class \code{"asRiskwithBias"}, by class \code{"asGRisk"}.\cr
 Class \code{"asRisk"}, by class \code{"asRiskwithBias"}.\cr
 Class \code{"RiskType"}, by class \code{"asGRisk"}.
 }
-\section{Methods}{
-No methods defined with class "asSemivar" in the signature.
-}
 \references{
   Ruckdeschel, P. (2005) Optimally One-Sided Bounded Influence Curves.
   Mathematical Methods in Statistics \emph{14}(1), 105-131.

Modified: branches/distr-2.2/pkg/distrSim/chm/distrSim.chm
===================================================================
(Binary files differ)

Modified: pkg/SweaveListingUtils/chm/00Index.html
===================================================================
--- pkg/SweaveListingUtils/chm/00Index.html	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/chm/00Index.html	2009-07-16 12:59:22 UTC (rev 509)
@@ -10,7 +10,7 @@
 <param name="keyword" value=".. contents">
 </object>
 
-<h2>Help pages for package &lsquo;SweaveListingUtils&rsquo; version 0.3.1</h2>
+<h2>Help pages for package &lsquo;SweaveListingUtils&rsquo; version 0.3.2</h2>
 
 <table width="100%">
 <tr><td width="25%"><a href="0SweaveListingUtils-package.html">SweaveListingUtils-package</a></td>
@@ -47,8 +47,14 @@
 <td>lstsetLanguage</td></tr>
 <tr><td width="25%"><a href="lstset.html">lstsetR</a></td>
 <td>lstset and friends</td></tr>
+<tr><td width="25%"><a href="lstset.html">lstsetRcode</a></td>
+<td>lstset and friends</td></tr>
 <tr><td width="25%"><a href="lstset.html">lstsetRd</a></td>
 <td>lstset and friends</td></tr>
+<tr><td width="25%"><a href="lstset.html">lstsetRin</a></td>
+<td>lstset and friends</td></tr>
+<tr><td width="25%"><a href="lstset.html">lstsetRout</a></td>
+<td>lstset and friends</td></tr>
 <tr><td width="25%"><a href="SweaveListingMASK.html">MASKING</a></td>
 <td>Masking of/by other functions in package "SweaveListingUtils"</td></tr>
 <tr><td width="25%"><a href="SweaveListingOptions.html">overwrite</a></td>
@@ -61,9 +67,11 @@
 <td>S3 class taglist</td></tr>
 <tr><td width="25%"><a href="SweaveListingOptions.html">Rbcolor</a></td>
 <td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
+<tr><td width="25%"><a href="SweaveListingOptions.html">Rcode</a></td>
+<td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
 <tr><td width="25%"><a href="SweaveListingOptions.html">Rcolor</a></td>
 <td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
-<tr><td width="25%"><a href="SweaveListingOptions.html">Rcomment</a></td>
+<tr><td width="25%"><a href="SweaveListingOptions.html">Rcommentcolor</a></td>
 <td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
 <tr><td width="25%"><a href="SweaveListingOptions.html">Rdset</a></td>
 <td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
@@ -73,8 +81,12 @@
 <td>readSourceFromRForge</td></tr>
 <tr><td width="25%"><a href="library.html">require</a></td>
 <td>Loading Packages with registering symbols for TeX package 'listing'</td></tr>
+<tr><td width="25%"><a href="SweaveListingOptions.html">Rin</a></td>
+<td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
 <tr><td width="25%"><a href="SweaveListingOptions.html">Rout</a></td>
 <td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
+<tr><td width="25%"><a href="SweaveListingOptions.html">Routcolor</a></td>
+<td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
 <tr><td width="25%"><a href="SweaveListingOptions.html">Rset</a></td>
 <td>Function to change the global options of the package 'SweaveListingUtils'</td></tr>
 <tr><td width="25%"><a href="setToBeDefinedPkgs.html">setToBeDefinedPkgs</a></td>

Modified: pkg/SweaveListingUtils/chm/SweaveListingOptions.html
===================================================================
--- pkg/SweaveListingUtils/chm/SweaveListingOptions.html	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/chm/SweaveListingOptions.html	2009-07-16 12:59:22 UTC (rev 509)
@@ -10,10 +10,13 @@
 <param name="keyword" value="R:   getSweaveListingOption">
 <param name="keyword" value="R:   Rset">
 <param name="keyword" value="R:   Rdset">
+<param name="keyword" value="R:   Rin">
+<param name="keyword" value="R:   Rout">
+<param name="keyword" value="R:   Rcode">
 <param name="keyword" value="R:   Rcolor">
 <param name="keyword" value="R:   Rbcolor">
-<param name="keyword" value="R:   Rout">
-<param name="keyword" value="R:   Rcomment">
+<param name="keyword" value="R:   Routcolor">
+<param name="keyword" value="R:   Rcommentcolor">
 <param name="keyword" value="R:   pkg">
 <param name="keyword" value="R:   pkv">
 <param name="keyword" value="R:   Keywordstyle">
@@ -98,13 +101,30 @@
 <code>        "commentstyle" = "\\ttfamily\\itshape",</code><br>
 <code>        "alsolanguage" = "R")</code>
 </dd>
+<dt>Rin:</dt><dd>default setting for \lstdefinestyle-definition of <code>Rinstyle</code> (for <font face="Courier New,Courier" color="#666666"><b>R</b></font> input),
+default value is<br>
+<code>list("style" = "Rstyle", "fancyvrb" = "true",</code><br>
+<code>        "basicstyle" = "\\color{Rcolor}\\small")</code>
+</dd>
+<dt>Rout:</dt><dd>default setting for \lstdefinestyle-definition of <code>Routstyle</code> (for <font face="Courier New,Courier" color="#666666"><b>R</b></font> output),
+default value is<br>
+<code>list("fancyvrb" = "false", "basicstyle" = "\\color{Rout}\\small")</code>
+</dd>
+<dt>Rcode:</dt><dd>default setting for \lstdefinestyle-definition of <code>Rcodestyle</code> (for <font face="Courier New,Courier" color="#666666"><b>R</b></font> code),
+default value is<br>
+<code>list("style" = "Rstyle", "fancyvrb" = "true",</code><br>
+<code>        "basicstyle" = "\\color{Rcolor}\\small")</code>
+<code>        "fontshape"= "sl", "basicstyle" = "\\color{Rcolor}")</code>
+</dd>
 <dt>Rcolor:</dt><dd>default setting for color of R-code in rgb-coordinates; 
 defaults to <code>c(0,0.5,0.5)</code></dd>
+<dt>RRecomdcolor:</dt><dd>default setting for color of R-code from recommended packages in rgb-coordinates;
+defaults to <code>c(0,0.6,0.4)</code></dd>
 <dt>Rbcolor:</dt><dd>default setting for color of R-code symbols of intermediate packages
-in rgb-coordinates;  defaults to <code>c(0,0.4,0.4)</code></dd>
-<dt>Rout:</dt><dd>default setting for color of R-output in rgb-coordinates; 
+in rgb-coordinates;  defaults to <code>c(0,0.6,0.6)</code></dd>
+<dt>Routcolor:</dt><dd>default setting for color of R-output in rgb-coordinates;
 defaults to <code>c(0.461,0.039,0.102)</code></dd>
-<dt>Rcomment:</dt><dd>default setting for color of R-comments in rgb-coordinates; 
+<dt>Rcommentcolor:</dt><dd>default setting for color of R-comments in rgb-coordinates;
 defaults to <code>c(0.101,0.043,0.432)</code></dd>
 <dt>pkv:</dt><dd>default setting for package version as character; 
 defaults to <code>"2.0.2"</code></dd>
@@ -135,6 +155,12 @@
 defaults to <code>TRUE</code></dd>
 <dt>addRdset:</dt><dd>logical; default for argument <code>add</code> in command <code>Rdset</code>;
 defaults to <code>TRUE</code></dd>
+<dt>addRinset:</dt><dd>logical; default for argument <code>add</code> in command
+<code>Rinset</code>; defaults to <code>TRUE</code></dd>
+<dt>addRoutset:</dt><dd>logical; default for argument <code>add</code> in command
+<code>Routset</code>; defaults to <code>TRUE</code></dd>
+<dt>addRcodeset:</dt><dd>logical; default for argument <code>add</code> in command
+<code>Rcodeset</code>; defaults to <code>TRUE</code></dd>
 </dl>
 
 <h3>Author(s)</h3>
@@ -173,6 +199,6 @@
 </script>
 
 
-<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.1 <a href="00Index.html">Index</a>]</div>
+<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.2 <a href="00Index.html">Index</a>]</div>
 
 </body></html>

Modified: pkg/SweaveListingUtils/chm/SweaveListingPreparations.html
===================================================================
--- pkg/SweaveListingUtils/chm/SweaveListingPreparations.html	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/chm/SweaveListingPreparations.html	2009-07-16 12:59:22 UTC (rev 509)
@@ -25,18 +25,21 @@
 
 <pre>
 SweaveListingPreparations(
-   withOwnFileSection = FALSE,  
-   withVerbatim = FALSE, 
+   withOwnFileSection = FALSE,
+   withVerbatim = FALSE,
    gin = TRUE,
    ae = TRUE,
-   LineLength = 80,
+   LineLength = getOption("width"),
    Rset = getSweaveListingOption("Rset"),
    Rdset = getSweaveListingOption("Rdset"),
+   Rin = getSweaveListingOption("Rin"),
+   Rout = getSweaveListingOption("Rout"),
+   Rcode = getSweaveListingOption("Rcode"),
    Rcolor = getSweaveListingOption("Rcolor"),
    RRecomdcolor = getSweaveListingOption("RRecomdcolor"),
    Rbcolor = getSweaveListingOption("Rbcolor"),
-   Rout = getSweaveListingOption("Rout"),
-   Rcomment = getSweaveListingOption("Rcomment"),
+   Routcolor = getSweaveListingOption("Routcolor"),
+   Rcommentcolor = getSweaveListingOption("Rcommentcolor"),
    pkg = getSweaveListingOption("pkg"),
    pkv = getSweaveListingOption("pkv"),
    lib.loc = NULL)
@@ -82,6 +85,15 @@
 <tr valign="top"><td><code>Rdset</code></td>
 <td>
 list or taglist; defaults to global option  <code>"Rdset"</code></td></tr>
+<tr valign="top"><td><code>Rin</code></td>
+<td>
+list or taglist; format string for <font face="Courier New,Courier" color="#666666"><b>R</b></font> input code; defaults to global option  <code>"Rin"</code></td></tr>
+<tr valign="top"><td><code>Rout</code></td>
+<td>
+list or taglist; format string for <font face="Courier New,Courier" color="#666666"><b>R</b></font> output code; defaults to global option  <code>"Rout"</code></td></tr>
+<tr valign="top"><td><code>Rcode</code></td>
+<td>
+list or taglist; format string for <font face="Courier New,Courier" color="#666666"><b>R</b></font> code; defaults to global option  <code>"Rcode"</code></td></tr>
 <tr valign="top"><td><code>Rcolor</code></td>
 <td>
 numeric of length 3; [color for R-input-code] defaults to global option  <code>"Rcolor"</code>;
@@ -96,11 +108,11 @@
 numeric of length 3; [color for R-symbols from intermediate packages] defaults to global option  <code>"Rbcolor"</code>;
 rgb coordinates of the color in which to print <font face="Courier New,Courier" color="#666666"><b>R</b></font> keywords
 induced by intermediate packages.</td></tr>
-<tr valign="top"><td><code>Rout</code></td>
+<tr valign="top"><td><code>Routcolor</code></td>
 <td>
 numeric of length 3; [color for R-output-code] defaults to global option  <code>"Rout"</code>;
 rgb coordinates of the color in which to print R output</td></tr>
-<tr valign="top"><td><code>Rcomment</code></td>
+<tr valign="top"><td><code>Rcommentcolor</code></td>
 <td>
 numeric of length 3; [color for R-comments] defaults to global option <code>"Rcomment"</code>;
 rgb coordinates of the color in which to print comments
@@ -189,6 +201,6 @@
 
 
 
-<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.1 <a href="00Index.html">Index</a>]</div>
+<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.2 <a href="00Index.html">Index</a>]</div>
 
 </body></html>

Modified: pkg/SweaveListingUtils/chm/SweaveListingUtils.chm
===================================================================
(Binary files differ)

Modified: pkg/SweaveListingUtils/chm/SweaveListingUtils.toc
===================================================================
--- pkg/SweaveListingUtils/chm/SweaveListingUtils.toc	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/chm/SweaveListingUtils.toc	2009-07-16 12:59:22 UTC (rev 509)
@@ -78,10 +78,22 @@
 <param name="Local" value="lstset.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
+<param name="Name" value="lstsetRcode">
+<param name="Local" value="lstset.html">
+</OBJECT>
+<LI> <OBJECT type="text/sitemap">
 <param name="Name" value="lstsetRd">
 <param name="Local" value="lstset.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
+<param name="Name" value="lstsetRin">
+<param name="Local" value="lstset.html">
+</OBJECT>
+<LI> <OBJECT type="text/sitemap">
+<param name="Name" value="lstsetRout">
+<param name="Local" value="lstset.html">
+</OBJECT>
+<LI> <OBJECT type="text/sitemap">
 <param name="Name" value="MASKING">
 <param name="Local" value="SweaveListingMASK.html">
 </OBJECT>
@@ -106,11 +118,15 @@
 <param name="Local" value="SweaveListingOptions.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
+<param name="Name" value="Rcode">
+<param name="Local" value="SweaveListingOptions.html">
+</OBJECT>
+<LI> <OBJECT type="text/sitemap">
 <param name="Name" value="Rcolor">
 <param name="Local" value="SweaveListingOptions.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
-<param name="Name" value="Rcomment">
+<param name="Name" value="Rcommentcolor">
 <param name="Local" value="SweaveListingOptions.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
@@ -130,10 +146,18 @@
 <param name="Local" value="library.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
+<param name="Name" value="Rin">
+<param name="Local" value="SweaveListingOptions.html">
+</OBJECT>
+<LI> <OBJECT type="text/sitemap">
 <param name="Name" value="Rout">
 <param name="Local" value="SweaveListingOptions.html">
 </OBJECT>
 <LI> <OBJECT type="text/sitemap">
+<param name="Name" value="Routcolor">
+<param name="Local" value="SweaveListingOptions.html">
+</OBJECT>
+<LI> <OBJECT type="text/sitemap">
 <param name="Name" value="Rset">
 <param name="Local" value="SweaveListingOptions.html">
 </OBJECT>

Modified: pkg/SweaveListingUtils/chm/lstinputSourceFromRForge.html
===================================================================
--- pkg/SweaveListingUtils/chm/lstinputSourceFromRForge.html	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/chm/lstinputSourceFromRForge.html	2009-07-16 12:59:22 UTC (rev 509)
@@ -26,7 +26,7 @@
 <pre>
 lstinputSourceFromRForge(PKG, TYPE, FILENAME, PROJECT, from, to,
                          offset.before = 0, offset.after = 0,
-                         LineLength = 80,
+                         LineLength = getOption("width"),
                          withLines = ifelse(TYPE=="R", TRUE, FALSE),
                          fromRForge = getSweaveListingOption("fromRForge"),
                          base.url = getSweaveListingOption("base.url"))
@@ -69,7 +69,7 @@
 <tr valign="top"><td><code>LineLength</code></td>
 <td>
 <code>numeric</code> number of characters per line;
-defaults to 80;</td></tr>
+defaults to getOption("width");</td></tr>
 <tr valign="top"><td><code>withLines</code></td>
 <td>
 logical; shall line-numbers be issued</td></tr>
@@ -152,6 +152,6 @@
 
 
 
-<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3 <a href="00Index.html">Index</a>]</div>
+<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.2 <a href="00Index.html">Index</a>]</div>
 
 </body></html>

Modified: pkg/SweaveListingUtils/chm/lstset.html
===================================================================
--- pkg/SweaveListingUtils/chm/lstset.html	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/chm/lstset.html	2009-07-16 12:59:22 UTC (rev 509)
@@ -8,6 +8,9 @@
 <param name="keyword" value="R:   lstset">
 <param name="keyword" value="R:   lstsetRd">
 <param name="keyword" value="R:   lstsetR">
+<param name="keyword" value="R:   lstsetRin">
+<param name="keyword" value="R:   lstsetRout">
+<param name="keyword" value="R:   lstsetRcode">
 <param name="keyword" value=" lstset and friends">
 </object>
 
@@ -25,11 +28,17 @@
 <h3>Usage</h3>
 
 <pre>
-lstset(taglist, LineLength = 80, startS = "\\lstset{")
-lstsetR(Rset = NULL, LineLength = 80, add = getSweaveListingOption("addRset"),
+lstset(taglist, LineLength = getOption("width"), startS = "\\lstset{")
+lstsetR(Rset = NULL, LineLength = getOption("width"), add = getSweaveListingOption("addRset"),
         startS = "\\lstset{")
-lstsetRd(Rdset = NULL, LineLength = 80, add = getSweaveListingOption("addRdset"),
+lstsetRd(Rdset = NULL, LineLength = getOption("width"), add = getSweaveListingOption("addRdset"),
          startS = "\\lstset{")
+lstsetRin(Rinset = NULL, LineLength = getOption("width"), add = getSweaveListingOption("addRinset"),
+        startS = "\\lstdefinestyle{Rinstyle}{")
+lstsetRout(Routset = NULL, LineLength = getOption("width"), add = getSweaveListingOption("addRoutset"),
+        startS = "\\lstdefinestyle{Routstyle}{")
+lstsetRcode(Rcodeset = NULL, LineLength = getOption("width"), add = getSweaveListingOption("addRcodeset"),
+        startS = "\\lstdefinestyle{Rcodestyle}{")
 </pre>
 
 
@@ -39,7 +48,7 @@
 <tr valign="top"><td><code>LineLength</code></td>
 <td>
 <code>numeric</code> number of characters per line for lstset and friends;
-defaults to 80</td></tr>
+defaults to getOption("width")</td></tr>
 <tr valign="top"><td><code>taglist</code></td>
 <td>
 S3-object of class <code>taglist</code>; arguments for
@@ -49,9 +58,24 @@
 object of S3-class <code>taglist</code> or named <code>list</code> of 
 <code>character</code>s; the listings settings for R-code
 (for <CODE>\lstset</CODE>); defaults to <code>NULL</code>.</td></tr>
+<tr valign="top"><td><code>Rinset</code></td>
+<td>
+object of S3-class <code>taglist</code> or named <code>list</code> of
+<code>character</code>s; the listings settings for R-code in
+environment <code>Sinput</code>; defaults to <code>NULL</code>.</td></tr>
+<tr valign="top"><td><code>Routset</code></td>
+<td>
+object of S3-class <code>taglist</code> or named <code>list</code> of
+<code>character</code>s; the listings settings for R-code in
+environment <code>Soutput</code>; defaults to <code>NULL</code>.</td></tr>
+<tr valign="top"><td><code>Rcodeset</code></td>
+<td>
+object of S3-class <code>taglist</code> or named <code>list</code> of
+<code>character</code>s; the listings settings for R-code in
+environment <code>Scode</code>; defaults to <code>NULL</code>.</td></tr>
 <tr valign="top"><td><code>Rdset</code></td>
 <td>
-object of S3-class <code>taglist</code> or named <code>list</code> of 
+object of S3-class <code>taglist</code> or named <code>list</code> of
 <code>character</code>s;
 the listings settings for Rd-code
 (for <CODE>\lstset</CODE>); defaults to <code>NULL</code>.</td></tr>
@@ -87,7 +111,10 @@
 specifically for R code, it uses 
 <a href="SweaveListingOptions.html">getSweaveListingOption("Rset")</a>,
 and for Rd code, it 
-<a href="SweaveListingOptions.html">getSweaveListingOption("Rdset")</a>,
+<a href="SweaveListingOptions.html">getSweaveListingOption("Rdset")</a>;
+<code>lstsetRin</code>, <code>lstsetRout</code>, and <code>lstsetRcode</code>
+are corresponding specialized commands for 'listings' environments
+<code>Sinput</code>, <code>Soutput</code>, and <code>Scode</code>, respectively.
 </p>
 <p>
 The output to stdout can be captured in an &lsquo;<span class="file">.Rnw</span>&rsquo; file as
@@ -124,6 +151,6 @@
 
 
 
-<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.1 <a href="00Index.html">Index</a>]</div>
+<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.2 <a href="00Index.html">Index</a>]</div>
 
 </body></html>

Modified: pkg/SweaveListingUtils/chm/taglist.html
===================================================================
--- pkg/SweaveListingUtils/chm/taglist.html	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/chm/taglist.html	2009-07-16 12:59:22 UTC (rev 509)
@@ -26,7 +26,7 @@
 <pre>
 taglist(..., list = NULL, defname = "V")
 ## S3 method for class 'taglist':
-print(x, LineLength = 80, offset.start = 0,
+print(x, LineLength = getOption("width"), offset.start = 0,
               withFinalLineBreak = TRUE, first.print = NULL, ...)
 </pre>
 
@@ -52,11 +52,11 @@
 an object of class <code>taglist</code></td></tr>
 <tr valign="top"><td><code>LineLength</code></td>
 <td>
-numeric; deafults to 80; number of characters per line;
+numeric; deafults to getOption("width"); number of characters per line;
 i.e.; <code>print</code>
 will make a linebreak <EM>between</EM> two tags before this number is
 reached; it will not break a tag, however, and only issue an error if
-this single tag is longer than <code>max(3*LineLength,80)</code>. </td></tr>
+this single tag is longer than <code>max(3*LineLength,getOption("width"))</code>. </td></tr>
 <tr valign="top"><td><code>offset.start</code></td>
 <td>
 numeric; number of characters to indent in printing;</td></tr>
@@ -115,6 +115,6 @@
 
 
 
-<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.2 <a href="00Index.html">Index</a>]</div>
+<hr><div align="center">[Package <em>SweaveListingUtils</em> version 0.3.2 <a href="00Index.html">Index</a>]</div>
 
 </body></html>

Modified: pkg/SweaveListingUtils/inst/doc/preambleExp.tex
===================================================================
--- pkg/SweaveListingUtils/inst/doc/preambleExp.tex	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/SweaveListingUtils/inst/doc/preambleExp.tex	2009-07-16 12:59:22 UTC (rev 509)
@@ -68,11 +68,9 @@
 \setboolean{Sweave at ae}{true}%
 \RequirePackage{graphicx,fancyvrb}%
 \IfFileExists{upquote.sty}{\RequirePackage{upquote}}{}%
-\ifthenelse{\boolean{Sweave at gin}}{\setkeys{Gin}{width=0.8\textwidth}}{}%
-\ifthenelse{\boolean{Sweave at ae}}{%
+\setkeys{Gin}{width=0.8\textwidth}
 \RequirePackage[T1]{fontenc}
 \RequirePackage{ae}
-}{}%
 \newenvironment{Schunk}{}{}
 
 \newcommand{\Sconcordance}[1]{%

Modified: pkg/distrMod/man/Estimate-class.Rd
===================================================================
--- pkg/distrMod/man/Estimate-class.Rd	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/distrMod/man/Estimate-class.Rd	2009-07-16 12:59:22 UTC (rev 509)
@@ -55,6 +55,8 @@
      indices of \code{estimate} belonging to the nuisance part}
     \item{\code{fixed}:}{ object of class \code{"OptionalNumeric"}: 
      the fixed and known part of the parameter}
+    \item{\code{trafo}:}{ object of class \code{"list"}:
+     a list with components \code{fct} and \code{mat} (see below). }
     \item{\code{untransformed.estimate}:}{Object of class \code{"ANY"}:
       untransformed estimate.}
     \item{\code{untransformed.asvar}:}{ object of class \code{"OptionalNumericOrMatrix"}

Modified: pkg/distrMod/man/asSemivar-class.Rd
===================================================================
--- pkg/distrMod/man/asSemivar-class.Rd	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/distrMod/man/asSemivar-class.Rd	2009-07-16 12:59:22 UTC (rev 509)
@@ -13,15 +13,19 @@
 }
 \section{Slots}{
   \describe{
-    \item{\code{sign}:}{Object of class \code{"numeric"} -- accounts for
-     whether we only consider positive (sign = 1) or negative bias (sign = -1).}
+    \item{\code{type}:}{Object of class \code{"character"}:
+      \dQuote{asymptotic mean square error}. }
+    \item{\code{biastype}:}{Object of class \code{"BiasType"}:
+      symmetric, one-sided or asymmetric }
+    \item{\code{normtype}:}{Object of class \code{"NormType"}:
+      norm in which a multivariate parameter is considered}
   }
 }
 \section{Methods}{
   \describe{
-    \item{sign}{\code{signature(object = "asSemivar")}: 
+    \item{sign}{\code{signature(object = "asSemivar")}:
       accessor function for slot \code{sign}. }
-    \item{sign<-}{\code{signature(object = "asSemivar", value = "numeric")}: 
+    \item{sign<-}{\code{signature(object = "asSemivar", value = "numeric")}:
       replacement function for slot \code{sign}. }
         }
 }

Modified: pkg/distrSim/man/summary-methods.Rd
===================================================================
--- pkg/distrSim/man/summary-methods.Rd	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/distrSim/man/summary-methods.Rd	2009-07-16 12:59:22 UTC (rev 509)
@@ -7,24 +7,28 @@
 \title{ Methods for Function summary in Package `distrSim' }
 \description{summary-methods}
 
-\section{Methods}{\describe{
-\item{summary}{\code{signature(object = "Dataclass")}: returns the same information as print, 
-moreover a statistical summary for each run; optional arguments: 
-\describe{\item{runs0}{the indices of runs to be summarized; --- of this vector \code{runs0} 
-maximally \code{MaxNumberofSummarizedRuns} runs are summarized where \code{MaxNumberofSummarizedRuns} 
-is a global option, see \code{\link[distrSim]{distrSimoptions}}}
-\item{dims0}{the indices of observation dimensions to be summarized; --- of this vector \code{dims0} 
-maximally \code{MaxNumberofSummarizedObsDims} dimensions are summarized where \code{MaxNumberofSummarizedObsDims} 
-is a global option, see \code{\link[distrSim]{distrSimoptions}}}
- }
+\section{Methods}{
+\describe{
+\item{summary}{\code{signature(object = "Dataclass")}: returns the same information as print,
+    moreover a statistical summary for each run; optional arguments:
+    \describe{
+    \item{runs0}{the indices of runs to be summarized; --- of this vector \code{runs0}
+        maximally \code{MaxNumberofSummarizedRuns} runs are summarized where \code{MaxNumberofSummarizedRuns}
+        is a global option, see \code{\link[distrSim]{distrSimoptions}}}
+    \item{dims0}{the indices of observation dimensions to be summarized; --- of this vector \code{dims0}
+        maximally \code{MaxNumberofSummarizedObsDims} dimensions are summarized where \code{MaxNumberofSummarizedObsDims}
+        is a global option, see \code{\link[distrSim]{distrSimoptions}}}
+    }}
 
-\item{summary}{\code{signature(object = "Simulation")}: returns name, filename, seed, number of runs, the size of the sample and a
-statistical summary for each run; optional arguments: as with \code{signature(object = "Dataclass")} }
+\item{summary}{\code{signature(object = "Simulation")}: returns name, filename,
+seed, number of runs, the size of the sample and a
+    statistical summary for each run; optional arguments: as with \code{signature(object = "Dataclass")} }
 
-\item{summary}{\code{signature(object = "Contsimulation")}: returns name, filename, seed, number of runs, the size of the sample, the
-rate and a statistical summary for each run of the real data; optional arguments: as with \code{signature(object = "Dataclass")} }
-
-}}}
+\item{summary}{\code{signature(object = "Contsimulation")}: returns name, filename,
+seed, number of runs, the size of the sample, the
+    rate and a statistical summary for each run of the real data; optional arguments:
+    as with \code{signature(object = "Dataclass")} }
+}}
 \concept{summary}
 \keyword{methods}
 \concept{S4 data class}

Modified: pkg/distrTEst/man/Evaluation-class.Rd
===================================================================
--- pkg/distrTEst/man/Evaluation-class.Rd	2009-07-16 09:21:26 UTC (rev 508)
+++ pkg/distrTEst/man/Evaluation-class.Rd	2009-07-16 12:59:22 UTC (rev 509)
@@ -14,7 +14,8 @@
   \describe{
     \item{\code{call.ev}:}{Object of class \code{"call"} the call which created the object, 
       e.g.; ``evaluate(Dataclassobject,mean)'' }
-    \item{\code{estimator}:}{Object of class \code{"OptionalFunction"}: estimation function used; this estimation function 
+    \item{\code{Data}:}{Object of class \code{"Dataclass"}: the data set / simulation on which the evaluation takes place.}
+    \item{\code{estimator}:}{Object of class \code{"OptionalFunction"}: estimation function used; this estimation function
     should be able to deal with data in matrix form \code{samplesize} x \code{obsDim} and 
     should return either a univariate result or a vector (with named coordinates, if possible).}
     \item{\code{filename}:}{Object of class \code{"character"}: the filename of the evaluation;



More information about the Distr-commits mailing list