Description Usage Arguments Value Examples
This function imports database tables from a named ODBC datasource from MIDN forest backend databases. Each table is assigned to the global environment with names that functions in this package depend on. You must use the 32-bit version of R to work.
1 2 3 4 5 6 7 |
type |
Select whether to use the default DSN to import data or a different database
|
path |
Quoted path of database backend file, including the name of the backend. |
import_tables |
Specify whether to import all tables or individual tables
|
table_name |
Specify a quoted list of one or more table names |
Assigns database tables to global environment
1 2 3 4 5 6 7 8 | # Import database in specific folder:
importData(type='file', path='./Data/MIDN_Forest_Backend.mdb')
# Import ODBC named database
importData(type='DSN', odbc="MIDNFVM")
# Import individual tables
importData(import_tables='single',table_name=c('tlu_Plants','tbl_Quadrat_Species_Data'))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.