OK benoit@ Comment: efficient resampling and calculation of medians Description: The purpose of this (XS) module is to calculate the median (or in principle also other statistics) with confidence intervals on a sample. To do that, it uses a technique called bootstrapping. In a nutshell, it resamples the sample a lot of times and for each resample, it calculates the median. From the distribution of medians, it then calculates the confidence limits.
19 lines
330 B
Makefile
19 lines
330 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/01/03 13:11:18 bluhm Exp $
|
|
|
|
COMMENT = efficient resampling and calculation of medians
|
|
|
|
DISTNAME = Statistics-CaseResampling-0.15
|
|
|
|
CATEGORIES = math
|
|
|
|
MAINTAINER = Alexander Bluhm <bluhm@openbsd.org>
|
|
|
|
# perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB = c perl
|
|
|
|
MODULES = cpan
|
|
|
|
.include <bsd.port.mk>
|