当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R SparkR write.text用法及代码示例


说明:

将 SparkDataFrame 的内容保存在指定路径的文本文件中。 SparkDataFrame 必须只有一列名称为"value" 的字符串类型。每一行都成为输出文件中的新行。文本文件将被编码为 UTF-8。

用法:

write.text(x, path, ...)

## S4 method for signature 'SparkDataFrame,character'
write.text(x, path, mode = "error", ...)

参数:

注意:

write.text 自 2.0.0 起

例子:

sparkR.session()
path <- "path/to/file.txt"
df <- read.text(path)
write.text(df, "/tmp/sparkr-tmp/")

相关用法


注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 Save the content of SparkDataFrame in a text file at the specified path.。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。