get_speed_histogram
Analyze and visualize speed distribution for typing tests on MonkeyType by specifying language, mode, and parameters using a histogram generator.
Instructions
Get speed histogram data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | Yes | Target language for the speed histogram (e.g., 'english') | |
mode | Yes | Typing mode (e.g., 'time', 'words') | |
mode2 | Yes | Secondary mode parameter (e.g., '60' for time mode) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"description": "Target language for the speed histogram (e.g., 'english')",
"type": "string"
},
"mode": {
"description": "Typing mode (e.g., 'time', 'words')",
"enum": [
"time",
"words",
"quote",
"custom",
"zen"
],
"type": "string"
},
"mode2": {
"description": "Secondary mode parameter (e.g., '60' for time mode)",
"type": "string"
}
},
"required": [
"language",
"mode",
"mode2"
],
"type": "object"
}