coltypes {SparkR}R Documentation

coltypes

Description

Get column types of a SparkDataFrame

Set the column types of a SparkDataFrame.

Usage

coltypes(x)

coltypes(x) <- value

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

## S4 replacement method for signature 'SparkDataFrame,character'
coltypes(x) <- value

Arguments

x

A SparkDataFrame

value

A character vector with the target column types for the given SparkDataFrame. Column types can be one of integer, numeric/double, character, logical, or NA to keep that column as-is.

x

A SparkDataFrame

Value

value A character vector with the column types of the given SparkDataFrame

See Also

Other SparkDataFrame functions: SparkDataFrame-class, [[, agg, arrange, as.data.frame, attach, cache, collect, colnames, columns, count, dapply, describe, dim, distinct, dropDuplicates, dropna, drop, dtypes, except, explain, filter, first, group_by, head, histogram, insertInto, intersect, isLocal, join, limit, merge, mutate, ncol, persist, printSchema, registerTempTable, rename, repartition, sample, saveAsTable, selectExpr, select, showDF, show, str, take, unionAll, unpersist, withColumn, write.df, write.jdbc, write.json, write.parquet, write.text

Examples

## Not run: 
##D irisDF <- createDataFrame(sqlContext, iris)
##D coltypes(irisDF)
## End(Not run)
## Not run: 
##D sc <- sparkR.init()
##D sqlContext <- sparkRSQL.init(sc)
##D path <- "path/to/file.json"
##D df <- read.json(sqlContext, path)
##D coltypes(df) <- c("character", "integer")
##D coltypes(df) <- c(NA, "numeric")
## End(Not run)

[Package SparkR version 2.0.0 Index]