blob: 7c8815e6635ced6caaf7ba51b013cea529c58f1b [file] [log] [blame]
Marc Kupietze2038322021-03-04 18:24:02 +01001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/association-scores.R
3\name{mi3}
4\alias{mi3}
5\title{Pointwise mutual information cubed}
6\usage{
7mi3(O1, O2, O, N, E, window_size)
8}
9\arguments{
10\item{O1}{observed absolute frequency of node}
11
12\item{O2}{observed absolute frequency of collocate}
13
14\item{O}{observed absolute frequency of collocation}
15
16\item{N}{corpus size}
17
18\item{E}{expected absolute frequency of collocation (already adjusted to window size)}
19
20\item{window_size}{total window size around node (left neighbour count + right neighbour count)}
21}
22\description{
23Pointwise mutual information cubed
24}
25\details{
26Also referenced to as log-frequency biased mutual dependency (LFMD)
27}
28\references{
29Daille, B. (1994): Approche mixte pour l’extraction automatique de terminologie: statistiques lexicales et filtres linguistiques. PhD thesis, Université Paris 7.
30
31Thanopoulos, A., Fakotakis, N., Kokkinakis, G. (2002): Comparative evaluation of collocation extraction metrics. In: Proc. of LREC 2002: 620–625.
32}
33\seealso{
34Other association-score-functions:
35\code{\link{defaultAssociationScoreFunctions}()},
36\code{\link{ll}()},
37\code{\link{logDice}()},
38\code{\link{mi2}()},
39\code{\link{pmi}()}
40}
41\concept{association-score-functions}