[R-gregmisc-users] SF.net SVN: r-gregmisc:[1401] trunk/gdata/man
Brought to you by:
warnes
From: <wa...@us...> - 2010-01-24 18:10:12
|
Revision: 1401 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1401&view=rev Author: warnes Date: 2010-01-24 18:10:03 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Fix R CMD CHECK errors Modified Paths: -------------- trunk/gdata/man/read.xls.Rd Removed Paths: ------------- trunk/gdata/man/sheetNames.Rd Modified: trunk/gdata/man/read.xls.Rd =================================================================== --- trunk/gdata/man/read.xls.Rd 2010-01-24 08:47:27 UTC (rev 1400) +++ trunk/gdata/man/read.xls.Rd 2010-01-24 18:10:03 UTC (rev 1401) @@ -113,7 +113,7 @@ data <- read.xls(exampleFile) # default is first worksheet data <- read.xls(exampleFile, sheet=2) # second worksheet by number - data <- read.xls(exampleFile, sheet="Sheet Second",v=T) # and by name + data <- read.xls(exampleFile, sheet="Sheet Second",v=TRUE) # and by name # load the third worksheet, skipping the first two non-data lines... data <- read.xls(exampleFile2007, sheet="Sheet with initial text", skip=2) Deleted: trunk/gdata/man/sheetNames.Rd =================================================================== --- trunk/gdata/man/sheetNames.Rd 2010-01-24 08:47:27 UTC (rev 1400) +++ trunk/gdata/man/sheetNames.Rd 2010-01-24 18:10:03 UTC (rev 1401) @@ -1,42 +0,0 @@ -\name{sheetNames} -\Rdversion{1.1} -\alias{sheetCount} -\alias{sheetNames} -\title{ -Count sheets in Excel xls spreadsheet. -} -\description{ -Count the sheets in an Excel xls spreadsheet. -} -\usage{ -sheetCount(xls, verbose = FALSE, perl = "perl") -sheetNames(xls, verbose = FALSE, perl = "perl") -} -%- maybe also 'usage' for other objects documented here. -\arguments{ - \item{xls}{ -File path to spreadsheet. Is downloaded if it begins with \code{"http://"}.} - \item{verbose}{ - If \code{TRUE} additional information displayed. -} - \item{perl}{ - Path and file of perl interpreter or just \code{"perl"} if perl on path. -} -} -\value{ -\code{sheetCount} returns the number of sheets in the spreadsheet -and \code{sheetNames} returns -a character vector containing the sheet names in the spreadsheet. -} - -\seealso{ - \code{\link{read.xls}}, \code{\link{xls2csv}}. -} -\examples{ - xlsfile <- system.file("xls", "iris.xls", package = "gdata") - xlsfile - - sheetCount(xlsfile) - -} -\keyword{ misc } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |