setSheetPos-methods(XLConnect)
setSheetPos-methods()所属R语言包:XLConnect
Setting worksheet position
设置工作表中的位置
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Sets the position of a worksheets in a workbook.
设置一个workbook一个工作表中的位置。
用法----------Usage----------
## S4 method for signature 'workbook,character,numeric'
setSheetPos(object,sheet,pos)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:sheet
The name of the worksheet (character) whose position to set. This argument is vectorized such that the positions of multiple worksheets can be set with one method call.
在工作表的名称(character),其位置设置。这种说法是量化的多个工作表中的位置,可以设置一个方法调用。
参数:pos
The position index to set for the corresponding sheet. If missing, sheets will be positioned in the order they are specified in the argument sheet.
位置索引设置相应的sheet。如果没有,将被定位在表的顺序中指定的参数sheet。
Details
详细信息----------Details----------
It is important to note that the worksheet positions will be applied one after the other in the order they have been specified.
重要的是要注意到该工作表中的位置将被施加一个接一个地在他们已被指定的顺序。
(作者)----------Author(s)----------
Martin Studer<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
workbook, getSheetPos, getSheets
workbook,getSheetPos,getSheets
实例----------Examples----------
# mtcars xlsx file from demoFiles subfolder of package XLConnect[mtcars xlsx文件demoFiles子文件夹中的包XLConnect]
demoExcelFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook[负载工作簿]
wb <- loadWorkbook(demoExcelFile)
# Move the 'mtcars3' worksheet to the front[移动“mtcars3工作表的前]
setSheetPos(wb, sheet = "mtcars3", pos = 1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|