od_print {OptimalDesign} | R Documentation |
Compact information about a design
Description
Prints various characteristics of an experimental design
Usage
od_print(Fx, w, X=NULL, h=NULL, echo=TRUE)
Arguments
Fx |
the |
w |
the vector of non-negative real numbers of length |
X |
an |
h |
a non-zero vector of length |
echo |
Print the call of the function? |
Value
Output is a list with components
call |
the call of the function |
design |
a matrix with the rows of |
M |
the information matrix of |
eigenvalues |
the eigenvalues of |
D.value |
the value of the D-optimality criterion for |
A.value |
the value of the A-optimality criterion for |
I.value |
the value of the I-optimality criterion for |
C.value |
the value of the C-optimality criterion for |
c.value |
the value of the c-optimality criterion for |
Author(s)
Radoslav Harman, Lenka Filova
See Also
Examples
Fx <- Fx_cube(~x1 + I(x1^2), n.levels = 11)
w <- 1:11/sum(1:11)
od_print(Fx, w, Fx[, 2])