summary.gsl_nls function

Model summary

Model summary

Returns the model summary for a fitted "gsl_nls" object.

## S3 method for class 'gsl_nls' summary(object, correlation = FALSE, symbolic.cor = FALSE, ...)

Arguments

  • object: An object inheriting from class "gsl_nls".
  • correlation: logical; if TRUE, the correlation matrix of the estimated parameters is returned and printed.
  • symbolic.cor: logical; if TRUE, print the correlations in a symbolic form (see symnum) rather than as numbers.
  • ...: At present no optional arguments are used.

Returns

List object of class "summary.nls" identical to summary.nls

Examples

## data set.seed(1) n <- 25 xy <- data.frame( x = (1:n) / n, y = 2.5 * exp(-1.5 * (1:n) / n) + rnorm(n, sd = 0.1) ) ## model obj <- gsl_nls(fn = y ~ A * exp(-lam * x), data = xy, start = c(A = 1, lam = 1)) summary(obj)

See Also

summary.nls

  • Maintainer: Joris Chau
  • License: LGPL-3
  • Last published: 2025-01-17