dropTempView {SparkR} | R Documentation |
Drops the temporary view with the given view name in the catalog. If the view has been cached before, then it will also be uncached.
dropTempView(viewName)
viewName |
the name of the view to be dropped. |
since 2.0.0
## Not run: sparkR.session() df <- read.df(path, "parquet") createOrReplaceTempView(df, "table") dropTempView("table") ## End(Not run)