data-transformer

Transform and reshape datasets using pandas and Apache Spark.

22|8|Updated Mar 14, 2026
One-click install
npx skills add https://github.com/inbharatai/claude-skills --skill data-transformer
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: data-transformer
Source: https://github.com/inbharatai/claude-skills/tree/main/skills/data-transformer
Command: npx skills add https://github.com/inbharatai/claude-skills --skill data-transformer

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pandas, spark.

What problem does it solve?

This Skill streamlines the process of transforming and reshaping data, making it easier to analyze and derive insights.

Core Features & Use Cases

  • Data Transformation: Pivot, melt, aggregate, and join datasets.
  • Business Rule Application: Apply complex business logic to datasets.
  • Use Case: Transform raw sales data into a summarized report showing total sales per region and product category.

Quick Start

Use the data-transformer skill to pivot the attached CSV file by 'Region' and 'Product' with 'Sales' as the value.

Frequently Asked Questions about data-transformer

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

FAQPage Schema
How do I pivot and aggregate raw CSV data for analytical reporting?

To pivot and aggregate raw CSV data, you apply transformation operations to reshape the dataset by specific columns and summarize the values. This allows you to transform raw sales data into a summarized report showing total sales per region and product.

What is the best way to apply complex business rules to a large-scale dataset?

Applying complex business rules to a large-scale dataset requires using data transformation logic to process and reshape records. This approach uses Python with pandas and Apache Spark to apply analytical logic to raw data structures efficiently.

Does this data transformation approach work with both pandas and Apache Spark?

Yes, this data transformation approach works with both pandas and Apache Spark. It requires a Python environment configured with both libraries to execute efficient large-scale data manipulation and analysis operations.

How do I melt and join datasets to reshape data structures for analysis?

To melt and join datasets for reshaping data structures, you use specific transformation operations to unpivot wide tables and merge multiple sources. This reshaping process restructures the data to make it easier to analyze and derive insights.

When do I need to reshape data using pivot and melt operations?

You need to reshape data using pivot and melt operations when your raw dataset structure does not match your analytical requirements. These transformations restructure datasets by pivoting columns into rows or melting rows into columns to derive insights.