pyspark.sql.DataFrameWriter.text¶
-
DataFrameWriter.
text
(path, compression=None, lineSep=None)[source]¶ Saves the content of the DataFrame in a text file at the specified path. The text files will be encoded as UTF-8.
- Parameters
path – the path in any Hadoop supported file system
compression – 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).
lineSep – defines the line separator that should be used for writing. If None is set, it uses the default value,
\n
.
The DataFrame must have only one column that is of string type. Each row becomes a new line in the output file.
New in version 1.6.