UCS::AM::Parametric - Parametric association measures
use UCS;
use UCS::AM::Parametric;
@parametric_AMs = UCS::AM_Keys();
# MI.conf
# MI.conf.<n> [<n> = 2, 3, 5, 10, 50, 100, 1000]
# Poisson.mu.pv
# Poisson.mu.<n>.pv [<n> = 2, 3, 5, 10, 50, 100, 1000, 10000]
This module contains some parametric association measures, which are parametrised extensions of measures defined in the basic UCS::AM module. Parametric measures are a recent development in cooccurrence statistics, and the choice of appropriate parameter values is still very much a research question. Parametric measures will often be computationally expensive and may be numerically unstable, so novice users are advised to use the basic measures from the UCS::AM module instead.
The following section gives a full listing of the parametric association measures defined in the UCS::AM::Parametric module with short explanations. Please refer to http://www.collocations.de/AM/ for the full equations and references. When the module is imported, the additional measures are registered with the UCS core library (see the UCS manpage for details on how to access registered association measures).
The association scores of measures with the suffix .pv can be interpreted as probabilities (i.e. the likelihood of the observed data or the p-value of a statistical hypothesis test). Such probabilities are given as negative base 10 logarithms, ranging from 0 to +inf (+inf is represented by the return value of the built-in inf function (see the UCS::Expression::Func manpage).
ALPHA
parameter (as a negative base 10 logarithm). The "usual" significance levels .01 and .001 correspond to ALPHA=2
and ALPHA=3
, respectively.UCS::AM_Expression("MI.conf")
before modifying the ALPHA
parameter.ALPHA
parameter pre-set to the value specified as part of the name. Available ALPHA values are 2, 3, 5, 10, 50, 100, and 1000. For instance, MI.conf.10 computes a two-sided confidence interval at significance level 1E-10.ALPHA
parameter of these association measures (in the UCS::Expression object returned by the UCS::AM_Expression function).MU
parameter. For MU=1
, the association scores computed by Poisson.mu.pv are identical to those of Poisson.pv.UCS::AM_Expression("Poisson.mu.pv")
before modifying the MU
parameter.MU
parameter pre-set to the value specified as part of the name. Available MU values are 2, 3, 5, 10, 50, 100, 1000, and 10000.MU
parameter of these association measures (in the UCS::Expression object returned by the UCS::AM_Expression function).Copyright 2003 Stefan Evert.
This software is provided AS IS and the author makes no warranty as to its use and performance. You may use the software, redistribute and modify it under the same terms as Perl itself.