| type_classifications | R Documentation |
type_classifications takes a database connection and a table name
and returns the SGL type classifications (numerical, categorical,
or temporal) of the table's columns.
type_classifications(con, table_name)
con |
A database connection (as returned by |
table_name |
The name of a table |
A dataframe listing the SGL type classification of each column.
library(duckdb)
con <- dbConnect(duckdb())
dbWriteTable(con, "iris", iris)
type_classifications(con, "iris")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.