svn commit: r464456 - in head/devel: . R-cran-broom

TAKATSU Tomonari tota at FreeBSD.org
Wed Mar 14 04:58:10 UTC 2018


Author: tota
Date: Wed Mar 14 04:58:09 2018
New Revision: 464456
URL: https://svnweb.freebsd.org/changeset/ports/464456

Log:
  - Add new port: devel/R-cran-broom
  
    Convert statistical analysis objects from R into tidy data frames,
    so that they can more easily be combined, reshaped and otherwise
    processed with tools like 'dplyr', 'tidyr' and 'ggplot2'. The package
    provides three S3 generics: tidy, which summarizes a model's
    statistical findings such as coefficients of a regression; augment,
    which adds columns to the original data such as predictions, residuals
    and cluster assignments; and glance, which provides a one-row summary
    of model-level statistics.
  
    WWW: https://cran.r-project.org/web/packages/broom/

Added:
  head/devel/R-cran-broom/
  head/devel/R-cran-broom/Makefile   (contents, props changed)
  head/devel/R-cran-broom/distinfo   (contents, props changed)
  head/devel/R-cran-broom/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Mar 14 04:15:16 2018	(r464455)
+++ head/devel/Makefile	Wed Mar 14 04:58:09 2018	(r464456)
@@ -20,6 +20,7 @@
     SUBDIR += R-cran-bit
     SUBDIR += R-cran-bit64
     SUBDIR += R-cran-bitops
+    SUBDIR += R-cran-broom
     SUBDIR += R-cran-caTools
     SUBDIR += R-cran-caret
     SUBDIR += R-cran-chron

Added: head/devel/R-cran-broom/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-broom/Makefile	Wed Mar 14 04:58:09 2018	(r464456)
@@ -0,0 +1,25 @@
+# Created by: TAKATSU Tomonari <tota at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	broom
+DISTVERSION=	0.4.3
+CATEGORIES=	devel
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	tota at FreeBSD.org
+COMMENT=	Convert Statistical Analysis Objects into Tidy Data Frames
+
+LICENSE=	MIT
+
+CRAN_DEPENDS=	R-cran-plyr>0:devel/R-cran-plyr \
+		R-cran-dplyr>0:math/R-cran-dplyr \
+		R-cran-tidyr>0:devel/R-cran-tidyr \
+		R-cran-psych>0:math/R-cran-psych \
+		R-cran-stringr>0:textproc/R-cran-stringr \
+		R-cran-reshape2>0:devel/R-cran-reshape2
+BUILD_DEPENDS=	${CRAN_DEPENDS}
+RUN_DEPENDS=	${CRAN_DEPENDS}
+
+USES=		cran:auto-plist
+
+.include <bsd.port.mk>

Added: head/devel/R-cran-broom/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-broom/distinfo	Wed Mar 14 04:58:09 2018	(r464456)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1520499918
+SHA256 (broom_0.4.3.tar.gz) = 2e261b40006432e787dc208c2a8943c6ae714968879dd3361ba1ee6ea5603785
+SIZE (broom_0.4.3.tar.gz) = 1397648

Added: head/devel/R-cran-broom/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/R-cran-broom/pkg-descr	Wed Mar 14 04:58:09 2018	(r464456)
@@ -0,0 +1,10 @@
+Convert statistical analysis objects from R into tidy data frames,
+so that they can more easily be combined, reshaped and otherwise
+processed with tools like 'dplyr', 'tidyr' and 'ggplot2'. The package
+provides three S3 generics: tidy, which summarizes a model's
+statistical findings such as coefficients of a regression; augment,
+which adds columns to the original data such as predictions, residuals
+and cluster assignments; and glance, which provides a one-row summary
+of model-level statistics.
+
+WWW: https://cran.r-project.org/web/packages/broom/


More information about the svn-ports-all mailing list