Description Usage Arguments Note Examples
developer report on package check process in shiny
1 | browse_checks(con)
|
con |
SQLiteConnection where tables of check results from rcmdcheck, etc., are stored |
dbDisconnect is run if the stop button is pressed to end shiny session. If stopped via ctrl-C or error, the connection may remain and require closure. N.B. The source codes for this app are in inst/app1, to simplify contribution to shinyapps.io. Interactive execution proceeds by copying the server and ui files to temporary folder where 'shiny::runApp()' is executed.
1 2 3 4 5 6 | if (interactive()) {
con = RSQLite::dbConnect(RSQLite::SQLite(),
system.file("sqlite/demo2.sqlite", package="BiocBBSpack"), flags=RSQLite::SQLITE_RO)
print(RSQLite::dbListTables(con))
browse_checks(con)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.