analyze_tag_cooccurrence
Identify frequently co-occurring tags in journal entries to uncover patterns and relationships in your data. Accepts a list of tags for analysis within specified or default journals.
Instructions
Analyze which tags frequently appear together
Input Schema
Name | Required | Description | Default |
---|---|---|---|
journal | No | Journal name (uses current/default if not specified) | |
tags | Yes | Tags to analyze for co-occurrence |
Input Schema (JSON Schema)
{
"properties": {
"journal": {
"description": "Journal name (uses current/default if not specified)",
"type": "string"
},
"tags": {
"description": "Tags to analyze for co-occurrence",
"items": {
"type": "string"
},
"minItems": 2,
"type": "array"
}
},
"required": [
"tags"
],
"type": "object"
}