Date: Sat, 11 Jul 2020 10:27:23 +0000 (UTC) From: TAKATSU Tomonari <tota@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541957 - in head/math: . R-cran-matrixStats Message-ID: <202007111027.06BARNG3045032@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tota Date: Sat Jul 11 10:27:23 2020 New Revision: 541957 URL: https://svnweb.freebsd.org/changeset/ports/541957 Log: - Add new port: math/R-cran-matrixStats High-performing functions operating on rows and columns of matrices, e.g. col / rowMedians(), col / rowRanks(), and col / rowSds(). Functions optimized per data type and for subsetted calculations such that both memory usage and processing time is minimized. There are also optimized vector-based methods, e.g. binMeans(), madDiff() and weightedMedian(). WWW: https://cran.r-project.org/web/packages/matrixStats/ Added: head/math/R-cran-matrixStats/ head/math/R-cran-matrixStats/Makefile (contents, props changed) head/math/R-cran-matrixStats/distinfo (contents, props changed) head/math/R-cran-matrixStats/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat Jul 11 09:35:18 2020 (r541956) +++ head/math/Makefile Sat Jul 11 10:27:23 2020 (r541957) @@ -76,6 +76,7 @@ SUBDIR += R-cran-lme4 SUBDIR += R-cran-lpSolve SUBDIR += R-cran-magic + SUBDIR += R-cran-matrixStats SUBDIR += R-cran-maxLik SUBDIR += R-cran-mcmc SUBDIR += R-cran-memisc Added: head/math/R-cran-matrixStats/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-matrixStats/Makefile Sat Jul 11 10:27:23 2020 (r541957) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= matrixStats +PORTVERSION= 0.56.0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Functions that Apply to Rows and Columns of Matrices + +LICENSE= ART20 + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> Added: head/math/R-cran-matrixStats/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-matrixStats/distinfo Sat Jul 11 10:27:23 2020 (r541957) @@ -0,0 +1,3 @@ +TIMESTAMP = 1594459303 +SHA256 (matrixStats_0.56.0.tar.gz) = 39e34a3dc480b9df05bb1a555eaef1dc1971a53f3ea6e01eb3a68bd1d3760f27 +SIZE (matrixStats_0.56.0.tar.gz) = 188501 Added: head/math/R-cran-matrixStats/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-matrixStats/pkg-descr Sat Jul 11 10:27:23 2020 (r541957) @@ -0,0 +1,8 @@ +High-performing functions operating on rows and columns of matrices, +e.g. col / rowMedians(), col / rowRanks(), and col / rowSds(). +Functions optimized per data type and for subsetted calculations +such that both memory usage and processing time is minimized. There +are also optimized vector-based methods, e.g. binMeans(), madDiff() +and weightedMedian(). + +WWW: https://cran.r-project.org/web/packages/matrixStats/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007111027.06BARNG3045032>