writeWorksheetToFile(XLConnect)
writeWorksheetToFile()所属R语言包:XLConnect
Writing data to worksheets in an Excel file (wrapper function)
写数据到一个Excel文件中的工作表(包装函数)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Writes data to worksheets in an Excel file.
将数据写入到一个Excel文件中的工作表。
用法----------Usage----------
writeWorksheetToFile(file, data, sheet, ..., styleAction = XLC$STYLE_ACTION.XLCONNECT)
参数----------Arguments----------
参数:file
The path name of the file to write to.
要写入的文件的路径名。
参数:data
Data to write
要写入的数据
参数:sheet
The name or index of the sheet to write to
写的名称或索引的表
参数:...
Additional arguments passed to writeWorksheet
额外的参数传递给writeWorksheet
参数:styleAction
Style action to be used when writing the data - not vectorized! The default is XLC$STYLE_ACTION.XLCONNECT. See setStyleAction for more information.
风格的动作写入数据时所使用的 - 而不是量化的!默认的XLC$STYLE_ACTION.XLCONNECT。见setStyleAction更多信息。
(作者)----------Author(s)----------
Thomas Themel<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
writeWorksheet, writeNamedRegionToFile, readWorksheetFromFile,<br> readNamedRegionFromFile
writeWorksheet,writeNamedRegionToFile,readWorksheetFromFile,参考readNamedRegionFromFile
实例----------Examples----------
# multiregion xlsx file from demoFiles subfolder of package XLConnect[多区域xlsx文件demoFiles子文件夹中的包XLConnect]
demoExcelFile <- system.file("demoFiles/multiregion.xlsx",
package = "XLConnect")
# create a copy of the template[创建一个复制的模板]
template <- "template-ws.xlsx"
file.copy(demoExcelFile, template)
# Write single data.frame to a specified location in an existing file[在现有的文件中写入单个数据框指定位置]
writeWorksheetToFile(template, data=iris, sheet="FirstSheet",
startRow=9, startCol = 9)
# create a copy of the template[创建一个复制的模板]
template <- "template-multi-ws.xlsx"
# Write a few copies of the data.frame all over a new file[写几个拷贝的数据框,一个新的文件]
writeWorksheetToFile(template, data = list(i1 = iris, i2 = iris, i3 = iris),
sheet = c("FirstSheet", "SecondSheet", "FirstSheet"),
startRow = c(1,101,201), startCol = c(1,11,21))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|