Agent skill · Data & Analytics

data-transform

Transform, clean, reshape, and preprocess data using pandas and numpy. Works with ANY LLM provider (GPT, Gemini, Claude, etc.).

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-code
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill data-transform --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 17 KB
Bundled scripts: none
Path: skills/data-transform/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Data Transformation (Universal) ## Overview This skill enables you to perform comprehensive data transformations including cleaning, normalization, reshaping, filtering, and feature engineering. Unlike cloud-hosted solutions, this skill uses standard Python data manipulation libraries (**pandas**, **numpy**, **sklearn**) and executes **locally** in your environment, making it compatible with **ALL LLM providers** including GPT, Gemini, Claude, DeepSeek, and Qwen. ## When to Use This Skill - Clean and preprocess raw data - Normalize or scale numeric features - Reshape data between wide and long formats - Handle missing values - Filter and subset datasets - Merge multiple datasets - Create new features from existing ones - Convert data types and formats ## How to Use ### Step 1: Import Required Libraries ```python import pandas as pd import numpy as np from sklearn.preprocessing import StandardScaler, MinMaxScaler, RobustScaler from sklearn.preprocessing import LabelEncoder, OneHotEncoder import warnings warnings.filterwarnings('ignore') ``` ### Step 2: Data Cleaning ```python # Load data df = pd.read_csv('data.csv') # Check for missing values print("Missing values per column:") pr

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How to Use
  4. Step 1: Import Required Libraries
  5. Step 2: Data Cleaning
  6. Step 3: Normalization and Scaling
  7. Step 4: Data Reshaping
  8. Step 5: Filtering and Subsetting
  9. Step 6: Merging and Joining Datasets
  10. Advanced Features
  11. Handling Missing Values
  12. Feature Engineering
  13. Grouping and Aggregation
  14. Data Type Conversions
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the data-transform skill do?

Transform, clean, reshape, and preprocess data using pandas and numpy. Works with ANY LLM provider (GPT, Gemini, Claude, etc.).

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill data-transform --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going