說明:
計算數字和字符串列的統計信息。如果沒有給出列,則此函數計算所有數字或字符串列的統計信息。
用法:
describe(x, col, ...)
## S4 method for signature 'SparkDataFrame,character'
describe(x, col, ...)
## S4 method for signature 'SparkDataFrame,ANY'
describe(x)
參數:
x
要計算的 SparkDataFrame。col
一串名字。...
附加表達式。
返回:
一個 SparkDataFrame。
注意:
從 1.4.0 開始說明(SparkDataFrame,字符)
從 1.4.0 開始說明(SparkDataFrame)
例子:
sparkR.session()
path <- "path/to/file.json"
df <- read.json(path)
describe(df)
describe(df, "col1")
describe(df, "col1", "col2")
相關用法
- R SparkR dropFields用法及代碼示例
- R SparkR dropDuplicates用法及代碼示例
- R SparkR dapplyCollect用法及代碼示例
- R SparkR drop用法及代碼示例
- R SparkR dropTempView用法及代碼示例
- R SparkR dapply用法及代碼示例
- R SparkR dropTempTable用法及代碼示例
- R SparkR distinct用法及代碼示例
- R SparkR dim用法及代碼示例
- R SparkR dtypes用法及代碼示例
- R matrix轉list用法及代碼示例
- R SparkR freqItems用法及代碼示例
- R SparkR intersectAll用法及代碼示例
- R SparkR spark.decisionTree用法及代碼示例
- R SparkR sparkR.callJMethod用法及代碼示例
- R SparkR sample用法及代碼示例
- R SparkR approxQuantile用法及代碼示例
- R SparkR glm用法及代碼示例
- R SparkR randomSplit用法及代碼示例
- R SparkR withColumn用法及代碼示例
注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 describe。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。