https://github.com/cran/ConvergenceConcepts
Raw File
Tip revision: 1e91c69f3951e6272df0ba1be3293e8f67e9e475 authored by Pierre Lafaye De Micheaux on 18 August 2022, 11:10:06 UTC
version 1.2.3
Tip revision: 1e91c69
NAMESPACE
# Export all names
exportPattern(".")

# Import all packages listed as Imports or Depends
import(
    tcltk,
  tkrplot,
  lattice
)

importFrom("grDevices", "dev.new", "dev.off", "dev.prev","graphics.off")
importFrom("graphics", "abline", "axis", "box", "curve", "hist", "legend", "mtext", "par", "plot", "plot.new", "plot.window",
     "points", "rect", "text", "title")
importFrom("stats", "dnorm", "dunif", "ecdf", "plot.ecdf", "pnorm","punif", "rbinom", "rchisq", "rnorm", "runif")

                                        # The bringToTop() function in only available in the (Microsoft) Windows
# version of package "grDevices", 
if (.Platform$OS.type == "windows") importFrom("grDevices", "bringToTop")

back to top