From 5ca7e5b7ec85c7fad5559bfaa61fe24ecebce10c Mon Sep 17 00:00:00 2001 From: TAKATSU Tomonari Date: Sat, 11 Jul 2020 11:40:15 +0000 Subject: [PATCH] - Add new port: math/R-cran-conquer Fast and accurate convolution-type smoothed quantile regression. Implemented using Barzilai-Borwein gradient descent with a Huber regression warm start. Construct confidence intervals for regression coefficients using multiplier bootstrap. WWW: https://cran.r-project.org/web/packages/conquer/ --- math/Makefile | 1 + math/R-cran-conquer/Makefile | 21 +++++++++++++++++++++ math/R-cran-conquer/distinfo | 3 +++ math/R-cran-conquer/pkg-descr | 6 ++++++ 4 files changed, 31 insertions(+) create mode 100644 math/R-cran-conquer/Makefile create mode 100644 math/R-cran-conquer/distinfo create mode 100644 math/R-cran-conquer/pkg-descr diff --git a/math/Makefile b/math/Makefile index 486a5dd15835..d87746ec3f8e 100644 --- a/math/Makefile +++ b/math/Makefile @@ -10,6 +10,7 @@ SUBDIR += R-cran-ADGofTest SUBDIR += R-cran-Amelia SUBDIR += R-cran-BsMD + SUBDIR += R-cran-conquer SUBDIR += R-cran-CVST SUBDIR += R-cran-ChangeAnomalyDetection SUBDIR += R-cran-DEoptimR diff --git a/math/R-cran-conquer/Makefile b/math/R-cran-conquer/Makefile new file mode 100644 index 000000000000..ada85a46759f --- /dev/null +++ b/math/R-cran-conquer/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= conquer +PORTVERSION= 1.0.1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Convolution-Type Smoothed Quantile Regression + +LICENSE= GPLv3 + +CRAN_DEPENDS= R-cran-Rcpp>=1.0.3:devel/R-cran-Rcpp \ + R-cran-matrixStats>0:math/R-cran-matrixStats \ + R-cran-RcppArmadillo>0:math/R-cran-RcppArmadillo +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= compiler:c++11-lang cran:auto-plist,compiles + +.include diff --git a/math/R-cran-conquer/distinfo b/math/R-cran-conquer/distinfo new file mode 100644 index 000000000000..1df97164e160 --- /dev/null +++ b/math/R-cran-conquer/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1594458481 +SHA256 (conquer_1.0.1.tar.gz) = 6b93f824697b35ad76a4330c79fb4fe05c97dce130e7c8da2aaa5efdf869f1b0 +SIZE (conquer_1.0.1.tar.gz) = 12550 diff --git a/math/R-cran-conquer/pkg-descr b/math/R-cran-conquer/pkg-descr new file mode 100644 index 000000000000..31c8e55bf5a5 --- /dev/null +++ b/math/R-cran-conquer/pkg-descr @@ -0,0 +1,6 @@ +Fast and accurate convolution-type smoothed quantile regression. +Implemented using Barzilai-Borwein gradient descent with a Huber +regression warm start. Construct confidence intervals for regression +coefficients using multiplier bootstrap. + +WWW: https://cran.r-project.org/web/packages/conquer/