rws_describe_meta.character | R Documentation |
Add Descriptions to SQL Meta Data Table
## S3 method for class 'character' rws_describe_meta(x, column, description, ..., conn)
x |
A character vector of table name(s). |
column |
A character vector of column name(s). |
description |
A character vector of the description(s) |
... |
Not used. |
conn |
A SQLiteConnection to a database. |
An invisible copy of the updated meta table.
Other rws_describe_meta:
rws_describe_meta()
conn <- rws_connect() rws_write(rws_data, exists = FALSE, conn = conn) rws_read_meta(conn) rws_describe_meta("rws_data", "Units", "The site length.", conn = conn) rws_describe_meta("rws_data", "POSIXct", "Time of the visit", conn = conn) rws_read_meta(conn) rws_disconnect(conn)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.