Description Usage Arguments Details
Write a spark_tbl
to a text file.
1 | spark_write_text(.data, path, mode = "error", partition_by = NULL, ...)
|
.data |
a |
path |
string, the path where the file is to be saved. |
mode |
string, usually |
partition_by |
string, column names to partition by on disk |
... |
any other named options. See details below. |
For text, two additional options can be specified using ...
:
#'
(default null
), compression codec to use when saving to
file. This can be one of the known case-insensitive shorten names (none,
bzip2, gzip, lz4, snappy and deflate).
(default \n
), defines the line separator that should be used for writing.
https://spark.apache.org/docs/latest/api/java/org/apache/spark/sql/DataFrameWriter.html#text-java.lang.String-
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.