print.optim_fit {OptimModel} | R Documentation |
Prints optim_fit objects
Description
Provides a nice printed summary of optim_fit
objects.
Usage
## S3 method for class 'optim_fit'
print(x, digits=4,...)
Arguments
x |
An object resulting from optim_fit(). |
digits |
Number of digits to print for output. |
... |
other arguments not used by this function. |
Value
No Return Value.
Author(s)
Steven Novick
See Also
Examples
set.seed(123L)
x = rep( c(0, 2^(-4:4)), each=4 )
theta = c(0, 100, log(.5), 2)
y1 = hill_model(theta, x) + rnorm( length(x), sd=2 )
fit1=optim_fit(theta, hill_model, x=x, y=y1)
print(fit1)
fit1
[Package OptimModel version 2.0-1 Index]