EpiGraphDB currently offers two API URLs
To switch to the development API, do
# Get default option
<- getOptions("epigraphdb.api.url")
default_api_url # Change to the development API
options(epigraphdb.api.url = "http://dev-api.epigraphdb.org")
# Verify current URL
getOption("epigraphdb.api.url")
# Switch back
options(epigraphdb.api.url = default_api_url)
NOTE: you can make this change persistent by placing the changes in .Rprofile
.
If you would like to turn off the start up message that displays the current version of EpiGraphDB service, use the following code to load the package:
suppressPackageStartupMessages({library("epigraphdb")})