---
title: Omission-to-Modification Error Ratio
url: https://www.emergentmind.com/topics/omission-to-modification-error-ratio-o-m
type: topic
---

# Omission-to-Modification Error Ratio

The Omission-to-Modification error ratio (O:M ratio) arises in the context of cognitive social structure (CSS) network studies, where individuals report not only their own direct social ties but also their perceptions of ties among all others in a bounded network. The O:M ratio serves as a quantitative metric that captures the trade-off between omission errors (false negatives, where actual ties are missed) and modification errors, also called commission errors (false positives, where non-ties are incorrectly reported as present). Used in conjunction with ROC-curve based aggregation methods, the O:M ratio enables explicit calibration of network estimates by controlling the relative emphasis placed on the minimization of each error type [1606.03245].

## 1. Formal Definition

The true relational structure is represented by a directed adjacency matrix $A=(A_{ij})$ with size $N \times N$, where $A_{ij}=1$ if a true tie exists from $i$ to $j$ and $0$ otherwise. The estimated or perceived structure, denoted $\hat{A}=(\hat{A}_{ij})$, may be inferred via aggregation, or may refer to a single respondent’s report. Using the indicator $I\{\cdot\}$ that is $1$ if its argument is true and 0 otherwise, the error rates are defined as:

- **Omission error rate $E_O$ (false negatives):**
  $$
  E_O = \frac{ \sum_{i \ne j} I\{A_{ij} = 1 \text{ and } \hat{A}_{ij} = 0\} }{ \sum_{i \ne j} I\{A_{ij} = 1\} }
  $$
  This quantifies the proportion of true ties missed in estimation.

- **Modification (commission) error rate $E_M$ (false positives):**
  $$
  E_M = \frac{ \sum_{i \ne j} I\{A_{ij} = 0 \text{ and } \hat{A}_{ij} = 1\} }{ \sum_{i \ne j} I\{A_{ij} = 0\} }
  $$
  This reflects the proportion of non-ties incorrectly categorized as ties.

- **O:M error ratio:**
  $$
  \text{O:M} = \frac{E_O}{E_M}
  $$

This ratio encapsulates the relative prevalence of omission versus modification errors in any given network estimation scenario.

## 2. Role in ROC–Based Aggregation and Weighting

In ROC-curve based CSS aggregation, a threshold parameter $k$ represents the minimum number of respondents required to agree on a tie for it to be considered present. For each $k$, $E_O(k)$ and $E_M(k)$ are calculated, generating an empirical ROC curve plotting true positive rate (TPR$=1-E_O$) against false positive rate (FPR$=E_M$). The classical ROC criterion minimizes the Euclidean distance to the ideal $(\text{TPR}=1, \text{FPR}=0)$ point, corresponding to
$$
\delta(k) = \sqrt{ (E_M(k))^2 + (E_O(k))^2 }
$$
which treats omission and commission errors equally ($w=1$).

The introduction of an explicit weighting factor $w$ generalizes this to
$$
\delta_w(k) = \sqrt{ (w E_M(k))^2 + (E_O(k))^2 }
$$
where $w$ corresponds to desired O:M emphasis ($w$ can also be denoted $\lambda$). Selecting $w>1$ up-weights the cost of modification/commission errors, leading the optimization to favor thresholds that reduce false positives, often at the expense of increased omissions. The procedure thus allows the analyst to choose or justify a particular O:M trade-off directly in accordance with substantive considerations or network sparsity [1606.03245].

## 3. Conceptual and Empirical Patterns in CSS Work

CSS studies characteristically involve networks with low density ($d̄ < 0.2$) and a large imbalance between the number of possible ties and non-ties. Empirically, omission error rates ($E_O$) are observed between 0.54 and 0.72, while modification error rates ($E_M$) range from 0.03 to 0.14, yielding raw O:M ratios in the 4 to 20 range across studied datasets.

There is a strong negative correlation between $E_O$ and $E_M$ at the respondent level, indicating a trade-off: respondents who are "liberal" in their perceptions tend toward low omission but high commission errors; "conservative" respondents exhibit the reverse pattern. This supports the methodological need for explicit O:M balancing in aggregation [1606.03245].

## 4. O:M Ratio in Network Estimation Algorithm

The ROC-based threshold method for network aggregation (RTM) uses the O:M ratio via the weighting parameter $w$ to make the error trade-off both explicit and data-driven:

1. Randomly sample $n$ CSS slices; compute their average density $\bar{d}$.
2. Set $w=1/\bar{d}$ (or another value according to analytic priorities).
3. For each candidate threshold $k$, calculate $E_M(k)$, $E_O(k)$, and $\delta_w(k)$.
4. Select $k^* = \arg\min_k \delta_w(k)$, and aggregate the network using this threshold.

In sparse networks, the recommended weight $w=1/\bar{d}$ amplifies the importance of reducing false positives, which are disproportionately likely amidst a majority of non-ties.

## 5. Numerical and Simulation Results

Across five canonical CSS datasets (network size $N\approx 20$–$48$, density $0.06$–$0.15$), observed mean $E_M$ values are $0.03$–$0.14$ and $E_O$ values are $0.54$–$0.72$, with O:M ratios generally between 4 and 20. An illustrative example ("High Tech Managers", $N=21$, $n=10$) demonstrates how varying $k$ affects the O:M ratio:

| Threshold $k$ | $E_M(k)$ | $E_O(k)$ | O:M          |
|---------------|----------|----------|--------------|
| 1             | 0.295    | 0.083    | 0.28         |
| 4             | 0.034    | 0.667    | 19.6         |

Correlation with the true network structure increases under the $w$-weighted ROC choice (e.g., $k=4$) versus an unweighted choice ($k=1$). Large-scale simulations confirm that using $w=1/\bar{d}$ in the ROC minimization yields robust recovery, performing comparably or better than adaptive thresholding which constrains only commission errors.

## 6. Guidelines and Applied Selection

Choice of $w$ should be context-driven:

- If false positives (commission errors) are much costlier, set $w \gg 1$ to minimize $E_M$ further.
- If false negatives (omission errors) are to be avoided, set $w \ll 1$.
- If no clear preference exists, use $w=1$ (classical ROC methodology).

The recommended approach is $w=1/\bar{d}$ in sparse organizational networks, balancing the error rates for superior network recovery [1606.03245].

## 7. Worked Example

For a toy network with $N=5$, $n=3$ sampled slices, and observed counts as follows:

| $k$ (threshold) | False Positives | False Negatives | $E_M$   | $E_O$   | $\delta$ | $\delta_w$ (for $w$=5) |
|-----------------|----------------|-----------------|---------|---------|----------|-----------------------|
| 1               | 2              | 1               | 0.333   | 0.25    | 0.417    | 1.667                 |
| 2               | 1              | 2               | 0.167   | 0.5     | 0.528    | 1.305                 |
| 3               | 0              | 3               | 0       | 0.75    | 0.75     | 0.75                  |

With equal weighting ($w=1$), $k=1$ minimizes $\delta$. With $w=5$, corresponding to high stringency, $k=3$ minimizes $\delta_w$. This formalism directly operationalizes the trade-off between omission and commission errors within ROC-guided network estimation [1606.03245].

Source: https://www.emergentmind.com/topics/omission-to-modification-error-ratio-o-m