84c36f68b6
This module provides basic functions used in descriptive statistics. It has an object oriented design and supports two different types of data storage and calculation objects: sparse and full. With the sparse method, none of the data is stored and only a few statistical measures are available. Using the full method, the entire data set is retained and additional functions are available.
19 lines
351 B
Makefile
19 lines
351 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/09/24 13:43:37 jasper Exp $
|
|
|
|
COMMENT = basic descriptive statistical functions
|
|
|
|
DISTNAME = Statistics-Descriptive-2.6
|
|
CATEGORIES = math
|
|
|
|
# perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MODULES = cpan
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
.include <bsd.port.mk>
|