https://github.com/cran/reglogit
Raw File
Tip revision: c8c7ac10c0d841c064c0a7d4fc17e8a8295f315c authored by Robert B. Gramacy on 14 September 2018, 16:40:03 UTC
version 1.2-6
Tip revision: c8c7ac1
NAMESPACE
# Load the shared object
useDynLib(reglogit)

# Export all names
exportPattern(".")

# Import all packages listed as Imports or Depends
import(
  methods,
  mvtnorm,
  boot,
  Matrix
)

# S3
S3method(predict, reglogit)
S3method(predict, regmlogit)

## for CHECK
importFrom("stats", "dlogis", "plogis", "rgamma", "rnorm", "runif")
back to top