Downloads an csv file from S3 and reads it into the R session as a
tibble::tibble()
.
Writes a tibble
to a S3 object.
Defaults col_names
to FALSE
,
because that is batch_predict and
sagemaker_hyperparameter_tuner expect.
Interface to readr::read_delim()
and readr::format_delim()
read_s3(s3_path, delim = ",", col_names = FALSE, ...) write_s3(x, s3_path, delim = ",", col_names = FALSE, ...)
s3_path | A character vector that forms an S3 path to an object. Use s3 to construct the path. |
---|---|
delim | Single character used to separate fields within a record. |
col_names | Either If If Missing ( |
... | Additional named arguments sent to the underlying API. |
x | A data frame to write to disk |