lotriEst {lotri} | R Documentation |
Extract or remove lotri estimate data frame from lotri object
Description
Extract or remove lotri estimate data frame from lotri object
Usage
lotriEst(x, drop = FALSE)
Arguments
x |
lotri object |
drop |
boolean indicating if the lotri estimate should be dropped |
Value
data frame with estimates or NULL if there is not a data.frame attached
Examples
fix1 <- lotri({
a <- c(0, 1); backTransform("exp"); label("a label")
b <- c(0, 1, 2)
c <- fix(1)
d <- fix(0, 1, 2)
e <- c(0, 1, 2, fixed)
f+g ~ c(1,
0.5, 1)
})
# Extract the attached lotri estimate data frame
lotriEst(fix1)
# Remove the attached lotri estimate data frame
lotriEst(fix1, drop=TRUE)
[Package lotri version 0.4.3 Index]