Displaying 4 results from an estimated 4 matches for "__description__".
2005 Aug 31
1
Why should package.skeleton() fail R CMD check?
...et of
changes I had to do make utils:::prompt.default to produce Rd files
passing R CMD check. There are still two warnings: one on missing source
files and another on missing keywords, but these are not fatal. This
still produces bad looking latex. These are the changes I made
* I replaced "__description__" with "description", since "__" will give
latex errors.
* I enclosed ""Make other sections" within Note, so that it won't give
error on stray top level text. It will now appear as numbered latex
\section{} in dvi file, but that can the package author co...
2006 Apr 04
2
documenting s4 methods in package
....
\arguments{
\item{x}{ ~~Describe \code{x} here~~ }
\item{y}{ ~~Describe \code{y} here~~ }
\item{z}{ ~~Describe \code{z} here~~ }
\item{simplify}{ ~~Describe \code{simplify} here~~ }
\item{descrip}{ ~~Describe \code{descrip} here~~ }
}
\details{
~~ If necessary, more details than the __description__ above ~~
}
\value{
~Describe the value returned
If it is a LIST, use
\item{comp1 }{Description of 'comp1'}
\item{comp2 }{Description of 'comp2'}
...
}
\references{ ~put references to the literature/web site here ~ }
\author{ ~~who you are~~ }
\note{ ~~further notes~~ }...
2005 Aug 31
3
generic function argument list problem
Hi
it says in R-exts that
A method must have all the arguments of the generic,
including ... if the generic does.
A method must have arguments in exactly the same order as the
generic.
A method should use the same defaults as the generic.
So, how come the arguments for rep() are (x, times, ...) and the
arguments
for rep.default() are (x, times, length.out, each, ...) ?
2006 Apr 07
0
[R] documenting s4 methods in package
...tem{z}{ ~~Describe \code{z} here~~ }
>>>>> \item{simplify}{ ~~Describe \code{simplify} here~~ }
>>>>> \item{descrip}{ ~~Describe \code{descrip} here~~ }
>>>>> }
>>>>> \details{
>>>>> ~~ If necessary, more details than the __description__ above ~~
>>>>> }
>>>>> \value{
>>>>> ~Describe the value returned
>>>>> If it is a LIST, use
>>>>> \item{comp1 }{Description of 'comp1'}
>>>>> \item{comp2 }{Description of 'comp2'}
>>...