createSheet-methods(XLConnect)
createSheet-methods()所属R语言包:XLConnect
Creating worksheets in a workbook
建立在工作簿中的工作表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Creates worksheets with specified names in a workbook.
在workbook指定的名称创建的工作表。
用法----------Usage----------
## S4 method for signature 'workbook'
createSheet(object, name)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:name
The name of the sheet to create
的片材的名称,以建立
Details
详细信息----------Details----------
Creates a worksheet with the specified name if it does not already exist. Note that the naming of worksheets needs to be in line with Excel's convention, otherwise an exception will be thrown. For example, worksheet names cannot be longer than 31 characters. Also note that the name argument is vectorized, so multiple worksheets can be created in one method call.
指定的name,如果它不存在,创建一个工作表。请注意,命名的工作表需要与Excel的惯例,否则将引发异常。例如,工作表的名称不能超过31个字符。另外请注意,name参数量化的,所以多个工作表,可以在一个方法调用中创建的。
(作者)----------Author(s)----------
Martin Studer<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
workbook, removeSheet, renameSheet, existsSheet, getSheets, cloneSheet
workbook,removeSheet,renameSheet,existsSheet,getSheets,cloneSheet
实例----------Examples----------
# Load workbook (create if not existing)[负载工作簿(如果不存在创建)]
wb <- loadWorkbook("createSheet.xlsx", create = TRUE)
# Create a worksheet called 'CO2'[创建一个工作表被称为“CO2”]
createSheet(wb, name = "CO2")
# Save workbook (this actually writes the file to disk)[保存工作簿(这实际上是将文件写入到磁盘)]
saveWorkbook(wb)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|