Downloads an Excel .xlsx file stored in a MinIO bucket and reads it
into memory as a base data.frame. Internally, the function retrieves
the object contents as raw bytes using minio_get_object, writes
them to a temporary file (as required by readxl), and then delegates
parsing to read_xlsx.
Arguments
- bucket
Character. Name of the MinIO bucket.
- object
Character. Object key (path) of the Excel file within the bucket.
- ...
Additional arguments passed to
readxl::read_xlsx().
Details
Additional arguments are forwarded to readxl::read_xlsx(), allowing
control over sheets, ranges, column types, column names, and other
Excel-specific parsing options.
Regardless of the return type produced by readxl::read_xlsx() (for
example, a tibble), the result is always coerced to a base
data.frame for consistency with other minio_get_* readers.
