registerTempTable {SparkR} | R Documentation |
Registers a SparkDataFrame as a Temporary Table in the SQLContext
registerTempTable(x, tableName) ## S4 method for signature 'SparkDataFrame,character' registerTempTable(x, tableName)
x |
A SparkDataFrame |
tableName |
A character vector containing the name of the table |
Other SparkDataFrame functions: SparkDataFrame-class
,
[[
, agg
,
arrange
, as.data.frame
,
attach
, cache
,
collect
, colnames
,
coltypes
, 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
,
rename
, repartition
,
sample
, saveAsTable
,
selectExpr
, select
,
showDF
, show
,
str
, take
,
unionAll
, unpersist
,
withColumn
, write.df
,
write.jdbc
, write.json
,
write.parquet
, write.text
## Not run:
##D sc <- sparkR.init()
##D sqlContext <- sparkRSQL.init(sc)
##D path <- "path/to/file.json"
##D df <- read.json(sqlContext, path)
##D registerTempTable(df, "json_df")
##D new_df <- sql(sqlContext, "SELECT * FROM json_df")
## End(Not run)