Nothing
#' DEstd_dataset
#'
#' A fisheries dataset for demonstrating Derived Effort
#' Standardization (DEstd) method.
#'
#' The dataset contains annual fishing observations collected
#' from multiple fishing gears along with catch, fishing effort,
#' and total annual catch information. It is intended for
#' illustrating the application of the \code{DEstd()} function
#' in the FESta package.
#'
#' @format A data frame with 32 observations and 5 variables:
#' \describe{
#' \item{Year}{Fishing year.}
#' \item{Gear}{Sampled fishing gear used during the fishing operation.}
#' \item{Catch}{Observed catch corresponding to the sampled effort.}
#' \item{Effort}{Fishing effort expended.}
#' \item{Total_Catch}{Estimated total annual catch
#' (including gears for which effort is not known).}
#' }
#'
#' @examples
#' \dontrun{
#'
#' library(FESta)
#' data("DEstd_dataset")
#' result<-DEstd(data=DEstd_dataset,year_col = "Year",gear_col = "Gear",
#' catch_col = "Catch",total_catch_col="Total_Catch", effort_col = "Effort")
#' print(result)
#' }
#'
#' @seealso \code{\link{DEstd}}
#'
"DEstd_dataset"
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.