existsName-methods(XLConnect)
existsName-methods()所属R语言包:XLConnect
Checking existence of names in a workbook
在工作簿中的名称检查存在
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Checks the existence of a name in a workbook.
检查名称的存在在一个workbook。
用法----------Usage----------
## S4 method for signature 'workbook'
existsName(object, name)
参数----------Arguments----------
参数:object
The workbook to use
workbook使用
参数:name
The name to check for
检查的名称
Details
详细信息----------Details----------
Returns TRUE if the specified name exists and FALSE otherwise. Note that the name argument is vectorized and therefore multiple names can be checked for existence in one method call.
返回TRUE如果指定的name存在和FALSE否则。需要注意的是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, createName, removeName, getDefinedNames, readNamedRegion,<br> writeNamedRegion
workbook,createName,removeName,getDefinedNames,readNamedRegion,参考writeNamedRegion
实例----------Examples----------
# mtcars xlsx file from demoFiles subfolder of package XLConnect[mtcars xlsx文件demoFiles子文件夹中的包XLConnect]
mtcarsFile <- system.file("demoFiles/mtcars.xlsx", package = "XLConnect")
# Load workbook[负载工作簿]
wb <- loadWorkbook(mtcarsFile)
# Check if the name 'mtcars' exists[如果名称为“mtcars存在]
# (should return TRUE since the name is defined as 'mtcars!$A$1K$33')[(应返回TRUE,因为这个名字被定义为“mtcars!$ A $ 1:$ K33美元)]
existsName(wb, name = "mtcars")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|