Clustering Algorithm Runner
Run clustering algorithms (K-means, DBSCAN, hierarchical) on datasets to discover natural groupings and structure in data.
Overview
This skill empowers Claude to perform clustering analysis on provided datasets. It allows for automated execution of various clustering algorithms, providing insights into data groupings and structures.
How It Works
- Analyzing the Context: Claude analyzes the user's request to determine the dataset, desired clustering algorithm (if specified), and any specific requirements.
- Generating Code: Claude generates Python code using appropriate ML libraries (e.g., scikit-learn) to perform the clustering task, including data loading, preprocessing, algorithm execution, and result visualization.
- Executing Clustering: The generated code is executed, and the clustering algorithm is applied to the dataset.
- Providing Results: Claude presents the results, including cluster assignments, performance metrics (e.g., silhouette score, Davies-Bouldin index), and visualizations (e.g., scatter plots with cluster labels).
When to Use This Skill
This skill activates when you need to:
- Identify distinct groups within a dataset.
- Perform a cluster analysis to understand data structure.
- Run K-means, DBSCAN, or hierarchical clustering on a given dataset.
Examples
Example 1: Customer Segmentation
User request: "Run clustering on this customer data to identify customer segments. The data is in customer_data.csv."
The skill will:
- Load the customer_data.csv dataset.
- Perform K-means clustering to identify distinct customer segments based on their attributes.
- Provide a visualization of the customer segments and their characteristics.
Example 2: Anomaly Detection
User request: "Perform DBSCAN clustering on this network traffic data to identify anomalies. The data is available at network_traffic.txt."
The skill will:
- Load the network_traffic.txt dataset.
- Perform DBSCAN clustering to identify outliers representing anomalous network traffic.
- Report the identified anomalies and their characteristics.
Best Practices
- Data Preprocessing: Always preprocess the data (e.g., scaling, normalization) before applying clustering algorithms to improve performance and accuracy.
- Algorithm Selection: Choose the appropriate clustering algorithm based on the data characteristics and the desired outcome. K-means is suitable for spherical clusters, while DBSCAN is better for non-spherical clusters and anomaly detection.
- Parameter Tuning: Tune the parameters of the clustering algorithm (e.g., number of clusters in K-means, epsilon and min_samples in DBSCAN) to optimize the results.
Integration
This skill can be integrated with data loading skills to retrieve datasets from various sources. It can also be combined with visualization skills to generate insightful visualizations of the clustering results.
Prerequisites
- Appropriate file access permissions
- Required dependencies installed
Instructions
- Invoke this skill when the trigger conditions are met
- Provide necessary context and parameters
- Review the generated output
- Apply modifications as needed
Output
The skill produces structured output relevant to the task.
Error Handling
- Invalid input: Prompts for correction
- Missing dependencies: Lists required components
- Permission errors: Suggests remediation steps
Resources
- Project documentation
- Related skills and commands
Source: jeremylongshore/claude-code-plugins-plus-skills → skills/.curated/running-clustering-algorithms/SKILL.md
Also appears in: jeremylongshore/claude-code-plugins-plus-skills/plugins/ai-ml/clustering-algorithm-runner/skills/running-clustering-algorithms/SKILL.md
1---2name: running-clustering-algorithms3description: 'Analyze datasets by running clustering algorithms (K-means, DBSCAN, hierarchical) to identify data groups. Use when requesting "run clustering", "cluster analysis", or "group data points". Trigger with relevant phrases based on skill purpose. '4---5
6# Clustering Algorithm Runner
7
8Run clustering algorithms (K-means, DBSCAN, hierarchical) on datasets to discover natural groupings and structure in data.
9
10## Overview
11
12This skill empowers Claude to perform clustering analysis on provided datasets. It allows for automated execution of various clustering algorithms, providing insights into data groupings and structures.
13
14## How It Works
15
161. **Analyzing the Context**: Claude analyzes the user's request to determine the dataset, desired clustering algorithm (if specified), and any specific requirements.
172. **Generating Code**: Claude generates Python code using appropriate ML libraries (e.g., scikit-learn) to perform the clustering task, including data loading, preprocessing, algorithm execution, and result visualization.
183. **Executing Clustering**: The generated code is executed, and the clustering algorithm is applied to the dataset.
194. **Providing Results**: Claude presents the results, including cluster assignments, performance metrics (e.g., silhouette score, Davies-Bouldin index), and visualizations (e.g., scatter plots with cluster labels).
20
21## When to Use This Skill
22
23This skill activates when you need to:
24
25- Identify distinct groups within a dataset.
26- Perform a cluster analysis to understand data structure.
27- Run K-means, DBSCAN, or hierarchical clustering on a given dataset.
28
29## Examples
30
31### Example 1: Customer Segmentation
32
33User request: "Run clustering on this customer data to identify customer segments. The data is in customer_data.csv."
34
35The skill will:
36
371. Load the customer_data.csv dataset.
382. Perform K-means clustering to identify distinct customer segments based on their attributes.
393. Provide a visualization of the customer segments and their characteristics.
40
41### Example 2: Anomaly Detection
42
43User request: "Perform DBSCAN clustering on this network traffic data to identify anomalies. The data is available at network_traffic.txt."
44
45The skill will:
46
471. Load the network_traffic.txt dataset.
482. Perform DBSCAN clustering to identify outliers representing anomalous network traffic.
493. Report the identified anomalies and their characteristics.
50
51## Best Practices
52
53- **Data Preprocessing**: Always preprocess the data (e.g., scaling, normalization) before applying clustering algorithms to improve performance and accuracy.
54- **Algorithm Selection**: Choose the appropriate clustering algorithm based on the data characteristics and the desired outcome. K-means is suitable for spherical clusters, while DBSCAN is better for non-spherical clusters and anomaly detection.
55- **Parameter Tuning**: Tune the parameters of the clustering algorithm (e.g., number of clusters in K-means, epsilon and min_samples in DBSCAN) to optimize the results.
56
57## Integration
58
59This skill can be integrated with data loading skills to retrieve datasets from various sources. It can also be combined with visualization skills to generate insightful visualizations of the clustering results.
60
61## Prerequisites
62
63- Appropriate file access permissions
64- Required dependencies installed
65
66## Instructions
67
681. Invoke this skill when the trigger conditions are met
692. Provide necessary context and parameters
703. Review the generated output
714. Apply modifications as needed
72
73## Output
74
75The skill produces structured output relevant to the task.
76
77## Error Handling
78
79- Invalid input: Prompts for correction
80- Missing dependencies: Lists required components
81- Permission errors: Suggests remediation steps
82
83## Resources
84
85- Project documentation
86- Related skills and commands
87
88---
89
90**Source:** [`jeremylongshore/claude-code-plugins-plus-skills`](https://github.com/jeremylongshore/claude-code-plugins-plus-skills) → `skills/.curated/running-clustering-algorithms/SKILL.md`
91
92**Also appears in:** `jeremylongshore/claude-code-plugins-plus-skills/plugins/ai-ml/clustering-algorithm-runner/skills/running-clustering-algorithms/SKILL.md`