data-transform

Clean, reshape, normalize and engineer features from CSV/TSV/Parquet inputs using pandas and numpy locally.

32|5|Updated Mar 12, 2026
One-click install
npx skills add https://github.com/omicverse/omicclaw --skill data-transform-omicverse
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: data-transform
Source: https://github.com/omicverse/omicclaw/tree/main/src/omicverse_skills/skills/data-transform
Command: npx skills add https://github.com/omicverse/omicclaw --skill data-transform-omicverse

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Raw data often arrives unclean and in inconsistent shapes. This skill provides local, library-based tools to clean, normalize, reshape, and engineer features using pandas, numpy, and scikit-learn, reducing manual wrangling and enabling repeatable pipelines.

Core Features & Use Cases

  • Data Cleaning: Handle missing values, deduplicate, and correct data types.
  • Normalization and Scaling: Apply standardization, min-max, or robust scaling.
  • Reshaping and Transforms: Pivot, melt, and reshape data between wide and long formats.
  • Feature Engineering: Create ratios, bins, interactions, and time-based features.
  • Merging and Aggregation: Join datasets and compute group-wise statistics.

Quick Start

Load a dataset and request a transformation; the system will automatically clean, normalize, reshape, and engineer features according to your specifications.

Frequently Asked Questions about data-transform

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I clean and reshape raw CSV data using pandas and numpy?

To clean and reshape raw CSV data using pandas and numpy, you can handle missing values, deduplicate rows, correct data types, and apply pivot or melt operations to transition between wide and long formats locally in your Python environment.

What is the best way to engineer features and normalize datasets locally without cloud dependencies?

Feature engineering and dataset normalization without cloud dependencies involve applying standardization, min-max, or robust scaling using scikit-learn, while creating ratios, bins, and time-based features entirely within your local Python environment.

Can I merge and aggregate multiple Parquet files locally in Python?

Yes, you can merge and aggregate multiple Parquet files locally in Python by joining datasets and computing group-wise statistics using pandas, running entirely in your environment without any cloud dependencies.

Does data transformation with pandas require external cloud services or APIs?

Data transformation with pandas does not require external cloud services or APIs, as the processing runs entirely in the user's local Python environment using libraries like pandas, numpy, and scikit-learn.

When do I need to reshape data between wide and long formats for analytics?

You need to reshape data between wide and long formats for analytics when preparing datasets for specific visualization or modeling requirements, using pandas pivot and melt functions to restructure the data accurately.