Loading…
Loading…
DataLAB is first and foremost a mature desktop application for finance teams, auditors, analysts, and data-heavy business units. A web experience exists today as an early MVP, but the desktop product remains the primary production surface.

Broad workflow coverage today, with mature depth on desktop and an early web MVP that is still being shaped through real-world feedback.
Query files and connected data through SQL workflows with joins, CTEs, window functions, and practical export paths.
Manage loaded datasets with metadata, contexts, row counts, column detail, and persisted parquet storage built into the product flow.
Work with 40+ algorithms, AutoML, hyperparameter tuning, evaluation tools, and experiment tracking from the same environment.
Run reconciliation, journal testing, anomaly review, and broader finance-focused analytical workflows inside the same platform.
Build repeatable ETL and analytical workflows through the pipeline layer rather than recreating every process manually.
Use the mature desktop product for real production work today, while the web experience continues as an early MVP for evaluation, feedback, and product shaping.
A look at workflow depth across the product - not only output, but how DataLAB is actually used day to day.




SQL and product workflows are both part of the story. The examples below show how teams move from data work to practical output.
Use SQL to explore business data, aggregate operational records, and move toward export, validation, or further workflow steps.
SELECT entity,
DATE_TRUNC('month', CAST(posting_date AS DATE)) AS month,
SUM(debit_amount) - SUM(credit_amount) AS net_movement,
COUNT(*) AS journal_lines
FROM general_ledger
GROUP BY entity, DATE_TRUNC('month', CAST(posting_date AS DATE))
ORDER BY month DESC;DataLAB supports a mix of file-based and connected workflows, which is part of why it fits both analytics and finance-heavy teams.
The best evaluation is a focused walkthrough around your actual datasets, your team structure, and the process bottlenecks you want to remove.