Nothing
#' Estimation of Return Curves
#'
#' @description \loadmathjax{}
#' Implements the estimation of the \mjeqn{p}{p}-probability return curve \insertCite{MurphyBarltropetal2023}{ReturnCurves},
#' as well as a pointwise and smooth estimation of the angular dependence function \insertCite{WadsworthTawn2013}{ReturnCurves}.
#'
#' @section Available functions:
#' \code{\link{adf_est}}: Estimation of the Angular Dependence Function (ADF)
#'
#' \code{\link{adf_gof}}: Goodness of fit of the Angular Dependence Function estimates
#'
#' \code{\link{airdata}}: Air pollution data
#'
#' \code{\link{marggpd}}: Assessing the Marginal Tail Fits
#'
#' \code{\link{margtransf}}: Marginal Transformation
#'
#' \code{\link{rc_est}}: Return Curve estimation
#'
#' \code{\link{rc_gof}}: Goodness of fit of the Return Curve estimates
#'
#' \code{\link{rc_unc}}: Uncertainty of the Return Curve estimates
#'
#' \code{\link{runShiny}}: Complementary Shiny app for the ReturnCurves package
#'
#' @references \insertAllCited{}
#'
#' @examples
#' library(ReturnCurves)
#'
#' data(airdata)
#'
#' n <- dim(airdata)[1]
#'
#' # Marginal Transformation
#' margdata <- margtransf(airdata)
#'
#' head(margdata@@dataexp)
#'
#' # Return Curves estimation
#'
#' prob <- 1/n
#'
#' retcurve <- rc_est(margdata = margdata, p = prob, method = "hill")
#'
#' head(retcurve@@rc)
#'
#' # ADF estimation
#' lambda <- adf_est(margdata = margdata, method = "hill")
#'
#' head(lambda@@adf)
#'
#' @export
"_PACKAGE"
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.