dim {SparkR}R Documentation

Returns the dimentions (number of rows and columns) of a DataFrame

Description

Returns the dimentions (number of rows and columns) of a DataFrame

Usage

## S4 method for signature 'DataFrame'
dim(x)

Arguments

x

a SparkSQL DataFrame

Examples

## Not run: 
##D sc <- sparkR.init()
##D sqlContext <- sparkRSQL.init(sc)
##D path <- "path/to/file.json"
##D df <- jsonFile(sqlContext, path)
##D dim(df)
## End(Not run)

[Package SparkR version 1.5.1 Index]