當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R SparkR collect用法及代碼示例


說明:

收集 SparkDataFrame 的所有元素並將它們強製轉換為 R data.frame。

用法:

collect(x, ...)

## S4 method for signature 'SparkDataFrame'
collect(x, stringsAsFactors = FALSE)

參數:

  • x 一個 SparkDataFrame。
  • ... 要傳遞給其他方法或從其他方法傳遞的進一步參數。
  • stringsAsFactors (可選)指示字符串列是否應轉換為因子的邏輯。默認為假。

注意:

從 1.4.0 開始收集

例子:

sparkR.session()
path <- "path/to/file.json"
df <- read.json(path)
collected <- collect(df)
class(collected)
firstName <- names(collected)[1]

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 Collects all the elements of a SparkDataFrame and coerces them into an R data.frame.。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。