https://github.com/cran/reglogit
Raw File
Tip revision: 2d19b31353b36bda9defbb7cfaf0d6f54440abe7 authored by Robert B. Gramacy on 25 April 2023, 06:40:02 UTC
version 1.2-7
Tip revision: 2d19b31
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