Data Employ

A step-by-step guide to the dashboard and a short glossary of every feature.

1 · Load & instant context 2 · Explore & analyze 3 · Clean & preprocess 4 · Train a model 5 · Predict & explain 6 · Monitor in production 7 · Save, share & automate Shortcuts Feature glossary

Workflow 1 · Get your data and see instant context #

Everything starts on the Data tab. Data Employ works with SQLite files, and any SQL database over a URL.

1Add a database. On the left panel, click Upload DB and pick a .db/.sqlite file, or expand Advanced: connect by URL and paste a connection string (e.g. postgresql://user:pass@host/db), then Link.
2Browse your tables — they appear in the left panel with a small sparkline preview of their first numeric column. Click one.
3Quick View launches automatically: a row of stat cards (rows, columns, missing, duplicates), a correlation heatmap, per-column insights, and target analysis — all without any further clicks.

Change the Target column on the Analyze tab, then click ⚡ Quick View to re-render all charts against the new target.

Workflow 2 · Explore & analyze your data #

Open the Analyze tab and pick a type, then click Analyze.

Workflow 3 · Clean & preprocess #

On the Preprocess tab you build a pipeline of operations, then apply them all at once.

1Pick an operation (e.g. Fill Missing Values), set its params (method=median), and Add Operation. Add as many as you like.
2Click Apply Operations to run the whole queue in order. Watch the result row/column counts.
3Optional: click LLM Suggest to have the advisor propose a cleanup plan automatically.

Operations stay in the queue until you Clear, so you can experiment freely before applying. Export Preprocessed Data (CSV) saves the cleaned result.

Workflow 4 · Train a model #

On the Train tab. If you haven't set a target yet, Auto-Train picks one, prepares the data, and runs in the background.

1Set the target column and a task/tuning mode, or hit Auto-Train to let it decide.
2Watch the run — a progress bar and live log appear; jobs run in the background so the UI stays responsive.
3Read the results — a model comparison bar chart, feature-importance bars, and (for classification) a confusion-matrix heatmap.
4Optional: Check Features (feature health) to drop near-constant, high-cardinality, or highly-correlated columns first.
5Save Model (or Download) so you can reload it later.

The best model becomes the champion automatically. Experiment history is tracked — view it as a leaderboard bar chart on the Train tab.

Workflow 5 · Predict & explain #

Once a model is trained, use the Predict tab.

1Single — paste one JSON record and Predict.
2Batch — pick a table and Predict Table, Predict Loaded Data, or upload a CSV. Every row gets a score.
3Explain — click Explain on any row (or use Explain first prediction row). You get contribution bars: green pushes the prediction up, red pulls it down — so you see why.
4What-If — change one feature on a single row (e.g. years_experience → 15) to see the new prediction. Batch What-If does the same across all rows.
5Export Predictions (CSV) to save the scored table.

Workflow 6 · Monitor a model in production #

On the Schema tab under Model Monitoring / Anomaly Detection.

1Capture Reference on the data you trained on — this is the baseline distribution.
2Later, pick a live table and Check Drift. Features are shown as PSI bars colored stable, moderate, or drifted.
3Re-Score Table scores every row and flags drift plus anomalies automatically.
4For anomalies, use Detect then the interactive scatter — pick any two numeric features to visually spot outliers (red points).

Workflow 7 · Save, share & automate #

Shortcuts & tips #

Feature glossary #

FeatureTabWhat it does
Upload DB / connect by URLSidebarOpen a SQLite file or any SQL database.
Quick ViewDataAuto-render stats, heatmap, insights, target analysis.
Custom SQL / ValidateDataRun arbitrary (read-only) queries on your data.
Preprocess queuePreprocessChain ops (fill, drop, scale, encode, sample) and apply together.
Analyze (Summary / Correlations / Insights / Target / Health)AnalyzeCharts and stats for understanding the data.
Snapshots & DiffAnalyzeSave and compare versions of results.
Auto-Train / TrainTrainFit the best model; show comparison + importance + confusion matrix.
Check FeaturesTrainFlag near-constant, high-cardinality, correlated columns.
Save / Load / Upload ModelTrainPersist and restore a trained model.
Predict / Predict Table / Batch / CSVPredictScore a record, a table, or a file.
Explain / What-If / Batch What-IfPredictUnderstand a prediction and test changes.
Re-Score Table / Drift / AnomalySchemaMonitor a model against new data.
RecipesSchemaReproduce a full pipeline later.
Command palette (⌘K)GlobalSearch and run any action quickly.
LLM AdvisorLLMNatural-language analysis and suggestions.

Data Employ · How-to Guide