math/R-cran-cvar: New port

Compute Expected Shortfall and Value at Risk for Continuous Distributions
This commit is contained in:
Guangyuan Yang 2022-12-07 00:08:01 -05:00
parent ce5e1709c8
commit e8f3664765
4 changed files with 31 additions and 0 deletions

View File

@ -49,6 +49,7 @@
SUBDIR += R-cran-combinat
SUBDIR += R-cran-conf.design
SUBDIR += R-cran-conquer
SUBDIR += R-cran-cvar
SUBDIR += R-cran-date
SUBDIR += R-cran-ddalpha
SUBDIR += R-cran-deldir

20
math/R-cran-cvar/Makefile Normal file
View File

@ -0,0 +1,20 @@
PORTNAME= cvar
DISTVERSION= 0.5
CATEGORIES= math
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= ygy@FreeBSD.org
COMMENT= Compute Expected Shortfall and Value at Risk for Continuous Distributions
WWW= https://geobosh.github.io/cvar/
LICENSE= GPLv2+
RUN_DEPENDS= R-cran-Rdpack>=0.8:devel/R-cran-Rdpack \
R-cran-gbutils>0:math/R-cran-gbutils
TEST_DEPENDS= R-cran-testthat>0:devel/R-cran-testthat \
R-cran-PerformanceAnalytics>0:finance/R-cran-PerformanceAnalytics \
R-cran-fGarch>0:finance/R-cran-fGarch
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1670370144
SHA256 (cvar_0.5.tar.gz) = 7e721a68a321acbc74149d6ae9c6e3b0c1f896df9fa7786b8b40264e1db2db18
SIZE (cvar_0.5.tar.gz) = 255174

View File

@ -0,0 +1,7 @@
Compute expected shortfall (ES) and Value at Risk (VaR) from a quantile
function, distribution function, random number generator or probability density
function. ES is also known as Conditional Value at Risk (CVaR). Virtually any
continuous distribution can be specified. The functions are vectorized over the
arguments. The computations are done directly from the definitions, see e.g.
Acerbi and Tasche (2002) <doi:10.1111/1468-0300.00091>. Some support for GARCH
models is provided, as well.