Unregister one or more frames by name
Description
Usage
<SQLContext>$unregister(names)
Arguments
names
|
Names of the tables to unregister. |
Value
An object of class “polars_sql_context”
Examples
library("polars")
df <- pl$DataFrame(ints = 9:5)
lf1 <- pl$LazyFrame(text = letters[1:3])
lf2 <- pl$LazyFrame(misc = "testing1234")
# Register with a SQLContext object:
ctx <- pl$SQLContext(test1 = df, test2 = lf1, test3 = lf2)
ctx$tables()
#> [1] "test1" "test2" "test3"
#> [1] "test2"
#> character(0)