R/ORQGLMstd_dataset.R

#' ORQGLMstd_dataset
#'
#' A fisheries dataset for demonstrating Generalized Linear
#' Model (GLM) standardization method.
#'
#' The dataset contains catch and effort observations collected
#' over multiple years using different fishing gears. It is
#' intended for illustrating the application of the
#' \code{GLMstd()} function in the FESta package.
#'
#' @format A data frame with 1000 observations and 4 variables:
#' \describe{
#'   \item{Year}{Fishing year.}
#'   \item{Gear}{Fishing gear used during the fishing operation.}
#'   \item{Effort}{Fishing effort expended during the operation.}
#'   \item{Catch}{Observed catch obtained during the fishing operation.}
#' }
#'
#' @examples
#' \dontrun{
#' library(FESta)
#' data("ORQGLMstd_dataset")
#' result<-ORQGLMstd(
#'   data  = ORQGLMstd_dataset,
#'   year_col="Year",
#'   catch_col      = "Catch",
#'   effort_col     = "Effort",
#'   fixed_effects  = c("Year", "Gear"),
#'   maxit          = 100
#' )
#'print(result)
#' }
#' @seealso \code{\link{ORQGLMstd}}
#'
"ORQGLMstd_dataset"

Try the FESta package in your browser

Any scripts or data that you put into this service are public.

FESta documentation built on Aug. 20, 2026, 5:10 p.m.