Nothing
##' Find the libbi executable
##'
##' This tries to find the libbi executable; if this does not find libbi but it
##' is installed, the location can be either passed to this function, or set
##' globally via `options(path_to_libbi="/insert/full/path/here").
##' @param path_to_libbi path to libbi, as either the path where the libbi
##' executable resides, or the full path to the executable
##' @return full path to the libbi executable as character string; if it is not
##' found, an error is thrown
##' @author Sebastian Funk
##' @keywords internal
##' @export
locate_libbi <- function(path_to_libbi) {
if (missing(path_to_libbi) || length(path_to_libbi) == 0) {
if (is.null(getOption("path_to_libbi"))) {
## Maybe the system knows where libbi is
path <- unname(Sys.which("libbi"))
} else {
path <- getOption("path_to_libbi")
}
if (length(path) == 0) {
stop(
"Could not locate LibBi, please either provide the path to the libbi ",
"binary via the 'path_to_libbi' option, or set the PATH to contain ",
"the directory that contains the binary in ~/.Renviron or set it in ",
"your R session via options(path_to_libbi = \"insert_path_here\"). ",
"For instructions on how to install libbi, look at the rbi github ",
"page on https://github.com/sbfnk/rbi."
)
}
} else {
path <- path_to_libbi
}
if (!grepl("libbi$", path)) {
path <- paste0(path, "/libbi")
}
if (!file.exists(path)) {
stop("Could not find libbi executable at '", path, "'")
}
return(path)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.