---
title: "categorical-count-values"
slug: "categorical-count-values-parser"
updated: 2022-07-27T17:27:51Z
published: 2022-07-27T17:27:51Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://code.tag.bio/llms.txt
> Use this file to discover all available pages before exploring further.

# categorical-count-values

The *categorical-count-values* **parser** will load data from a column in a source data table and produce multiple numeric **variables** within a **collection**.

It inherits attributes and behaviors from its parent: abstract **parser** - *column*.

The *categorical-count-values* **parser** will create a *numeric* **variable** named after each distinct categorical value in a column. The values for each **variable** will be the number of times each categorical value was seen for each **entity**.

## Example
```json
{
  "parser_type": "categorical-count-values",
  "column": "cccc",
  "collection": "collection_name"
}
```
