idx2cref(XLConnect)
idx2cref()所属R语言包:XLConnect
Converting indices to Excel cell references
转换到Excel的单元格引用的指数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Converts row & column indices to Excel cell references
转换到Excel的单元格引用的行和列的索引
用法----------Usage----------
idx2cref(x, absRow = TRUE, absCol = TRUE)
参数----------Arguments----------
参数:x
Numeric (integer) matrix or vector of indices. If a matrix is provided it should have two columns with the first column representing the row indices and the second column representing the column indices (i.e. each row represents a index-based cell reference). If a vector is provided it will be converted to a matrix by filling the vector into a 2-column matrix by row.
指数的数值(整数)矩阵或矢量。如果提供一个矩阵,它应该有两列的第一列表示的行指数和第二列代表列索引(即每一行代表一个基于索引的单元格引用)。如果提供一个向量,它将被转换为一个矩阵由填充到按行2列的矩阵矢量。
参数:absRow
Boolean determining if the row index should be considered absolute. If TRUE (default), this will result in a '$'-prefixed row identifier.
布尔值确定是否应被视为绝对的行索引。如果TRUE(默认),这将导致一个$前缀的行标识符。
参数:absCol
Boolean determining if the column index should be considered absolute. If TRUE (default), this will result in a '$'-prefixed column identifier.
布尔确定的话,应该算是绝对的列索引。如果TRUE(默认),这将导致一个$前缀的列标识符。
值----------Value----------
Returns a character vector of corresponding Excel cell references.
返回一个字符向量,对应的Excel单元格引用。
(作者)----------Author(s)----------
Martin Studer<br>
Mirai Solutions GmbH <a href="http://www.mirai-solutions.com">http://www.mirai-solutions.com</a>
参见----------See Also----------
cref2idx, idx2col, col2idx, idx2aref, aref2idx, aref
cref2idx,idx2col,col2idx,idx2aref,aref2idx,aref
实例----------Examples----------
idx2cref(c(5, 8, 14, 38))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|