optionsCoCo {CoCoRaw} | R Documentation |
Options settings for CoCo objects
Description
Allow the user to set and examine a variety of "options" for each CoCo
object which affect the way in which CoCo and CoCoCg computes and
displays its results.
Usage
optionsCoCo(..., section = "all", status = FALSE, force.files = FALSE,
data = NULL, object = .object.of.thing(data = data))
Arguments
... |
Any options can be defined, using 'name = value',
similar to options .
Further, 'options('name') == options()['name']', see the
example.
Those from the section "cg" are only avaliable in CoCoCg.
|
section |
The character string "formats" , "tests" ,
"ips" , "cg" , "em" ,
"exact" , "other" , or "files" . |
status |
Logical, if status is TRUE, then the options
values are also print on standard output. |
force.files |
Logical. If section is "all" (default),
then the options for files (names, etc.) are only
returned if force.files is set to TRUE.
( You do not want to share file names between
CoCo objects. )
|
data |
See exportCoCo . |
object |
See exportCoCo . |
Details
Value
A list with the following items:
width |
int 127 |
height |
int 65 |
... |
|
warnings |
logi TRUE |
Formats
- width
- int 127
- height
- int 65
- digits.table
- int 10
- decimals.table.probabilities
- int 6
- decimals.table.expected
- int 2
- decimals.table.residual
- int 4
- digits.test.statistics
- int 9
- decimals.test.statistics
- int 4
- digits.test.pvalues
- int 7
- decimals.test.pvalues
- int 5
- digits
- int 10
- decimals
- int 4
- pausing.of.output
- logi FALSE
- n.lines
- int 22
- short.test.output
- logi FALSE
Tests
- algorithm
- chr "c": "a", "b" or "c"
- partitioning
- logi TRUE
- adjusted.df
- logi TRUE
- power.lambda
- num 1
- ic
- logi FALSE
- bic
- logi FALSE
- ic.kappa
- num 3
- decomposable.mode
- logi FALSE
- search.statistic
- chr "deviance": "deviance",
"power", or "chisq"
- acceptance.limit
- num 0.05
- rejection.limit
- num 0.05
- components.limit
- num 2
- separators.limit
- num 2
- reuse.tests
- logi TRUE
Ips
- ips.criterion
- chr "cell": "cell" or "sum"
- ips.algorithm
- chr "normal": "normal", "arithmetic",
"geometric", or "harmonic"
- ips.number.of.iterations
- int 100
- ips.epsilon
- num 1e-07
Cips
- cips.criterion
- chr "cell": "cell" or "sum"
- cips.cycles
- int 100
- cips.epsilon
- num 1e-07
Cg
- mixed.criterion
- chr "rell": "cell", "sum",
"suff", or "rell"
- mixed.cycles
- int 2000
- mixed.epsilon
- num 1e-04
- mixed.init.epsilon
- num 0.001
- mixed.log.l.round.error
- num 1e-05
- mixed.random.noise
- num 1e-04
- mixed.min.lambda
- num 0.001
- cholesky.epsilon
- num 1e-04
Em
- em
- logi FALSE
- em.number.of.iterations
- int 100
- em.epsilon
- num 1e-07
- em.initial
- chr "uniform": "uniform", "first",
"last", "mean",
"random", or "input"
Exact
- exact.test
- chr "off": "off", "flop", "on",
"all", or "deviance"
- exact.epsilon
- num 1e-07
- exact.test.joined.test
- logi TRUE
- exact.test.components
- logi TRUE
- exact.test.unparted.test
- logi TRUE
- exact.test.only.for.log.l
- logi TRUE
- exact.number.of.tables
- int 1000
- exact.list
- int [1:7] 20 2 1000 8 100 20 20
- exact.asymptotic
- num 2
- fast
- logi TRUE
- exact.seed
- int 0
Other
- graph.mode
- logi FALSE
- report
- logi FALSE
- trace
- logi FALSE
- debug
- logi FALSE
- timer
- logi FALSE
- echo
- logi FALSE
- note
- logi FALSE
- sorted
- logi FALSE
- large
- logi FALSE
- huge
- logi TRUE
- graphical.search
- logi TRUE
- warnings
- logi TRUE
Files
- diary
- logi FALSE
- diary.name
- chr "/home/jhb/CoCo.diary.001.tmp"
- keep.diary
- logi FALSE
- dump
- logi FALSE
- dump.name
- chr ""
- keep.dump
- logi FALSE
- report
- logi FALSE
- report.name
- chr "/home/jhb/CoCo.report.003.tmp"
- keep.report
- logi FALSE
- log
- logi TRUE
- log.name
- chr "/home/jhb/CoCo.log.002.tmp"
- keep.log
- logi FALSE
- log.data
- logi TRUE
Author(s)
Jens Henrik Badsberg
References
Badsberg, J.H.: A guide to CoCo, JSS, 2001
( http://www.jstatsoft.org/v06/i04/ )
and Badsberg, J.H.: Xlisp+CoCo, Aalborg University, 1996.
See Also
options
and showOptions
.
Examples
library(CoCoCg);
data(Rats);
CoCoObject <- makeCoCoCg();
old.options <- optionsCoCo();
enterDataFrame(Rats, object = CoCoObject);
endCoCo(object = CoCoObject);
[Package
CoCoRaw version 0.1.6.8
Index]