writeFindFn2xls {sos} | R Documentation |
Write a findFn object to an Excel file
Description
Write a findFn
object to an Excel
file with sheets for PackageSum2
,
the findFn
table, and the call
attribute of the findFn
object.
Usage
writeFindFn2xls(x,
file.=paste(deparse(substitute(x)), 'xls',
sep='.'), csv, ...)
findFn2xls(x,
file.=paste(deparse(substitute(x)), 'xls',
sep='.'), csv, ...)
Arguments
x |
An object of class |
file. |
Name of Excel file to create. If a file of this name already exists, it will be overwritten. |
csv |
logical: if |
... |
optional arguments to |
Details
findFn2xls
is an alias for
writeFindFn2xls
; both
functions do the same thing.
Value
The name of the file created is returned invisibly.
Author(s)
Spencer Graves with help from Dirk Eddelbuettel, Gabor Grothendiek, and Marc Schwartz.
See Also
findFn
,
odbcConnect
,
sqlSave
,
odbcClose
WriteXLS
Examples
splineSearch <- try(findFn("spline", maxPages = 1))
if(!inherits(splineSearch, 'try-error')){
writeFindFn2xls(splineSearch)
findFn2xls(splineSearch, csv=TRUE)
}
[Package sos version 2.1-8 Index]