plyr is a set of tools that solves a common set of problems: you need to break a big problem down into manageable pieces, operate on each pieces and then put all the pieces back together. For example, you might want to fit a model to each spatial location or time point in your study, summarise data by panels or collapse high-dimensional arrays to simpler summary statistics. The development of plyr has been generously supported by BD (Becton Dickinson). WWW: http://cran.r-project.org/web/packages/plyr/
23 lines
525 B
Makefile
23 lines
525 B
Makefile
# New ports collection makefile for: R-cran-plyr
|
|
# Date created: 2011-08-16
|
|
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= plyr
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= R-cran-
|
|
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= Tools for splitting, applying and combining data
|
|
|
|
RUN_DEPENDS= R-cran-itertools>0:${PORTSDIR}/devel/R-cran-itertools \
|
|
R-cran-iterators>0:${PORTSDIR}/devel/R-cran-iterators
|
|
|
|
USE_R_MOD= yes
|
|
R_MOD_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.mk>
|