Super minor - but for any newbies like my trying to work my way through a new package: The following example in the readme won't run as-is because connect() is a DatabaseConnector function (as far as I can tell) but the example doesn't load it since it is no longer a dependency (#49).
library(Eunomia)
connectionDetails <- getEunomiaConnectionDetails()
connection <- connect(connectionDetails)
> Error in connect(connectionDetails) : could not find function "connect"
Super minor - but for any newbies like my trying to work my way through a new package: The following example in the readme won't run as-is because
connect()is a DatabaseConnector function (as far as I can tell) but the example doesn't load it since it is no longer a dependency (#49).