Skip to contents

SparkDataFrames can be created using functions like createDataFrame, read.json, table etc.

Slots

env

An R environment that stores bookkeeping states of the SparkDataFrame

sdf

A Java object reference to the backing Scala DataFrame

Note

SparkDataFrame since 2.0.0

Examples

if (FALSE) {
sparkR.session()
df <- createDataFrame(faithful)
}