Description Usage Arguments Value Note Examples
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.
1 | dropTempView(viewName)
|
viewName |
the name of the temporary view to be dropped. |
TRUE if the view is dropped successfully, FALSE otherwise.
since 2.0.0
1 2 3 4 5 6 7 | ## Not run:
sparkR.session()
df <- read.df(path, "parquet")
createOrReplaceTempView(df, "table")
dropTempView("table")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.