Rev 9687 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{example}\title{Run an Examples Section from the Online Help}\usage{example(topic, package = .packages(), lib.loc = .lib.loc,echo = TRUE, verbose = getOption("verbose"),prompt.echo = paste(abbreviate(topic, 6),"> ", sep=""))}\alias{example}\arguments{\item{topic}{name or character: The online \code{\link{help}} topicthe examples of which should be run.}\item{package}{a character vector with package names. By default,all packages in the search path are used.}\item{lib.loc}{a character vector of directory names of \R libraries.Defaults to all libraries currently known. If the default is used,the loaded packages are searched before the libraries.}\item{echo}{logical; if \code{TRUE}, show the \R input when sourcing.}\item{verbose}{logical; if \code{TRUE}, show even more when runningexample code.}\item{prompt.echo}{character; gives the prompt to be used if\code{echo = TRUE}.}}\description{Run all the \R code from the \code{Examples} part of \R's online helptopic \code{topic}.}\value{(the value of the last evaluated expression).}\details{If \code{lib.loc} is not specified, the packages are searched foramongst those already loaded, then in the specified libraries.If \code{lib.loc} is specified, they are searched for onlyin the specified libraries, even if they are already loaded fromanother library.An attempt is made to load the package before running the examples,but this will not replace a package loaded from another location.}\note{The examples can be many small files. On some file systems it isdesirable to save space, and the files in the \file{R-ex} directoryof an installed package can be zipped up as a zip archive \file{Rex.zip}.}\author{Martin Maechler and others}\seealso{\code{\link{demo}}}.\examples{example(dbinom)## force use of the standard package eda:example("smooth", package="eda", lib.loc=.Library)}\keyword{documentation}\keyword{utilities}