- Add a new port: devel/R-cran-reshape

Reshape (hopefully) makes it easy to do what you have been struggling
  to do with tapply, by, aggregate, xtabs, apply and summarise. It
  is also useful for getting your data into the correct structure for
  lattice or ggplot plots.

  WWW:    http://had.co.nz/reshape/
This commit is contained in:
TAKATSU Tomonari 2011-09-03 00:42:36 +00:00
parent b74be3041d
commit 369c3a741e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=281051
4 changed files with 33 additions and 0 deletions

View file

@ -12,6 +12,7 @@
SUBDIR += R-cran-iterators
SUBDIR += R-cran-itertools
SUBDIR += R-cran-plyr
SUBDIR += R-cran-reshape
SUBDIR += SpecTcl
SUBDIR += ZendOptimizer
SUBDIR += aap

View file

@ -0,0 +1,24 @@
# New ports collection makefile for: R-cran-reshape
# Date created: 2011-08-30
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= reshape
PORTVERSION= 0.8.4
CATEGORIES= devel
PKGNAMEPREFIX= R-cran-
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= An R package for flexibly restructuring and aggregating data
LICENSE= MIT
RUN_DEPENDS= R-cran-plyr>0:${PORTSDIR}/devel/R-cran-plyr
USE_R_MOD= yes
R_MOD_AUTOPLIST= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (reshape_0.8.4.tar.gz) = a112bdb3a8bfd27b1ed1fbf1119b0c9318205073d0fae4a25d5b97b973a0ae20
SIZE (reshape_0.8.4.tar.gz) = 38923

View file

@ -0,0 +1,6 @@
Reshape (hopefully) makes it easy to do what you have been struggling
to do with tapply, by, aggregate, xtabs, apply and summarise. It
is also useful for getting your data into the correct structure for
lattice or ggplot plots.
WWW: http://had.co.nz/reshape/