jsonFile {SparkR}R Documentation

Create a DataFrame from a JSON file.

Description

Loads a JSON file (one object per line), returning the result as a DataFrame It goes through the entire dataset once to determine the schema.

Usage

jsonFile(sqlContext, path)

Arguments

sqlContext

SQLContext to use

path

Path of file to read. A vector of multiple paths is allowed.

Value

DataFrame

Examples

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

[Package SparkR version 1.5.1 Index]