From owner-svn-ports-head@FreeBSD.ORG Fri Sep 27 16:00:35 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 53499236; Fri, 27 Sep 2013 16:00:35 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 265712AED; Fri, 27 Sep 2013 16:00:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8RG0ZDe092628; Fri, 27 Sep 2013 16:00:35 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8RG0Y6x092623; Fri, 27 Sep 2013 16:00:34 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201309271600.r8RG0Y6x092623@svn.freebsd.org> From: Steven Kreuzer Date: Fri, 27 Sep 2013 16:00:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328495 - in head/math: . R-cran-sspir X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Sep 2013 16:00:35 -0000 Author: skreuzer Date: Fri Sep 27 16:00:34 2013 New Revision: 328495 URL: http://svnweb.freebsd.org/changeset/ports/328495 Log: A glm-like formula language to define dynamic generalized linear models (state space models). Includes functions for Kalman filtering and smoothing. Estimation of variance matrices can be performed using the EM algorithm in case of Gaussian models. WWW: http://cran.r-project.org/web/packages/sspir/ Added: head/math/R-cran-sspir/ head/math/R-cran-sspir/Makefile (contents, props changed) head/math/R-cran-sspir/distinfo (contents, props changed) head/math/R-cran-sspir/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Sep 27 15:53:09 2013 (r328494) +++ head/math/Makefile Fri Sep 27 16:00:34 2013 (r328495) @@ -39,6 +39,7 @@ SUBDIR += R-cran-sm SUBDIR += R-cran-sp SUBDIR += R-cran-spdep + SUBDIR += R-cran-sspir SUBDIR += R-cran-stabledist SUBDIR += R-cran-xts SUBDIR += R-cran-zoo Added: head/math/R-cran-sspir/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sspir/Makefile Fri Sep 27 16:00:34 2013 (r328495) @@ -0,0 +1,18 @@ +# Created by: Steven Kreuzer +# $FreeBSD$ + +PORTNAME= sspir +PORTVERSION= 0.2.10 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= A glm-like formula to define dynamic generalized linear models + +RUN_DEPENDS= R-cran-mvtnorm>0.9.96_11:${PORTSDIR}/math/R-cran-mvtnorm \ + R-cran-KFAS>0.9.11_3:${PORTSDIR}/math/R-cran-KFAS + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include Added: head/math/R-cran-sspir/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sspir/distinfo Fri Sep 27 16:00:34 2013 (r328495) @@ -0,0 +1,2 @@ +SHA256 (sspir_0.2.10.tar.gz) = 2978733b84d1672b509b81d726777ce6fa1261325144691070d0acb96ac723c4 +SIZE (sspir_0.2.10.tar.gz) = 37869 Added: head/math/R-cran-sspir/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-sspir/pkg-descr Fri Sep 27 16:00:34 2013 (r328495) @@ -0,0 +1,9 @@ +A glm-like formula language to define dynamic generalized +linear models (state space models). + +Includes functions for Kalman filtering and smoothing. + +Estimation of variance matrices can be performed using +the EM algorithm in case of Gaussian models. + +WWW: http://cran.r-project.org/web/packages/sspir/