getMap | R Documentation |
This function creates an object of S3 class "motusMap", which behaves
like a named list, allowing access via the $
and [[
]]
operators. Elements assigned to the list are immediately
stored in table name
in the database pointed to by
src
. An element can be removed from the list by assigning
NULL to it.
getMap(src, name = "meta")
src |
dplyr src_sqlite to a database or an SQLiteConnection |
name |
name of table in database; default: "meta" |
an object of class "motusMap".
x = getMap(safeSrcSQLite("SG-1234BBBK5678.motus"), "meta")
x$recvSerno
x$MACAddr <- "01235a3be098"
x$recvSerno <- NULL
x[["MACAddr"]]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.