R : Copyright 2005, The R Foundation for Statistical Computing Version 2.1.1 (2005-06-20), ISBN 3-900051-07-0 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for a HTML browser interface to help. Type 'q()' to quit R. > ### *
> ### > attach(NULL, name = "CheckExEnv") > assign(".CheckExEnv", as.environment(2), pos = length(search())) # base > ## add some hooks to label plot pages for base and grid graphics > setHook("plot.new", ".newplot.hook") > setHook("persp", ".newplot.hook") > setHook("grid.newpage", ".gridplot.hook") > > assign("cleanEx", + function(env = .GlobalEnv) { + rm(list = ls(envir = env, all.names = TRUE), envir = env) + RNGkind("default", "default") + set.seed(1) + options(warn = 1) + delayedAssign("T", stop("T used instead of TRUE"), + assign.env = .CheckExEnv) + delayedAssign("F", stop("F used instead of FALSE"), + assign.env = .CheckExEnv) + sch <- search() + newitems <- sch[! sch %in% .oldSearch] + for(item in rev(newitems)) + eval(substitute(detach(item), list(item=item))) + missitems <- .oldSearch[! .oldSearch %in% sch] + if(length(missitems)) + warning("items ", paste(missitems, collapse=", "), + " have been removed from the search path") + }, + env = .CheckExEnv) > assign("..nameEx", "__{must remake R-ex/*.R}__", env = .CheckExEnv) # for now > assign("ptime", proc.time(), env = .CheckExEnv) > grDevices::postscript("gRbase-Examples.ps") > assign("par.postscript", graphics::par(no.readonly = TRUE), env = .CheckExEnv) > options(contrasts = c(unordered = "contr.treatment", ordered = "contr.poly")) > options(warn = 1) > library('gRbase') Loading required package: MASS Loading required package: dynamicGraph Loading required package: tcltk Loading Tcl/Tk interface ... done Loading required package: stats4 > > assign(".oldSearch", search(), env = .CheckExEnv) > assign(".oldNS", loadedNamespaces(), env = .CheckExEnv) > cleanEx(); ..nameEx <- "cadcomplete" > > ### * cadcomplete > > flush(stderr()); flush(stdout()) > > ### Name: cadcomplete > ### Title: Coronary artery disease data > ### Aliases: cadcomplete cadincomplete > ### Keywords: datasets > > ### ** Examples > > data(cadcomplete) > ## maybe str(cadcomplete) ; plot(cadcomplete) ... > > > > cleanEx(); ..nameEx <- "dietox" > > ### * dietox > > flush(stderr()); flush(stdout()) > > ### Name: dietox > ### Title: Growth curves of pigs in a 3x3 factorial experiment > ### Aliases: dietox > ### Keywords: datasets > > ### ** Examples > > data(dietox) > ## maybe str(dietox) ; plot(dietox) ... > > > > cleanEx(); ..nameEx <- "hllm-class" > > ### * hllm-class > > flush(stderr()); flush(stdout()) > > ### Name: hllm-class > ### Title: Class "hllm" ~~~ > ### Aliases: hllm-class addEdge,hllm-method addVertex,hllm-method > ### coerce,hllm,hllmloglin-method coerce,hllm,hllmloglm-method > ### dropEdge,hllm-method dropVertex,hllm-method dynamic.Graph,hllm-method > ### fit,hllm-method Formula,hllm-method Formula<-,hllm-method > ### getFit,hllm-method gmData,hllm-method initialize,hllm-method > ### modifyModel,hllm-method summary,hllm-method testEdge,hllm-method > ### Keywords: classes > > ### ** Examples > > ##---- Should be DIRECTLY executable !! ---- > > > > cleanEx(); ..nameEx <- "hllmTestClass-class" > > ### * hllmTestClass-class > > flush(stderr()); flush(stdout()) > > ### Name: hllmTestClass-class > ### Title: Class "hllmTestClass" ~~~ > ### Aliases: hllmTestClass-class label,hllmTestClass-method > ### width,hllmTestClass-method > ### Keywords: classes > > ### ** Examples > > ##---- Should be DIRECTLY executable !! ---- > > > > cleanEx(); ..nameEx <- "hllmengine-class" > > ### * hllmengine-class > > flush(stderr()); flush(stdout()) > > ### Name: hllmengine-class > ### Title: Class "hllmengine" ~~~ > ### Aliases: hllmengine-class > ### Keywords: classes > > ### ** Examples > > ##---- Should be DIRECTLY executable !! ---- > > > > cleanEx(); ..nameEx <- "hllmloglin-class" > > ### * hllmloglin-class > > flush(stderr()); flush(stdout()) > > ### Name: hllmloglin-class > ### Title: Class "hllmloglin" ~~~ > ### Aliases: hllmloglin-class fit,hllmloglin-method > ### Keywords: classes > > ### ** Examples > > ##---- Should be DIRECTLY executable !! ---- > > > > cleanEx(); ..nameEx <- "hllmloglm-class" > > ### * hllmloglm-class > > flush(stderr()); flush(stdout()) > > ### Name: hllmloglm-class > ### Title: Class "hllmloglm" ~~~ > ### Aliases: hllmloglm-class fit,hllmloglm-method > ### Keywords: classes > > ### ** Examples > > ##---- Should be DIRECTLY executable !! ---- > > > > cleanEx(); ..nameEx <- "mathmark" > > ### * mathmark > > flush(stderr()); flush(stdout()) > > ### Name: mathmark > ### Title: Mathematics marks for students > ### Aliases: mathmark > ### Keywords: datasets > > ### ** Examples > > data(mathmark) > ## maybe str(mathmark) ; plot(mathmark) ... > > > > cleanEx(); ..nameEx <- "validVarTypes" > > ### * validVarTypes > > flush(stderr()); flush(stdout()) > > ### Name: validVarTypes > ### Title: Admissible variable types in gmData objects > ### Aliases: validVarTypes > ### Keywords: models > > ### ** Examples > > oldtypes <- validVarTypes() > validVartypes <- function() c(oldtypes, "MyVarType") > validVartypes() [1] "Discrete" "Ordinal" "Continuous" "MyVarType" > > > > ### *