distribution_stats
Compute statistical measures (mean, variance, skewness, kurtosis, entropy) for any probability distribution by specifying its type and parameters.
Instructions
Compute statistics of a distribution.
═══════════════════════════════════════════════════════════════════════
🆕 NOT AVAILABLE IN SYMPY-MCP!
═══════════════════════════════════════════════════════════════════════
Args:
distribution_type: Type of distribution
parameters: Distribution parameters
stats_to_compute: Which statistics (default: all available)
- "mean", "variance", "std", "skewness", "kurtosis", "entropy"
Returns:
Computed statistics
Examples:
distribution_stats("normal", {"mean": "mu", "std": "sigma"})
→ {"mean": "mu", "variance": "sigma**2", "std": "sigma", ...}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parameters | Yes | ||
| stats_to_compute | No | ||
| distribution_type | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||