aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/r/dataframe.R
diff options
context:
space:
mode:
Diffstat (limited to 'examples/src/main/r/dataframe.R')
-rw-r--r--examples/src/main/r/dataframe.R2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/main/r/dataframe.R b/examples/src/main/r/dataframe.R
index 53b817144f..62f60e57ee 100644
--- a/examples/src/main/r/dataframe.R
+++ b/examples/src/main/r/dataframe.R
@@ -35,7 +35,7 @@ printSchema(df)
# Create a DataFrame from a JSON file
path <- file.path(Sys.getenv("SPARK_HOME"), "examples/src/main/resources/people.json")
-peopleDF <- jsonFile(sqlContext, path)
+peopleDF <- read.json(sqlContext, path)
printSchema(peopleDF)
# Register this DataFrame as a table.