statistics-math
Installation
SKILL.md
Statistics & Mathematics
Mathematical foundations for data science, machine learning, and statistical analysis.
Quick Start
import numpy as np
import scipy.stats as stats
from sklearn.linear_model import LinearRegression
# Descriptive Statistics
data = np.array([23, 45, 67, 32, 45, 67, 89, 12, 34, 56])
print(f"Mean: {np.mean(data):.2f}")
print(f"Median: {np.median(data):.2f}")
print(f"Std Dev: {np.std(data, ddof=1):.2f}")
print(f"IQR: {np.percentile(data, 75) - np.percentile(data, 25):.2f}")
# Hypothesis Testing
Related skills
More from pluginagentmarketplace/custom-plugin-data-engineer
deep-learning
PyTorch, TensorFlow, neural networks, CNNs, transformers, and deep learning for production
48big-data
Apache Spark, Hadoop, distributed computing, and large-scale data processing for petabyte-scale workloads
43python-programming
Master Python fundamentals, OOP, data structures, async programming, and production-grade scripting for data engineering
31data-engineering
Data pipeline architecture, ETL/ELT patterns, data modeling, and production data platform design
29etl-tools
Apache Airflow, dbt, Prefect, Dagster, and modern data orchestration for production data pipelines
28git-version-control
Git workflows, branching strategies, collaboration, and code management
27