readSQLite | R Documentation |
saveSQLite
.Load data frame from SQLite.
This function reads a data frame from an SQLite database file created with saveSQLite
.
readSQLite(
task,
type,
subdir = NULL,
dirCreate = FALSE,
tableName = "data",
n = NULL,
offset = 0
)
task |
Object of class |
type |
Filename type. If the type is an array, the cocatenation of the elements is used with separator"-". Filenames have the form [task name]_[type].[ext] |
subdir |
(optional) Subdirectory. |
dirCreate |
Logical, if TRUE (by default) the directory is created. |
tableName |
name of the table in the SQLite database. |
n |
number of rows to read (if NULL, all rows are read). |
offset |
number of rows to skip before reading (default is 0). |
Data frame with requested table.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.