Description Usage Arguments Details Value Author(s) See Also Examples
Read a contiguous set of rows into an R character matrix. Uses the
RInterface
for speed.
1 |
sheet |
a |
startRow |
a numeric value for the starting row. |
endRow |
a numeric value for the ending row. If |
startColumn |
a numeric value for the starting column. |
endColumn |
a numeric value for the ending column. Empty cells will be returned as "". |
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.
In general, you should prefer the function readColumns
over
this one.
A character matrix.
Adrian Dragulescu
read.xlsx2
for reading entire sheets. See also
addDataFrame
for writing a data.frame
to a sheet.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.