Available Functions
Search functions...
Function Details
Data Transformer
Provided by
TogetherAI
Transform your data using natural language instructions. This powerful node uses AI to generate and execute Python code based on your transformation requirements.
How It Works
You provide your data (in any structured format)
You describe how you want to transform it in plain English
The AI generates and executes the appropriate code
If there are any errors, it automatically attempts to fix them
Input Formats
The node accepts various data formats including:
- JSON arrays/objects
- Markdown tables
- HTML tables
- CSV strings
- Any other structured data format
Example Transformations
1. Basic Sorting and Filtering
2. Adding Calculated Columns
Tips
Be specific in your transformation instructions
You can request multiple transformations in one instruction
The node will automatically handle data parsing and formatting
If you get an error, try rephrasing your transformation request
Common Transformation Types
Sorting and filtering data
Adding calculated columns
Aggregating or grouping data
Reformatting data structure
Data type conversions
Statistical calculations
Text processing
Date/time manipulations
Example Instructions
"Convert all prices to integers and add a 'total' column"
"Group by category and calculate the average price for each group"
"Extract all unique values from the 'tags' column and count their frequencies"
"Convert the markdown table to JSON format and add an 'id' field to each row"
"Calculate the percentage difference between consecutive rows in the 'value' column"
Working with Multiple Data Sources
You can transform multiple data sources simultaneously by passing a JSON object in the data field. Each key in the object should reference a different data source using Moonlit's double brackets syntax.
Example:
This approach is particularly useful for:
- Joining multiple datasets
- Cross-referencing data from different sources
- Performing comparative analysis
- Creating consolidated reports
Example Multi-Source Transformations
Combining Customer and Order Data:
Product Performance Analysis:
Remember:
- Each referenced variable must be properly formatted data
- Use descriptive keys in your JSON object to make the transformation request clearer
- The transformation instructions should explicitly mention which data source you're referring to