withField {SparkR} | R Documentation |
Adds/replaces field in a struct Column
by name.
withField(x, fieldName, col)
## S4 method for signature 'Column,character,Column'
withField(x, fieldName, col)
x |
a Column |
fieldName |
a character |
col |
a Column expression |
withField since 3.1.0
## Not run:
##D df <- withColumn(
##D createDataFrame(iris),
##D "sepal",
##D struct(column("Sepal_Width"), column("Sepal_Length"))
##D )
##D
##D head(select(
##D df,
##D withField(df$sepal, "product", df$Sepal_Length * df$Sepal_Width)
##D ))
## End(Not run)