File: reg-examples2.R

package info (click to toggle)
r-base 4.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112,924 kB
  • sloc: ansic: 291,338; fortran: 111,889; javascript: 14,798; yacc: 6,154; sh: 5,689; makefile: 5,239; tcl: 4,562; perl: 963; objc: 791; f90: 758; asm: 258; java: 31; sed: 1
file content (38 lines) | stat: -rw-r--r-- 1,286 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
## For examples skipped in testing because they are 'random'

## some should still be skipped when  --with-recommended-packages=no :
## (This is not really right as could be installed elsewhere.)
base.and.rec <- .packages(all.available = TRUE, lib = .Library)

set.seed(1)
if(.Platform$OS.type == "windows") options(pager = "console")

pdf("reg-examples-2.pdf", encoding = "ISOLatin1.enc")


## stats
example(SSasympOrig, run.donttest = TRUE)
example(SSlogis, run.donttest = TRUE)
example(constrOptim, run.donttest = TRUE)
example(cancor, run.donttest = TRUE)
example(aov, run.donttest = TRUE)
# signs for promax rotation are arbitrary
example(factanal, run.donttest = TRUE)
example(family, run.donttest = TRUE)
example(fft, run.donttest = TRUE)
example(glm, run.donttest = ("MASS" %in% base.and.rec))
example(glm.control, run.donttest = TRUE)
# from extractAIC
extractAIC(glm.D93)
example(influence.measures, run.donttest = TRUE)
example(lm, run.donttest = TRUE)
example(ls.diag, run.donttest = TRUE)
example(model.tables, run.donttest = TRUE)
example(nlminb, run.donttest = TRUE)
example(optim, run.donttest = TRUE)
example(prcomp, run.donttest = TRUE)
example(step, run.donttest = TRUE)
example(summary.manova, run.donttest = TRUE)
example(uniroot, run.donttest = TRUE)

proc.time()