Make core table

make_core(connection = NULL, .debug = FALSE)

Arguments

connection

a database connection returned by [DBI::dbConnect()]

.debug

logical flag to use internal simulated data for testing

Value

a remote database table

Details

Prepares the appropriate table joins in the CC-HIC database to ready for querying

Examples

if (FALSE) { # Make a database connection object using DBI::dbConnect() # ctn <- DBI::dbConnect() core <- make_core(ctn) head(core) DBI::dbDisconnect(ctn) }