Row(xlsx)
Row()所属R语言包:xlsx
Functions to manipulate rows of a worksheet.
函数来处理一个工作表中的行。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to manipulate rows of a worksheet.
函数来处理一个工作表中的行。
用法----------Usage----------
createRow(sheet, rowIndex=1:5)
getRows(sheet, rowIndex=NULL)
removeRow(sheet, rows=NULL)
参数----------Arguments----------
参数:sheet
a worksheet object as returned by createSheet or by subsetting getSheets.
工作表对象返回createSheet或子集getSheets。
参数:rowIndex
a numeric vector specifying the index of rows to create. For getRows, a NULL value will return all non empty rows.
一个数字矢量指定索引创建的行。对于getRows,NULL值将返回所有非空行。
参数:rows
a list of Row objects.
列表Row对象。
Details
详细信息----------Details----------
removeRow is just a convenience wrapper to remove the rows from the sheet (before saving). Internally it calls lapply.
removeRow仅仅是一个方便的包装删除工作表中的行(在保存之前)。在内部,它所谓的lapply。
值----------Value----------
For getRows a list of java object references each pointing to a row. The list is named with the row number.
对于getRows的java对象的引用,每个指着一排列表。该列表被命名为与行数。
(作者)----------Author(s)----------
Adrian Dragulescu
参见----------See Also----------
To extract the cells from a given row, see Cell.
要提取的单元从一个给定的行,请参阅Cell。
实例----------Examples----------
file <- system.file("tests", "test_import.xlsx", package = "xlsx")
wb <- loadWorkbook(file)
sheets <- getSheets(wb)
sheet <- sheets[[2]]
rows <- getRows(sheet) # get all the rows[让所有的行]
# see all the available java methods that you can call[查看所有可用的Java方法,您可以调用]
.jmethods(rows[[1]])
# for example[例如]
rows[[1]]$getRowNum() # zero based index in Java[在Java中的从零开始的索引]
removeRow(sheet, rows) # remove them all[它们全部删除]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|