word_cloud_by_date_range
Analyze and visualize the most frequent words in QAnon posts within a specified date range using a word cloud, with customizable parameters for word length and count.
Instructions
Generate a word cloud analysis showing the most common words used in posts within a specified date range.
Args:
start_date: Start date in YYYY-MM-DD format
end_date: End date in YYYY-MM-DD format
min_word_length: Minimum length of words to include (default: 3)
max_words: Maximum number of words to return (default: 100)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
max_words | No | ||
min_word_length | No | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"title": "End Date",
"type": "string"
},
"max_words": {
"default": 100,
"title": "Max Words",
"type": "integer"
},
"min_word_length": {
"default": 3,
"title": "Min Word Length",
"type": "integer"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"title": "word_cloud_by_date_rangeArguments",
"type": "object"
}