View source: R/read_Citavi_ctv6.R
read_Citavi_ctv6 | R Documentation |
Read table from Citavi database (via SQL)
read_Citavi_ctv6(path = NULL, CitDBTableName = "Reference")
path |
Path to the local Citavi project file (.ctv6). |
CitDBTableName |
Name of the table to be read from the connected Citavi database (via |
The underlying core functions are DBI::dbConnect()
RSQLite::SQLite()
, DBI::dbReadTable()
and DBI::dbListTables
.
A tibble
# example Citavi project example_path <- example_file("3dupsin5refs/3dupsin5refs.ctv6") # import reference (=default) table CitDat <- read_Citavi_ctv6(example_path) CitDat %>% dplyr::select(Title, Year, Abstract, DOI) # show table names read_Citavi_ctv6(example_path, CitDBTableName = NULL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.