From owner-svn-ports-all@freebsd.org Sat Jul 11 10:27:24 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A3E9335E161; Sat, 11 Jul 2020 10:27:24 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B3mLh3shsz3TwN; Sat, 11 Jul 2020 10:27:24 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6911210FEE; Sat, 11 Jul 2020 10:27:24 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 06BARO57045039; Sat, 11 Jul 2020 10:27:24 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 06BARNG3045032; Sat, 11 Jul 2020 10:27:23 GMT (envelope-from tota@FreeBSD.org) Message-Id: <202007111027.06BARNG3045032@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 11 Jul 2020 10:27:23 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-matrixStats X-SVN-Commit-Revision: 541957 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Jul 2020 10:27:24 -0000 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 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/