From owner-svn-ports-all@freebsd.org Sun Sep 10 07:56:16 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 496C9E02EEF; Sun, 10 Sep 2017 07:56:16 +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 mx1.freebsd.org (Postfix) with ESMTPS id 22B026A0B4; Sun, 10 Sep 2017 07:56:16 +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 v8A7uFLX085076; Sun, 10 Sep 2017 07:56:15 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8A7uFfk085071; Sun, 10 Sep 2017 07:56:15 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709100756.v8A7uFfk085071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 10 Sep 2017 07:56:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449522 - in head/math: . R-cran-CVST X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/math: . R-cran-CVST X-SVN-Commit-Revision: 449522 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.23 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: Sun, 10 Sep 2017 07:56:16 -0000 Author: tota Date: Sun Sep 10 07:56:14 2017 New Revision: 449522 URL: https://svnweb.freebsd.org/changeset/ports/449522 Log: - Add new port: math/R-cran-CVST This package implements the fast cross-validation via sequential testing (CVST) procedure. CVST is an improved cross-validation procedure which uses non-parametric testing coupled with sequential analysis to determine the best parameter set on linearly increasing subsets of the data. By eliminating underperforming candidates quickly and keeping promising candidates as long as possible, the method speeds up the computation while preserving the capability of a full cross-validation. Additionally to the CVST the package contains an implementation of the ordinary k-fold cross-validation with a flexible and powerful set of helper objects and methods to handle the overall model selection process. The implementations of the Cochran's Q test with permutations and the sequential testing framework of Wald are generic and can therefore also be used in other contexts. WWW: https://cran.r-project.org/web/packages/CVST/ Added: head/math/R-cran-CVST/ head/math/R-cran-CVST/Makefile (contents, props changed) head/math/R-cran-CVST/distinfo (contents, props changed) head/math/R-cran-CVST/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Sep 10 07:43:37 2017 (r449521) +++ head/math/Makefile Sun Sep 10 07:56:14 2017 (r449522) @@ -32,6 +32,7 @@ SUBDIR += R-cran-car SUBDIR += R-cran-coda SUBDIR += R-cran-combinat + SUBDIR += R-cran-CVST SUBDIR += R-cran-deldir SUBDIR += R-cran-dlmodeler SUBDIR += R-cran-dplyr Added: head/math/R-cran-CVST/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-CVST/Makefile Sun Sep 10 07:56:14 2017 (r449522) @@ -0,0 +1,20 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= CVST +DISTVERSION= 0.2-1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Fast Cross-Validation via Sequential Testing + +LICENSE= GPLv2+ + +CRAN_DEPENDS= R-cran-kernlab>0:science/R-cran-kernlab +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include Added: head/math/R-cran-CVST/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-CVST/distinfo Sun Sep 10 07:56:14 2017 (r449522) @@ -0,0 +1,3 @@ +TIMESTAMP = 1505027642 +SHA256 (CVST_0.2-1.tar.gz) = a27fd2bfa778fce9b9a68d2b9206c66af27b3c36a973dd45ce673886a267aa9f +SIZE (CVST_0.2-1.tar.gz) = 12452 Added: head/math/R-cran-CVST/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-CVST/pkg-descr Sun Sep 10 07:56:14 2017 (r449522) @@ -0,0 +1,16 @@ +This package implements the fast cross-validation via sequential +testing (CVST) procedure. CVST is an improved cross-validation +procedure which uses non-parametric testing coupled with sequential +analysis to determine the best parameter set on linearly increasing +subsets of the data. By eliminating underperforming candidates +quickly and keeping promising candidates as long as possible, the +method speeds up the computation while preserving the capability +of a full cross-validation. Additionally to the CVST the package +contains an implementation of the ordinary k-fold cross-validation +with a flexible and powerful set of helper objects and methods to +handle the overall model selection process. The implementations of +the Cochran's Q test with permutations and the sequential testing +framework of Wald are generic and can therefore also be used in +other contexts. + +WWW: https://cran.r-project.org/web/packages/CVST/