readRows(xlsx)
readRows()所属R语言包:xlsx
Read a contiguous set of rows into an R matrix
阅读到R矩阵中的一组连续的行
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Read a contiguous set of rows into an R character matrix. Uses the RInterface for speed.
阅读一组连续的行到一个R字符点阵。使用RInterface的速度。
用法----------Usage----------
readRows(sheet, startRow, endRow, startColumn,
endColumn=NULL)
参数----------Arguments----------
参数:sheet
a Worksheet object.
一个Worksheet对象。
参数:startRow
a numeric value for the starting row.
一个数值的起始行。
参数:endRow
a numeric value for the ending row. If NULL it reads all the rows in the sheet.
一个数值的结束行。如果NULL读取工作表中的所有行。
参数:startColumn
a numeric value for the starting column.
一个数字值的起始列。
参数:endColumn
a numeric value for the ending column. Empty cells will be returned as "".
结束列的数字值。空单元格将返回“。
Details
详细信息----------Details----------
Use the readRows function when you want to read a row or a block block of data from an Excel worksheet. Internally, the loop over rows is done in R, and the loop over columns is done in Java, so this function achieves good performance when number of rows << number of columns.
使用readRows当你想从Excel工作表中的数据读取的行或一块块的功能。内部,循环行是在R列的循环是在Java,所以这个功能行“的列数数时,取得了良好的性能。
In general, you should prefer the function readColumns over this one.
在一般情况下,你应该更喜欢的功能readColumns超过这个的。
值----------Value----------
A character matrix.
字符点阵。
(作者)----------Author(s)----------
Adrian Dragulescu
参见----------See Also----------
read.xlsx2 for reading entire sheets. See also addDataFrame for writing a data.frame to a
read.xlsx2读取整个表。 addDataFrame写data.frame到
实例----------Examples----------
## Not run: [#不运行:]
file <- system.file("tests", "test_import.xlsx", package = "xlsx")
wb <- loadWorkbook(file)
sheets <- getSheets(wb)
sheet <- sheets[["all"]]
res <- readRows(sheet, startRow=3, endRow=7, startColumn=3, endColumn=10)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|