1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/loadedPackages.R
\name{loadedPackages}
\alias{loadedPackages}
\title{Provide Name, Version, and Path of Loaded Package Namespaces}
\usage{
loadedPackages(silent = FALSE)
}
\arguments{
\item{silent}{Logical indicating whether the results should be printed}
}
\value{
Invisibly returns a data frame containing one row per loaded package
namespace, with columns: \item{Package}{Package name} \item{Version}{Version
string} \item{Path}{Path to package files} \item{SearchPath}{Either the
index of the package namespace in the current search path, or '-' if the
package namespace is not in the search path. '1' corresponds to the top of
the search path (the first namespace searched for values). }
}
\description{
Provide name, version, and path of loaded package namespaces
}
\examples{
loadedPackages()
}
\seealso{
\code{\link[base]{loadedNamespaces}},
\code{\link[utils]{packageVersion}}, \code{\link[base]{search}},
\code{\link[base]{find.package}}
}
\author{
Gregory R. Warnes \email{greg@warnes.net}
}
\keyword{package}
|