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


R SparkR columns用法及代码示例


说明:

返回列名的向量。

用法:

colnames(x, do.NULL = TRUE, prefix = "col")

colnames(x) <- value

columns(x)

## S4 method for signature 'SparkDataFrame'
columns(x)

## S4 method for signature 'SparkDataFrame'
names(x)

## S4 replacement method for signature 'SparkDataFrame'
names(x) <- value

## S4 method for signature 'SparkDataFrame'
colnames(x)

## S4 replacement method for signature 'SparkDataFrame'
colnames(x) <- value

参数:

  • x 一个 SparkDataFrame。
  • do.NULL 目前没有使用。
  • prefix 目前没有使用。
  • value 一个字符向量。长度必须与要重命名的列数相同。

注意:

自 1.4.0 以来的列

自 1.5.0 起的名称

名称<- 从 1.5.0 开始

从 1.6.0 开始的列名

colnames<- 从 1.6.0 开始

例子:

sparkR.session()
path <- "path/to/file.json"
df <- read.json(path)
columns(df)
colnames(df)

相关用法


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