Description Usage Arguments Details Value Author(s) See Also Examples
Read a contiguous set of columns from sheet into an R data.frame. Uses the
RInterface
for speed.
1 2 3 4 5 6 7 8 9 10 11 | readColumns(
sheet,
startColumn,
endColumn,
startRow,
endRow = NULL,
as.data.frame = TRUE,
header = TRUE,
colClasses = NA,
...
)
|
sheet |
a |
startColumn |
a numeric value for the starting column. |
endColumn |
a numeric value for the ending column. |
startRow |
a numeric value for the starting row. |
endRow |
a numeric value for the ending row. If |
as.data.frame |
a logical value indicating if the result should be
coerced into a |
header |
a logical value indicating whether the first row corresponding
to the first element of the |
colClasses |
a character vector that represents the class of each
column. Recycled as necessary, or if |
... |
other arguments to |
Use the readColumns
function when you want to read a rectangular
block of data from an Excel worksheet. If you request columns which are
blank, these will be read in as empty character "" columns. Internally, the
loop over columns is done in R, the loop over rows is done in Java, so this
function achieves good performance when number of rows >> number of columns.
Excel internally stores dates and datetimes as numeric values, and does not
keep track of time zones and DST. When a numeric column is formatted as a
datetime, it will be converted into POSIXct
class with a GMT
timezone. If you need a Date
column, you need to specify explicitly
using colClasses
argument.
For a numeric column Excels's errors and blank cells will be returned as NaN
values. Excel's #N/A
will be returned as NA. Formulas will be
evaluated. For a chracter column, blank cells will be returned as "".
A data.frame or a list, depending on the as.data.frame
argument.
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 15 16 17 18 | ## Not run:
file <- system.file("tests", "test_import.xlsx", package = "xlsx")
wb <- loadWorkbook(file)
sheets <- getSheets(wb)
sheet <- sheets[["all"]]
res <- readColumns(sheet, startColumn=3, endColumn=10, startRow=3,
endRow=7)
sheet <- sheets[["NAs"]]
res <- readColumns(sheet, 1, 6, 1, colClasses=c("Date", "character",
"integer", rep("numeric", 2), "POSIXct"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.