From messy data to analysis-ready
A dedicated workspace for data preparation. Audit issues, apply transforms, and chat with a tidyverse expert - all while your original dataset stays untouched.
Get Started FreeNever mutate the original
When you select a dataset in the Tidy tab, AiR creates a working copy (e.g., mtcars_tidy). Every transformation, imputation, and chat-suggested operation runs on the copy only. Your original data is always intact.
Every issue surfaced automatically
When you open the Tidy tab, AiR runs a structured audit on your data - checking for missing values, outliers, type issues, skewness, duplicates, and constant columns. Each issue comes with one-click fix actions.
Each quick-action button applies a standard, deterministic R transformation - no AI cost, instant execution, fully reproducible.
Build a reproducible transformation pipeline
Every transformation is logged in a visual timeline with before/after metrics. Undo any step and AiR replays the remaining transforms automatically. When you're done, export everything as a clean .R script.
21 built-in transforms
Transform timeline
Click Undo on any transform to remove it. AiR replays the remaining steps and validates each one.
A tidyverse expert at your fingertips
The built-in chat understands your dataset and its current state. Ask about joins, pivots, reshaping, feature engineering, or any tidyverse operation. When it suggests code, click Apply to execute it immediately on your working copy.
Here's a pivot to long format:
diamonds_tidy <- diamonds_tidy %>%
pivot_longer(
cols = -c(carat, price),
names_to = "variable",
values_to = "value"
)From raw data to model-ready in one flow
The Tidy tab sits between Data and Model in AiR's workflow. Explore your data, clean and transform it, then hand it off to Model Builder - all in one seamless pipeline.
Use in Model Builder
One click to switch to the Model tab with your tidied dataset pre-selected.
Save Dataset
Export your tidied data as CSV or RDS for use outside AiR.
Export Script
Generate a documented .R script with every transform, ready to reproduce your pipeline.
Clean data, better models
Start tidying your data in minutes. No setup, no packages to install.