diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2017-05-06 15:10:56 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2017-05-06 15:10:56 +0000 |
commit | 31ebc9912925ec4469398ade6c9c55368f22172e (patch) | |
tree | 3845a975c44cb5f82fb7a73107e9058709468aad | |
parent | b0435fae10c14092657a3244a9b5d404a6fffc26 (diff) | |
download | ports-31ebc9912925ec4469398ade6c9c55368f22172e.tar.gz ports-31ebc9912925ec4469398ade6c9c55368f22172e.zip |
qcc: Quality Control Charts
Shewhart quality control charts for continuous, attribute and count data.
Cusum and EWMA charts. Operating characteristic curves. Process capability
analysis. Pareto chart and cause-and-effect chart. Multivariate control
charts.
WWW: http://cran.r-project.org/web/packages/qcc/
PR: 216165
Submitted by: Pedro Giffuni
Notes
Notes:
svn path=/head/; revision=440269
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/R-cran-qcc/Makefile | 17 | ||||
-rw-r--r-- | graphics/R-cran-qcc/distinfo | 3 | ||||
-rw-r--r-- | graphics/R-cran-qcc/pkg-descr | 8 |
4 files changed, 29 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index f48ee3325c78..22844bfd6b93 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -27,6 +27,7 @@ SUBDIR += R-cran-munsell SUBDIR += R-cran-pixmap SUBDIR += R-cran-png + SUBDIR += R-cran-qcc SUBDIR += R-cran-rgdal SUBDIR += R-cran-rtiff SUBDIR += R-cran-scales diff --git a/graphics/R-cran-qcc/Makefile b/graphics/R-cran-qcc/Makefile new file mode 100644 index 000000000000..8d7757c4dae5 --- /dev/null +++ b/graphics/R-cran-qcc/Makefile @@ -0,0 +1,17 @@ +# Created by: Pedro Giffuni +# $FreeBSD$ + +PORTNAME= qcc +DISTVERSION= 2.6 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= pfg@FreeBSD.org +COMMENT= Quality Control Charts + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/graphics/R-cran-qcc/distinfo b/graphics/R-cran-qcc/distinfo new file mode 100644 index 000000000000..9f5d0a1b0dba --- /dev/null +++ b/graphics/R-cran-qcc/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1475119631 +SHA256 (qcc_2.6.tar.gz) = b988f07c5f1856883d15b422fe64d2ffce9bf7449d77ab70e0e2cf8df57d4d2f +SIZE (qcc_2.6.tar.gz) = 159062 diff --git a/graphics/R-cran-qcc/pkg-descr b/graphics/R-cran-qcc/pkg-descr new file mode 100644 index 000000000000..441d1ee3c605 --- /dev/null +++ b/graphics/R-cran-qcc/pkg-descr @@ -0,0 +1,8 @@ +qcc: Quality Control Charts + +Shewhart quality control charts for continuous, attribute and count data. +Cusum and EWMA charts. Operating characteristic curves. Process capability +analysis. Pareto chart and cause-and-effect chart. Multivariate control +charts. + +WWW: http://cran.r-project.org/web/packages/qcc/ |